@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=My+Soul&display=swap");

:root {
  --rosa-principal: #e3b4df;
  --rosa-claro: #f6e6f4;
  --rosa-escuro: #da9bd4;
  --roxo: #d485f4;
  --branco: #ffffff;
  --preto: #222222;
  --cinza: #5b647b;
}

/*  
    font-family: 'Orbitron', sans-serif;
    font-family: "My Soul", cursive;
*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-style: italic;
}

/* Aplica à barra de rolagem */
::-webkit-scrollbar {
  width: 10px;
  /* largura da barra vertical */
  height: 10px;
  /* altura da barra horizontal */
}

/* Fundo da barra (track) */
::-webkit-scrollbar-track {
  background: #f0f0f0;
  /* cor do fundo da barra */
}

/* Parte que se move (thumb) */
::-webkit-scrollbar-thumb {
  background: var(--rosa-escuro);
  /* cor do scroll */
  border-radius: 10px;
  /* bordas arredondadas */
}

/* Scroll ao passar o mouse */
::-webkit-scrollbar-thumb:hover {
  background: var(--preto);
}

body {
  background: linear-gradient(to right,
      var(--rosa-claro),
      var(--rosa-principal));
  min-width: 100%;
  overflow-x: hidden;
}

header {
  position: fixed;
  display: flex;
  justify-content: space-between;
  background-color: var(--branco);
  box-shadow: rgba(146, 98, 140, 0.555) 0px 20px 30px -10px;
  width: 100%;
  height: 50px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  font-family: "Roboto", sans-serif;
  z-index: 1;
  overflow: hidden;

  h1 {
    color: var(--rosa-principal);
    font-size: 26px;
    margin: auto 0 auto 20px;
    font-family: "Great Vibes", cursive;

    span {
      color: var(--preto);
    }
  }

  .links {
    display: flex;
    gap: 20px;

    a {
      text-decoration: none;
      color: var(--preto);
      margin: auto 20px auto 0;
      font-family: "Orbitron", sans-serif;
      transition: 0.5s;
    }

    a:hover {
      transform: translateY(-3px);
      color: var(--rosa-escuro);
    }
  }
}

.arrow-efect {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-top: 280px;

  img {
    height: 60px;
    animation: jump 1s infinite alternate ease-in-out;
  }
}

/* animation jump arrow */
@keyframes jump {
  0% {
    transform: translateY(0);
    /* Posição inicial: sem deslocamento vertical */
  }

  50% {
    transform: translateY(-30px);
    /* Ponto mais alto do "pulo": move 30px para cima */
  }

  100% {
    transform: translateY(0);
    /* Posição final: volta para a posição inicial */
  }
}

main {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  overflow: hidden;

  .container-main {
    width: 500px;

    h1 {
      font-family: "Great Vibes", cursive;
      font-size: 90px;
      line-height: 0.8;
      margin-bottom: 10px;

      span {
        color: var(--roxo);
      }
    }

    p {
      font-size: 18px;
      font-weight: bold;
      color: var(--cinza);
      margin-bottom: 35px;
    }

    .buttons {
      display: flex;
      gap: 15px;
      font-family: "Orbitron", sans-serif;

      button:nth-child(1) {
        background: var(--roxo);
        padding: 15px;
        width: 150px;
        border: none;
        border-radius: 18px;
        cursor: pointer;
        transition: 0.5s;

        a {
          text-decoration: none;
          color: var(--branco);
        }
      }

      button:nth-child(1):hover {
        transform: translateY(-5px);
      }

      button:nth-child(1):active {
        background: var(--branco);
        border: 1px solid var(--roxo);

        a {
          color: var(--preto);
        }
      }

      button:nth-child(2) {
        background: var(--branco);
        padding: 15px;
        width: 150px;
        border: 1px solid var(--roxo);
        border-radius: 18px;
        cursor: pointer;
        transition: 0.5s;

        a {
          text-decoration: none;
          color: var(--preto);
        }
      }

      button:nth-child(2):hover {
        transform: translateY(-5px);
      }

      button:nth-child(2):active {
        background: var(--roxo);
        border: none;

        a {
          color: var(--branco);
        }
      }
    }
  }

  .logo {
    img {
      height: 300px;
    }
  }
}

.container-about {
  background-color: #ffffff;
  padding: 80px 10%;
  text-align: center;

  .title {
    font-size: 36px;
    margin-bottom: 50px;

    span {
      color: var(--rosa-escuro);
    }
  }

  .about {
    max-width: 700px;
    margin: 0 auto 30px;

    h1 {
      font-size: 28px;
      margin-bottom: 20px;
    }

    p span {
      color: var(--rosa-escuro);
      font-weight: bold;
    }
  }

  .img-about img {
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-top: 30px;
    transition: 0.5s;
  }

  .img-about img:hover {
    transform: translateY(-5px);
    box-shadow:
    0 8px 20px var(--rosa-escuro),   /* sombra rosa */
    0 12px 40px rgba(0, 0, 0, 0.1);       /* sombra sutil escura */
  }


}

