 :root {
      --fonte-principal: "Montserrat", sans-serif;
      --fonte-script: "Great Vibes", cursive;
      --rosa-claro: #fce6ee;
      --azul-claro: #d2edf3;
      --verde-destaque: #23676e;
    }
    /* Scrollbar geral */
::-webkit-scrollbar {
  width: 10px;
}

/* Trilha (fundo da barra) */
::-webkit-scrollbar-track {
  background: #FFF;
}

/* Parte que se move (thumb) */
::-webkit-scrollbar-thumb {
  background-color: var(--verde-destaque);
  border-radius: 10px;
  border: 1px solid var(--rosa-claro);
}

/* Hover na thumb */
::-webkit-scrollbar-thumb:hover {
  background-color: #1b5459; /* Um tom mais escuro do verde-destaque */
}


    /* RESET E BODY */
    * {
      box-sizing: border-box;
    }
    html {
  scroll-behavior: smooth;
}
body {
  scroll-behavior: smooth;
}
.popup-junina {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
  cursor: pointer;
  padding: 1rem;
}

.popup-content {
  background-color: #fff;
  border-radius: 1rem;
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
  display: flex;
  max-width: 700px;
  width: 100%;
  overflow: hidden;
  position: relative;
  cursor: default;
}

.popup-image {
  width: 50%;
  object-fit: cover;
  filter: brightness(0.9);
  height: 100%;
}

.popup-text {
  padding: 2rem;
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

.popup-text h3 {
  margin: 0;
  font-family: var(--fonte-script);
  font-size: 1.6rem;
  color: #000;
  font-weight: 100;
}

.popup-text p {
  margin: 0;
  font-family: var(--fonte-principal);
  font-size: 1rem;
  color: #444;
}

.popup-btn {
  background-color: var(--verde-destaque);
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 2rem;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  font-family: var(--fonte-principal);
  transition: background-color 0.3s;
}

.popup-btn:hover {
  background-color: #1b5459;
}

.popup-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 1.5rem;
  color: #333;
  cursor: pointer;
  z-index: 2;
}

/* Responsividade */
@media (max-width: 768px) {
  .popup-close{
    color: #fff;
  }
  .popup-content {
    flex-direction: column;
  }

  .popup-image {
    width: 100%;
    height: 180px;
  }

  .popup-text {
    width: 100%;
    padding: 1.5rem;
    text-align: center;
  }

  .popup-btn {
    align-self: center;
  }
 
}

@media (max-width: 480px) {
  .popup-text h3 {
    font-size: 1.4rem;
  }

  .popup-text p {
    font-size: 0.95rem;
  }
}

.social-float {
  position: fixed;
  bottom: 20px;
  z-index: 1000;
  width: 40px;
  height: 40px;
  transition: transform 0.3s ease;
}

.social-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.social-float:hover {
  transform: scale(1.1);
}

.whatsapp-float {
  right: 20px;
}

.pinterest-float {
  right: 10px; /* Deixa o ícone do Pinterest ao lado esquerdo do WhatsApp */
}



    body {
      margin: 0;
      font-family: var(--fonte-principal);
      background-color: #fff;
      scroll-behavior: smooth;
      color: #444;
    }

    /* HEADER */
    header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 2rem;
      background: linear-gradient(to right, var(--rosa-claro), var(--azul-claro));
      position: relative;
      z-index: 2;
    }

    .logo {
      font-family: var(--fonte-script);
      font-size: 2rem;
      color: var(--verde-destaque);
    }

    nav {
      display: flex;
      gap: 1.5rem;
      align-items: center;
    }

    nav a {
      text-decoration: none;
      color: #000;
      font-weight: 100;
      font-size: 1rem;
      transition: color 0.3s;
    }

    nav a:hover {
      color: #1b5459;
    }

    .social-icons {
      display: flex;
      gap: 1rem;
      justify-content: center;
    }

    .social-icons a {
      color: var(--verde-destaque);
      font-size: 1.2rem;
      transition: color 0.3s;
    }

    .social-icons a:hover {
      color: #1b5459;
    }

    .hamburger {
      display: none;
      font-size: 1.5rem;
      color: var(--verde-destaque);
      cursor: pointer;
      z-index: 10;
    }

    .mobile-menu {
          display: flex
;
    flex-direction: column;
    text-align: center;
      background-color: var(--rosa-claro);
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      overflow: hidden;
      max-height: 0;
      transition: max-height 0.3s ease-in-out, padding 0.3s ease-in-out;
      padding: 0 1rem;
      box-sizing: border-box;
    }

    .mobile-menu a {
      margin: 0.5rem 0;
      color: var(--verde-destaque);
      font-weight: bold;
      font-size: 1rem;
      text-decoration: none;
    }

    .mobile-menu.active {
      max-height: 500px;
      padding: 1rem;
    }

    /* HERO */
   .hero {
  padding: 4rem 2rem;
  background-color: #fff;
}

