@import url('https://fonts.googleapis.com/css2?family=Anton&family=Bebas+Neue&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Bebas+Neue&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');

.anton-regular {
    font-family: "Anton", sans-serif;
    font-weight: 32.3;
    font-style: normal;
}

.bebas-neue-regular {
    font-family: "Bebas Neue", sans-serif;
    font-weight: 100;
    font-style: normal;
}
  
/* Resetando margens e removendo sublinhado */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Bebas Neue", sans-serif;
    text-align: center;
    background-color: #f4f4f4;
}

h1 {
    margin-top: 50px;
}

.kanban-selection {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 50px;
    /* position: right; */ /* "right" não é valor válido para position */
}

.kanban-selection a {
    text-decoration: none;
    color: black;
    text-align: center;
    transition: transform 0.3s;
}
/* tamanho da imagem dentro da seleção do kanban */
.kanban-selection img {
    width: 500px;
    height: 250px;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    object-fit: cover; /* mantém proporção e preenche o espaço */
}

.kanban-selection a:hover {
    transform: scale(1.1);
}

.setinha {
    width: 100px;
    height: 50px;
    /* position: right; */ /* "right" não é um valor válido para position */
}

/* RESPONSIVIDADE */
@media (max-width: 1024px) {
    .kanban-selection {
        gap: 30px;
    }

    .kanban-selection img {
        width: 400px;
        height: 200px;
    }

    .setinha {
        width: 80px;
        height: 40px;
    }
}

@media (max-width: 768px) {
    .kanban-selection {
        flex-direction: column;
        gap: 25px;
        margin-top: 30px;
        align-items: center;
    }

    .kanban-selection img {
        width: 90vw;  /* ocupa 90% da largura da viewport */
        height: auto; /* altura automática para manter proporção */
        max-width: 400px; /* limita para não ficar muito grande */
    }

    .setinha {
        width: 70px;
        height: auto;
        max-height: 35px;
    }
}

@media (max-width: 480px) {
    h1 {
        margin-top: 30px;
        font-size: 1.5rem;
    }

    .kanban-selection img {
        width: 100vw;
        max-width: 300px;
        height: auto;
    }

    .setinha {
        width: 60px;
        max-height: 30px;
    }
}

/* main.css */

:root {
  --bg-color: #fff;
  --text-color: #333;
  --menu-bg: #fff;
  --menu-text: #4B0082;
}

[data-theme="dark"] {
  --bg-color: #121212;
  --text-color: #eee;
  --menu-bg: #1e1e1e;
  --menu-text: #ff1d50;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: "Bebas Neue", sans-serif;
  padding-top: 70px; /* se tiver menu fixo */
}

/* Menu */
.menu {
  background-color: var(--menu-bg);
  color: var(--menu-text);
  position: fixed;
  top: 0;
  width: 100%;
  padding: 15px 30px;
  display: flex;
  justify-content: flex-end;
  box-shadow: 0 3px 8px rgba(75, 0, 130, 0.15);
}

/* Switch estilo simples */
.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  background-color: #ccc;
  border-radius: 26px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  border-radius: 50%;
  transition: 0.4s;
}

input:checked + .slider {
  background-color: #ff1d50;
}

input:checked + .slider:before {
  transform: translateX(24px);
}

:root {
  --bg-color: #ffffff;
  --text-color: #000000;
}

[data-theme="dark"] {
  --bg-color: #121212;
  --text-color: #e0e0e0;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
}