.catalog {
  background: var(--rosa-principal);
  padding: 80px 10%;
  text-align: center;

  .box-title {


    h1 {
      font-size: 24px;
      margin-bottom: 20px;

      span {
        color: var(--preto);
        font-weight: bold;
      }
    }

    p {
      max-width: 500px;
      margin: 0 auto 20px;
    }

    button {
      background: var(--preto);
      color: white;
      padding: 12px 24px;
      border: none;
      border-radius: 25px;
      font-size: 16px;
      transition: 0.5s;
      cursor: pointer;

      a {
        text-decoration: none;
        color: white;
      }
    }

    button:hover {
      background: var(--branco);
      transform: translateY(-5px);

      a {
        color: var(--preto);
      }
    }
  }

  h1 span {
    color: var(--branco);
  }

  .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
    margin-top: 40px;

    .box-icon img {
      max-width: 100px;
    }

  }

}

.localizacao {
  height: 100vh;
  background-color: var(--branco);
  box-shadow: inset 0 0 15px rgba(255, 105, 180, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  text-align: center;
  overflow: hidden;

  h2 {
    font-size: 28px;
    margin-bottom: 10px;
    color: var(--preto);
  }

  h2 span {
    color: var(--rosa-principal);
  }

  p {
    color: var(--cinza);
    margin-bottom: 30px;
    font-size: 14px;
  }

  .conteudo-localizacao {
    .card-localizacao {
      background-color: var(--preto);
      border-radius: 10px;
      padding: 30px 20px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
      max-width: 500px;
      margin: 0 auto;

      h3 {
        color: var(--rosa-principal);
        font-size: 20px;
        margin-bottom: 10px;
      }

      p {
        color: var(--branco);
        font-size: 14px;
        margin-bottom: 20px;
        line-height: 1.5;
      }

      button {
        background: var(--rosa-principal);
        padding: 10px;
        border: none;
        border-radius: 12px;
        cursor: pointer;
        transition: 0.5s;

        a {
          text-decoration: none;
          color: var(--preto);
        }
      }

      button:hover {
        transform: translateY(-4px);
      }
    }
  }
}

.redes-sociais {
  background: var(--branco);
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;


  .box-sociais {
    background-color: var(--preto);
    border-radius: 10px;
    padding: 30px 20px;
    box-shadow: 0 2px 10px rgba(255, 255, 255, 0.616);
    margin: 10px auto;
    display: flex;
    gap: 20px;

    button {
      background: var(--rosa-escuro);
      padding: 15px;
      border-radius: 12px;
      border: none;
      transition: 0.5s;
      cursor: pointer;

      a {
        color: var(--preto);
        text-decoration: none;
      }
    }

    button:hover {
      transform: translateY(-5px);
    }
  }


}

.footer {
  background-color: #1e1e1e;
  color: #ffffff;
  padding: 40px 20px 20px;
  font-family: 'Arial', sans-serif;
  overflow: hidden;

  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;

    .footer-col {
      flex: 1 1 250px;
    }

    h2,
    h3 {
      color: #ffffff;
      margin-bottom: 15px;
      font-size: 18px;
    }

    p,
    li {
      font-size: 14px;
      color: #ccc;
      line-height: 1.6;
    }

    ul {
      list-style: none;
      padding: 0;
    }

    a {
      text-decoration: none;
      color: #ccc;
      transition: color 0.3s;
    }

    a:hover {
      color: #ffffff;
    }
  }

  .footer-bottom {
    text-align: center;
    border-top: 1px solid #333;
    margin-top: 30px;
    padding-top: 20px;
    font-size: 13px;
    color: #aaa;

    a {
      text-decoration: none;
      color: #ccc;
      transition: color 0.3s;
    }

    a:hover {
      color: #ffffff;
    }
  }
}

@media screen and (max-width: 670px) {
  header {
    h1 {
      margin: auto auto;
    }

    .links {
      display: none;
    }
  }

  main {
    display: flex;
    flex-direction: column-reverse;

    .container-main {
      width: 100%;
      padding: 35px;

      h1 {
        font-size: 40px;
      }

      p {
        font-size: 12px;
      }
    }

    .logo {
      img {
        height: 150px;
      }
    }
  }

  .catalog .container {
    flex-direction: column;
  }

}