.hero-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-texto {
  flex: 1 1 400px;
  max-width: 500px;
  text-align: left;
}

.hero h1 {
  font-size: 2.5rem;
  font-family: var(--fonte-script);
  color: #000;
  font-weight: 100;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  font-family: var(--fonte-principal);
  color: #444;
  margin-bottom: 2rem;
}

.hero button {
  background-color: var(--verde-destaque);
  color: white;
  font-size: 1rem;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 2rem;
  cursor: pointer;
  transition: background-color 0.3s;
  font-family: var(--fonte-principal);
}

.hero button:hover {
  background-color: #1b5459;
}

.hero-video {
  flex: 1 1 400px;
  max-width: 600px;
  aspect-ratio: 16 / 9;
}

.hero-video iframe {
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}


    /* STEPS */
    .steps {
      padding: 5rem 2rem;
      background-color: #d2edf396;
      text-align: center;
    }

    .steps h2 {
      font-size: 2rem;
      font-family: var(--fonte-script);
      color: #000;
      font-weight: 100;
      margin-bottom: 2rem;
    }

    .steps-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 2rem;
    }

    .step {
      background: white;
      padding: 1.5rem;
      border-radius: 1rem;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      max-width: 250px;
      transition: transform 0.3s;
    }

    .step:hover {
      transform: translateY(-5px);
    }

    .step i {
      font-size: 2rem;
      color: var(--verde-destaque);
      margin-bottom: 1rem;
    }

    .step h3 {
      font-size: 1.2rem;
      color: #444;
      margin-bottom: 0.5rem;
    }

    .step p {
      font-size: 0.95rem;
      color: #444;
    }

    /* KITS */
    .kits {
      padding: 3rem 2rem;
      background-color: #fff; /* fundo branco */
      text-align: center;
    }

    .kits h2 {
      font-family: var(--fonte-script);
      color: #000;
      font-weight: 100;
      font-size: 2rem;
      margin-bottom: 1rem;
    }

    .kits p {
      font-family: var(--fonte-principal);
      color: #444;
      margin-bottom: 2rem;
      font-size: 1.1rem;
    }

    .kits-container {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.kit {
  flex: 1 1 280px; /* flex-grow:1, flex-shrink:1, base de 280px */
  max-width: 280px; /* limite máximo para não esticar demais */
  min-width: 280px; /* força largura mínima igual */
  text-align: center;
  background: white;
  border-radius: 1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s;
}


    .kit:hover {
      transform: translateY(-5px);
    }

    .kit img {
      width: 100%;
      border-bottom: 1px solid #ddd;
      display: block;
      object-fit: cover;
      height: 220px; /* maior */
    }

    .kit h3 {
      color: #444;
      margin: 0.5rem 0 0.25rem;
      font-size: 1.2rem;
    }

    .kit p {
      font-size: 0.9rem;
      color: #555;
      margin: 0 0 1rem;
      padding: 0 0.75rem;
    }

    .kits button {
      background-color: var(--verde-destaque);
      color: white;
      font-size: 1rem;
      padding: 0.75rem 2rem;
      border: none;
      border-radius: 2rem;
      cursor: pointer;
      font-family: var(--fonte-principal);
      transition: background-color 0.3s;
      margin-top: 2rem;
    }

    .kits button:hover {
      background-color: #1b5459;
    }
.cta-orcamento {
  background-color: white;
  padding: 3rem 2rem;
  border-top: 1px solid var(--verde-destaque);
border-bottom: 1px solid var(--verde-destaque);
  text-align: center;
  margin-top: 1rem;
}

.cta-orcamento h2 {
  font-family: var(--fonte-script);
  font-size: 2.2rem;
  color: #000;
  font-weight: 100;
  margin-bottom: 0.5rem;
}

.cta-orcamento p {
  font-family: var(--fonte-principal);
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 1.5rem;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background-color: var(--verde-destaque);
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 0.75rem 2rem;
  border-radius: 2rem;
  text-decoration: none;
  transition: background-color 0.3s ease;
  font-family: var(--fonte-principal);
}

.btn-whatsapp:hover {
  background-color: #1b5459;
}
iframe{
  box-shadow: none !important;
}
.btn-whatsapp i {
  font-size: 1.3rem;
}
.gallery {
  padding: 3rem 1.5rem;
  text-align: center;
  max-width: 900px;
  margin: 3rem auto;
  margin-bottom: 0px !important;
}

.title_insta {
  font-family: var(--fonte-script);
  font-size: 2.4rem;
  color: #000;
  font-weight: 100;
  margin-bottom: 1.5rem;
}

.instagram-feed iframe {
  border-radius: 1rem;
  max-width: 100%;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.container-gallery {
  max-width: 1400px;
  margin: 20px auto;
}

.gallery-wrapper {
  position: relative;
  max-height: 1000px; /* altura inicial visível */
  overflow: hidden;
}

.gallery-inner {
  columns: 4;
  column-gap: 20px;
}

.gallery-inner .box {
  width: 100%;
  margin-bottom: 10px;
  break-inside: avoid;
}

.gallery-inner .box img {
  max-width: 100%;
  border-radius: 1rem;
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.9), transparent);
  backdrop-filter: blur(6px);
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-bottom: 20px;
  transition: all 0.3s ease;
}

