@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
  --custom-primary: #000000;
  --font-family: 'Poppins', var(--bs-font-sans-serif);
}

.btn-custom-primary {
  background-color: var(--custom-primary);
  border-color: var(--custom-primary);
  color: #fff;
}

.btn-custom-primary:hover,
.btn-custom-primary:focus,
.btn-custom-primary:active {
  background-color: var(--custom-primary) !important;
  border-color: var(--custom-primary) !important;
  color: #fff !important;
  filter: brightness(0.9) !important;
}

.btn-primary {
  background-color: var(--custom-primary) !important;
  border-color: var(--custom-primary) !important;
  color: #fff !important;
}

.btn-primary:hover {
  filter: brightness(0.9) !important;
}


body {
  font-family: var(--font-family);
}

.navbar {
  transition: all 0.3s ease;
}

.navbar .nav-link {
  font-size: 16px;
  color: #000 !important;
}

.navbar .nav-link:hover {
  color: #555 !important;
}



#hero h1,
#hero p {
  color: #fff !important;
}


#sobre h2,
#sobre p {
  color: #000000 !important;
}

#sobre h5 {
  color: #000000 !important;
}

#sobre {
  background-color: #e6e6e6 !important; /* coloque a cor que quiser */
}


#colecoes h5 {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}


.footer {
  background: #e6e6e6;
  color: #000;
}

.footer-text {
  font-size: 14px;
  color: #000;
  margin-bottom: 8px;
}

.footer-link {
  color: #000;
  text-decoration: none;
  font-weight: 500;
}

.footer-link:hover {
  text-decoration: underline;
}

.footer-copy {
  font-size: 13px;
  margin-top: 15px;
  color: #000;
}

.footer i {
  font-size: 16px;
  margin-right: 4px;
}

/* ============================================================
   MOBILE ONLY (ATÉ 768px) — NÃO AFETA O DESKTOP
   ============================================================ */
@media (max-width: 768px) {

  /* NAVBAR */
  .navbar {
    padding: 12px 0;
  }

  .navbar .nav-link {
    font-size: 14px;
    margin: 8px 0;
    text-align: center;
  }

  .navbar-brand img {
    max-height: 32px;
  }

  /* HERO */
  #hero {
    text-align: center;
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }

  #hero h1 {
    font-size: 1.8rem !important;
    line-height: 1.2;
  }

  #hero p {
    font-size: 1rem !important;
  }

  #hero .col-lg-6 {
    margin-bottom: 25px;
  }

  #formulario {
    padding: 20px !important;
  }

  /* SOBRE */
  #sobre .row {
    text-align: center;
  }

  #sobre img {
    margin-top: 20px;
    width: 100%;
  }

  #sobre h2 {
    font-size: 1.6rem !important;
  }

  #sobre p {
    font-size: 1rem !important;
  }

  /* COLEÇÕES — EM MOBILE VIRA CARROSSEL HORIZONTAL */
  #colecoes .row {
    display: flex;
    overflow-x: auto;
    gap: 16px;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
  }

  #colecoes .col-md-4 {
    min-width: 80%;
    flex: 0 0 auto;
    scroll-snap-align: center;
  }

  #colecoes h5 {
    font-size: 1.3rem !important;
  }

  /* FOOTER */
  .footer {
    text-align: center;
    padding: 30px 10px !important;
  }

  .footer-text {
    font-size: 13px !important;
  }

  .footer-copy {
    font-size: 12px !important;
  }

  .footer img {
    max-width: 130px !important;
    margin-bottom: 15px;
  }

}

@media (max-width: 767px) {
  #vantagens .col-lg-6 {
    text-align: center !important;
  }

  #vantagens ul {
    text-align: left !important; /* mantém bullets alinhados */
    margin: 0 auto;
    max-width: 300px; /* opcional para melhorar visual */
  }

  #vantagens a.btn {
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
  }
}