#verMaisBtn {
  background-color: #23676e;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 1rem;
  font-size: 16px;
  cursor: pointer;
}
#verMenosBtn {
  background-color: #ccc;
  color: #333;
  border: none;
  padding: 10px 20px;
  border-radius: 1rem;
  font-size: 16px;
  cursor: pointer;
  text-align: center;
}

#orcamento{
  padding: 40px;
  background-color: #fafafa;
}
.container_form {
  max-width: 500px;
  margin: 30px auto;
  padding: 40px;
  background: #FFF;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.container_form h2, .container_form p{
  text-align: center;
}

.label {
  display: block;
  margin-top: 15px;
  font-weight: bold;
}

.input {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

.button {
  width: 100%;
  padding: 20px;
  margin-top: 25px;
  border-radius: 8px;
  border: none;
  background-color: #23676e;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
}




footer {
  background-color: var(--verde-destaque);
  color: #FFF; /* rosa claro para o texto */
  padding: 2rem 1.5rem 1rem;
  font-family: var(--fonte-principal);
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

.footer-logo {
  font-family: var(--fonte-script);
  font-size: 2rem;
  color: #FFF;
  flex: 1 1 150px;
}

.footer-nav {
  display: flex;
  gap: 2rem;
  flex: 2 1 300px;
  justify-content: center;
}

.footer-nav a {
  color: #FFF;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.footer-nav a:hover {
  color: #d2edf3; /* azul claro */
}

.footer-social {
  flex: 1 1 150px;
  display: flex;
  justify-content: flex-end;
  gap: 1.5rem;
  font-size: 1.5rem;
}

.footer-social a {
  color: #FFF;
  transition: color 0.3s;
}

.footer-social a:hover {
  color: #d2edf3;
}

.footer-copy {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: #fce6eecc;
}
 .swiper {
  width: 100%;
  height: 100vh;
}

.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
  width: 100%; /* Garante que o slide ocupa a largura total */
  box-sizing: border-box;
  padding: 20px;
}

.swiper-slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 1rem;
}
.carrosel{
  display: none;
}

    .swiper-pagination-bullet-active {
      background: #23676e;
    }
@media(max-width: 1200px){
  .gallery-inner{
    width: calc(100% - 40px);
    columns: 3;
  }
}
    /* RESPONSIVO */
    @media (max-width: 768px) {
      #orcamento{
  padding: 20px;
  background-color: #fafafa;
}
.container_form {

  padding: 20px;
 
}
      .carrosel{
        display: block;
      }
     .container-gallery{
      display: none;
     }

      .footer-logo, .footer-nav, .footer-social{
        flex: 0px;
      }
      iframe{
        height: 400px;
      }
      nav {
        display: none;
      }
      .hamburger {
        display: block;
      }
      .kits-container {
        gap: 1rem;
      }
      .kit {
        max-width: 220px;
      }
      .kit img {
        height: 180px;
      }
    }
@media (max-width: 600px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
  .footer-nav {
    flex-direction: column;
    justify-content: center;
    margin: 1rem 0;
  }
  .footer-social {
    justify-content: center;
  }
}
