:root{
  --green:#123a2c;
  --green2:#0f2e23;
  --gold:#d6b36a;
  --paper:#efeae1;
  --card:#f5f1ec;
  --ink:#1b1b1b;
  --muted:#7a7a7a;
  --radius:18px;
  --shadow: 0 10px 30px rgba(0,0,0,.10);
  --shadow2: 0 18px 40px rgba(0,0,0,.14);
  --container: 1120px;
  --ease: cubic-bezier(.2,.8,.2,1);
}


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
     
}
body{
  overflow-x: hidden;
}
 html {
    scroll-behavior: smooth; /* Rolagem suave */
  }
body{
  margin:0;
    font-family: 'Figtree', sans-serif;
  color:var(--ink);
}

h1, h2 {
  font-family: 'Figtree', sans-serif;
  color: #123a2c;
}

      
h1.hero_title_sucesso  { 
  font-size: 36px;
  color: #ffffff;
}

h2 { font-size: 28px;
  color: #123a2c;
}

h2.galeria { 
  color: #ffffff;
}

h3 { text-align: center;
      color: #123a2c;
}


img {
    max-width: 100%; 
    display: block;
}
a{color:inherit; text-decoration:none}


 

.container{width:min(var(--container), calc(100% - 40px)); margin:0 auto}



.contato__left{ caret-color: transparent !important;

}
.contato__left img {

  max-width: 100%; 
  height: auto;   
  display: block;  
}


/* ===== HEADER ===== */
/* ====== RESET BÁSICO ====== */
* { box-sizing: border-box; }
a { text-decoration: none; color: inherit; }
button { font: inherit; }

/* ====== TOPBAR ====== */
.topbar{
  position: sticky;
  top: 0;
  z-index: 9999;
  background: #f6f1ed;                 /* tom rosado/bege como na imagem */
  border-bottom: 2px solid rgba(0,0,0,.08);
    padding-bottom: 10px;
    padding-top: 10px
}

.topbar__inner{
  max-width: 1200px;
  margin: 0 auto;
  height: 74px;
  padding: 0 18px;

  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 18px;
}

/* ====== LOGO ====== */
.brand{
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.brand__text{
  font-family: "Georgia", serif;
  font-weight: 700;
  font-size: 28px;
  letter-spacing: .5px;
  color: #1e7c4b;                       /* verde */
}

.brand__leaf{
  width: 26px;
  height: 18px;
  display: inline-block;
  background:
    radial-gradient(circle at 30% 60%, #2a9a5e 0 35%, transparent 36%),
    radial-gradient(circle at 55% 35%, #2a9a5e 0 35%, transparent 36%),
    radial-gradient(circle at 80% 60%, #2a9a5e 0 35%, transparent 36%);
  transform: rotate(-10deg);
  opacity: .95;
}

/* ====== NAV DESKTOP ====== */
.nav{
  display: flex;
  justify-content: center;
  gap: 34px;
}

.nav a{
  font-family: Arial, sans-serif;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(0,0,0,.75);
  padding: 8px 2px;
  position: relative;
}

.nav a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:2px;
  width:0%;
  height:2px;
  background:#1e7c4b;
  transition: width .2s ease;
  opacity:.9;
}
.nav a:hover::after{ width:100%; }

/* ====== BOTÃO CTA ====== */
/*

.cta{
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 12px 18px;
  border-radius: 999px;
  border: 1.5px solid #1f1f1f;
  background: transparent;
  color: #1f1f1f;

  font-family: Arial, sans-serif;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  white-space: nowrap;

  transition: transform .15s ease, background .15s ease;
}
.cta:hover{
  transform: translateY(-1px);
  background: rgba(0,0,0,.03);
} */


.cta {display: inline-block;
    padding: 14px 26px;
    border-radius: 999px;
    border: 1px solid #1f3e2e;
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    transition: all .25s ease;
    background-color: #1f3e2e;
    transition: background-color 0.3s ease, transform 0.1s ease; /* Transição suave *//
 
}

 .cta:hover{
  background: rgba(31,62,46,.08);
  transform: translateY(-2px);
  color:#0f2e23;
}

/* ====== HAMBURGER ====== */
.burger{
  display: none; /* só no mobile */
  width: 44px;
  height: 44px;
  border: 1px solid rgba(0,0,0,.18);
  border-radius: 10px;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}
.burger span{
  display:block;
  width: 18px;
  height: 3px;
  background: var(--green);
  border-radius: 2px;
  transition: transform .6s ease, opacity .4s ease;
}

/* estado aberto (classe aplicada via JS) */
.topbar.is-open .burger{
  position: relative;
}
.topbar.is-open .burger span{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.topbar.is-open .burger span:nth-child(1){ transform: translate(-50%, -50%) rotate(45deg); }
.topbar.is-open .burger span:nth-child(2){ opacity: 0; }
.topbar.is-open .burger span:nth-child(3){ transform: translate(-50%, -50%) rotate(-45deg); }

/* ====== MOBILE PANEL ====== */
.mobile{
  border-top: 1px solid rgba(0,0,0,.08);
  background: #f6f1ed;
}
.mobile__nav{
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 18px 18px;

  display: grid;
  gap: 10px;
}
.mobile__nav a{
  font-family: Arial, sans-serif;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(0,0,0,.78);
  padding: 12px 10px;
  border-radius: 10px;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(0,0,0,.08);
}

.mobile__cta{
  margin-top: 4px;
  background: transparent !important;
  border: 1.5px solid #1f1f1f !important;
  text-align: center;
  padding: 13px 12px !important;
  border-radius: 999px !important;
}

/* ====== RESPONSIVO ====== */
@media (max-width: 900px){
  .topbar__inner{
    grid-template-columns: auto 1fr auto;
  }
  .nav{ display: none; }
  .cta{ display: none; }
  .burger{ display: inline-flex; justify-self: end; }
}

@media (min-width: 901px){
  .burger{ display: none !important; }
}


/* ===== BUTTONS ===== */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 16px; border-radius:999px;
  border:1px solid rgba(0,0,0,.14);
  font-weight:600; font-size:12px;
  cursor:pointer;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s;
}
.btn:hover{transform:translateY(-2px); box-shadow:var(--shadow)}
.btn--ghost{background:#fff}
.btn--primary{background:var(--green); color:#fff; border-color: rgba(255,255,255,.12)}
.btn--primary:hover{background:#0f2f23; box-shadow:var(--shadow2)}
.btn--outline{background:transparent}
.btn--block{width:100%}

/* ===== HERO ===== */
.hero{
  min-height: 680px;
  
  background-image: url('../images/hero-banner.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position:relative;
}
.hero::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(to bottom, rgba(0,0,0,.25), rgba(0,0,0,.10));
}
.hero__content{
  position:relative; z-index:1;
  padding: 110px 0 90px;
  max-width: 1800px;
  color:#fff;
}
.hero__kicker{
  margin:0 0 10px;
  letter-spacing:.18em;
  font-weight:700;
  font-size:18px;
}
.hero__content h1{
  margin:0 0 10px;
  font-size:55px;
  letter-spacing:.02em;
  line-height:1.05;
}
.hero__sub{margin:0 0 18px; 
  opacity:.9; 
  font-size:18px; 
  letter-spacing:.12em;
  text-transform:uppercase;
  font-weight: 600;
}

.hero__logo{max-width:220px}

/* ===== SECTIONS ===== */
.sec{padding: 70px 0}
.sec--deep{
  background: var(--green);
  color:#fff;
  position:relative;
  padding: 50px 0px 60px;
}
.sec--deep::before{
  content:"";
  position:absolute; inset:0;
  background-image: var(--sec-bg);
  background-size: cover;
  background-position:center;
  opacity:.18;
  pointer-events:none;
}
.sec--paper{
  background: var(--paper);
  position:relative;
}
.sec--paper::before{
  content:"";
  position:absolute; inset:0;
  background-image: var(--sec-bg);
  background-size: cover;
  background-position:center;
  opacity:.55;
  pointer-events:none;
}
.sec > .container{position:relative; z-index:1}
.sec--light{background:#fff}

/* Titles */
.sec-title{max-width:820px; margin:0 auto 26px}
.sec-title--center{text-align:center}
.sec-title--light{color:#fff}
.sec-title h2{
  margin:0 0 10px;
  font-size:16px;
  letter-spacing:.20em;
  font-weight:600;
}
.sec-title p{
  margin:0;
  font-size:12px;
  letter-spacing:.10em;
  color: rgba(255,255,255,.78);
}
.sec--paper .sec-title p,
.sec--light .sec-title p{color: #6f6f6f}

.sec-line{
  display:block;
  width: 160px;
  height: 1px;
  margin: 14px auto 0;
  background: rgba(255,255,255,.22);
}
.sec-line--gold{background: var(--gold)}

/* Hover util */
.hover-lift{transition: transform .22s var(--ease), box-shadow .22s var(--ease)}
.hover-lift:hover{transform: translateY(-6px); box-shadow: var(--shadow2)}

/* ===== SLIDER (Conheça) ===== */
.slider{
  display:grid;
  grid-template-columns: 52px 1fr 52px;
  gap: 16px;
  align-items:center;

  background: rgba(0,0,0,.10);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 24px;
  padding: 18px;

  box-shadow: 0 18px 55px rgba(0,0,0,.35);
  max-width: 920px;
  margin: 0 auto;
}
.slider__frame{overflow:hidden; border-radius:18px; background: rgba(0,0,0,.12)}
.slider__track{display:flex; transition: transform .5s var(--ease)}
.slider__slide{min-width:100%; margin:0}
.slider__slide img{width:100%; height:420px; object-fit:cover}

.slider__arrow{
  width:52px;height:52px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.22);
  background: rgba(0,0,0,.15);
  color:#fff;
  font-size:30px;
  cursor:pointer;
  transition: transform .18s var(--ease), background .18s;
}
.slider__arrow:hover{transform: translateY(-2px) scale(1.03); background: rgba(0,0,0,.28)}

.conheca-text{
  max-width: 920px;
  margin: 16px auto 0;
  text-align:center;
  font-size:12.5px;
  line-height:1.7;
  color: rgba(255,255,255,.80);
}

/* Whats button (bolinha) */
.whats{
  position:absolute;
  right: 24px;
  bottom: 22px;
  width:44px;height:44px;
  border-radius:999px;
  background:#2bd66b;
  box-shadow: 0 12px 24px rgba(0,0,0,.22);
}
.whats span{display:block; width:100%; height:100%}

/* ===== REDES SOCIAIS ===== */
/* ======================= SECTION: MÉTRICAS ======================= */
.insta-frame {
  display: block;
  max-width: 360px;
}

.insta-frame img {
  width: 100%;
  border-radius: 12px;
  transition: transform .3s ease;
}

.insta-frame:hover img {
  transform: scale(1.03);
}

.lp-metricas {
  padding: 60px 20px;
  background: #ffffff;
  margin-bottom: 30px;
}

.lp-metricas__container{
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 75px;
  margin-top: 75px;;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  padding:25px;

}

.metrica-card{
  background: #f4efec;           /* bege claro */
  border-radius: 18px;
  padding: 26px 22px;
  min-height: 170px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;

  box-shadow:
    0 10px 20px rgba(0,0,0,.10),
    0 2px 4px rgba(0,0,0,.06);
}


.metrica-card:hover{
  transform: translateY(-4px);
  box-shadow:
    0 14px 28px rgba(0,0,0,.14),
    0 6px 8px #C19509;
}
 

.metrica-card__title{
  margin: 0;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .4px;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.25;
  color: #1f1f1f;
}

.metrica-card_divider{
  display: block;
  width: 100%;
  height: 1px;
  margin: 18px 0 22px;
  background: #d2a24b; /* dourado */
  border-radius: 999px;
  margin: 1 auto 14px;
}

.metrica-card__value{
  margin: 0;
  font-weight: 600;
  font-size: 30px;
  color: #1f3e2e; /* verde escuro */
}

/* Responsivo */
@media (max-width: 1024px){
  .lp-metricas__container{ grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px){
  .lp-metricas__container{ grid-template-columns: 1fr; }
  .metrica-card{ min-height: 160px; }
}


/* ===== MODELO ===== */
.modelo{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 22px;
  align-items:stretch;
}
.modelo__img{
  border-radius: 22px;
  min-height: 380px;
  background-size: cover;
  background-position:center;
  border:1px solid rgba(0,0,0,.10);
  box-shadow: var(--shadow);
}
.modelo__box{
  position:relative;
  background: rgba(255,255,255,.70);
  border:1px solid rgba(0,0,0,.10);
  border-radius: 22px;
  padding: 22px;
  box-shadow: var(--shadow);
}
.modelo__text{margin:0 0 16px; color:#565656; line-height:1.6; font-size:13px}
.modelo__cards{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.kpi-card{
  background:#fff;
  border:1px solid rgba(0,0,0,.10);
  border-radius: 16px;
  padding: 14px 12px;
  text-align:left;
}
.kpi-card small{display:block; font-size:10px; letter-spacing:.14em; color:#6a6a6a; margin-bottom:8px}
.kpi-card strong{font-size:14px; color:#1c3d2e}
.modelo__decor{
  position:absolute;
  right: 12px;
  bottom: 10px;
  width: 110px;
  opacity: .9;
  pointer-events:none;
}

/* ===== SUPORTE ===== */
.suporte{
  position:relative;
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  align-items:start;
  margin-top: 20px;
}
.checklist{
  list-style:none; padding:0; margin:0;
  display:grid; gap:12px;
}
.checklist li{
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
  border-radius: 16px;
  padding: 14px 14px 14px 44px;
  position:relative;
  box-shadow: 0 8px 22px rgba(0,0,0,.06);
  color:#2b2b2b;
  font-size:13px;
}
.checklist li::before{
  content:"✓";
  position:absolute;
  left:16px; top:12px;
  width:22px;height:22px;
  border-radius:999px;
  display:flex; align-items:center; justify-content:center;
  background: rgba(18,58,44,.10);
  color: var(--green);
  font-weight:800;
}
.suporte__decor{
  position:absolute;
  right: -10px;
  bottom: -22px;
  width: 160px;
  opacity:.9;
}
.center{text-align:center; margin-top: 18px}

/* ===== BENEFÍCIOS ===== */
.beneficios{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 18px;
}
.beneficio{
  background: rgba(255,255,255,.78);
  border:1px solid rgba(0,0,0,.10);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 8px 22px rgba(0,0,0,.06);
}
.beneficio h3{margin:0 0 8px; font-size:14px; color:#1c3d2e}
.beneficio p{margin:0; color:#6a6a6a; font-size:12.5px; line-height:1.55}

.beneficios-banners{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.banner-ph{
  height: 140px;
  border-radius: 18px;
  border:1px dashed rgba(0,0,0,.22);
  background: rgba(255,255,255,.65);
  display:flex; align-items:center; justify-content:center;
  color: rgba(0,0,0,.55);
  font-weight:600;
}


.galeria__card{
  aspect-ratio: 16 / 9; /* desktop */
}

@media (max-width: 900px){
  .galeria__card{
    aspect-ratio: 3 / 4; /* mobile */
  }
}

.galeria__card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 260px; /* mesmo valor que você já usa */
  object-fit: cover;
  opacity: 0;
   transition: opacity 1s ease, transform .35s ease;
}

/* imagem ativa */
.galeria__card img.active {
  opacity: 1;
  z-index: 1;
}

/* garante altura do card */
.galeria__card {
  height: 360px;
}

/* ===== FAQ ===== */
.faq-top{display:flex; align-items:center; gap:18px; justify-content:center; margin-bottom: 8px}
.faq-logo{height:44px; width:auto}
.faq{
  max-width: 820px;
  margin: 0 auto;
  display:grid;
  gap: 12px;
}
.faq__item{
  background: rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.18);
  border-radius: 16px;
  overflow:hidden;
}
.faq__item summary{
  cursor:pointer;
  padding: 16px;
  list-style:none;
  font-weight:700;
  color:#fff;
}
.faq__item summary::-webkit-details-marker{display:none}
.faq__content{
  padding: 0 16px 16px;
  color: rgba(255,255,255,.85);
  line-height:1.55;
  font-size:13px;
}

/* ===== CONTATO ===== */
.contato{padding-bottom: 40px}
.contato__grid{
  display:grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 22px;
  align-items:start;
}
.contato__left{padding-top: 10px}
.contato__logo{height:46px; width:auto; margin-bottom: 10px}
.contato__left p{margin:0; color: rgba(255,255,255,.85); line-height:1.6; font-size:14px; max-width: 340px}
.contato__decor{margin-top: 18px; width: 240px; opacity: .95}

.form{
  background:#fff;
  border-radius: 22px;
  padding: 22px;
  border:1px solid rgba(255,255,255,.14);
  box-shadow: 0 18px 50px rgba(0,0,0,.30);
}
.form h3{
  margin:0 0 12px;
  font-size:12px;
  letter-spacing:.10em;
  color:#1c3d2e;
  line-height:1.45;
}
.form label{display:block; font-size:12px; color:#3a3a3a; margin-top: 12px}
.form input, .form textarea{
  margin-top:6px;
  width:100%;
  padding: 12px;
  border-radius: 12px;
  border:1px solid rgba(0,0,0,.14);
  outline:none;
  font: inherit;
}
.form input:focus, .form textarea:focus{
  border-color: rgba(18,58,44,.55);
  box-shadow: 0 0 0 4px rgba(18,58,44,.12);
}

/* footer mini */
.footer-mini{
  margin-top: 26px;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,.12);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
}
.footer-mini img{height:30px; width:auto}
.footer-mini__links{display:flex; gap: 14px; color: rgba(255,255,255,.86); font-size:12px}
.footer-mini__links a:hover{text-decoration:underline}

/* ===== RESPONSIVO ===== */
@media (max-width: 1024px){
  .modelo{grid-template-columns:1fr}
  .modelo__cards{grid-template-columns: repeat(2,1fr)}
  .redes-cards{grid-template-columns: repeat(2,1fr)}
}
@media (max-width: 900px){
  .nav{display:none}
  .hamb{display:inline-block}
  .mobile-nav{display:block}
  .slider__slide img{height: 340px}
  .suporte{grid-template-columns:1fr}
  .beneficios{grid-template-columns: repeat(2,1fr)}
  .beneficios-banners{grid-template-columns:1fr}
  .contato__grid{grid-template-columns:1fr}
  .suporte__decor{display:none}
}
@media (max-width: 768px){
  .redes-mosaico{grid-template-columns: repeat(3,1fr)}
}
@media (max-width: 520px){
  .hero__content h1{font-size:34px}
  .slider{grid-template-columns:44px 1fr 44px; padding: 14px}
  .slider__arrow{width:44px;height:44px}
  .redes-mosaico{grid-template-columns: repeat(2,1fr)}
  .redes-cards{grid-template-columns: 1fr}
  .beneficios{grid-template-columns: 1fr}
}
/* ======================= SECTION: REDES SOCIAIS ======================= */
.lp-social{
  padding: 50px 0px 0px;
  background: #ffffff;
}

.lp-social__container{
  max-width: 1200px;
  margin: 0 auto;
}

.lp-social__header{
  text-align: center;
  margin-bottom: 75px;
}

.lp-social__title{
  margin: 0 0 16px;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: .5px;
  color: #1f3e2e; /* verde escuro */
  text-transform: uppercase;
}

.lp-social_line{
  display: block;
  width: 52%;
  max-width: 560px;
  height: 1px;
  margin: 0 auto 18px;
  background: #d2a24b; /* dourado */
  border-radius: 999px;
}

.lp-social__handle{
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  color: #1f3e2e;
}

/* Grid de frames */
.lp-social__grid{
  margin-top: 40px;

  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0; /* na imagem parece colado */
  overflow: hidden;
  border-radius: 0; /* se quiser borda arredondada no conjunto, coloca 14px aqui */
}

/* Cada frame */
.social-frame{
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;   /* quadrado tipo feed */
  overflow: hidden;
  background: #eee;
}

.social-frame img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform .35s ease, filter .35s ease;
}

/* Hover suave (igual LP) */
.social-frame::after{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.10);
  opacity: 0;
  transition: opacity .25s ease;
}

.social-frame:hover img{
  transform: scale(1.04);
  filter: saturate(1.05);
}

.social-frame:hover::after{
  opacity: 1;
}

/* CTA */
.lp-social__cta{
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

.lp-social__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid #d2a24b;
  color: #1f3e2e;
  transition: transform .2s ease, background .2s ease;
}

.lp-social__btn:hover{
  background: rgba(210,162,75,.12);
  transform: translateY(-2px);
}

/* Responsivo */
@media (max-width: 1024px){
  .lp-social__title{ font-size: 32px; }
  .lp-social__grid{ grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 560px){
  .lp-social{ padding: 64px 16px 46px; }
  .lp-social__title{ font-size: 28px; }
  .lp-social__handle{ font-size: 18px; }
  .lp-social__grid{ grid-template-columns: repeat(2, 1fr); }
}
/* ======================= MODELO DE FRANQUIA ======================= */
.lp-franquia{
  padding: 90px 20px 70px;
  background: #f4efec;
  
}

.lp-franquia__container{
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

/* Topo */
.lp-franquia_top{
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
    margin-bottom: 50px;
}

.lp-franquia__image img{
  width: 100%;
  border-radius: 26px;
  object-fit: cover;
}

/* Conteúdo */
.lp-franquia__content h2{
  margin: 0 0 14px;
  font-size: 28px;
  color: #1f3e2e;
}

.lp-franquia_top .lp-franquia__content {
  border: 2px solid #d2a24b;
  border-radius: 20px;
  padding: 20px; /* ajuste conforme necessário */
  height: auto;
  transition: 
    transform 0.3s ease,
    box-shadow 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.lp-franquia_top .lp-franquia__content:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);

}

.lp-franquia__subtitle{
  margin-bottom: 26px;
  font-weight: 600;
  color: #1f3e2e;
}

.lp-franquia__list{
  padding-left: 18px;
  margin-bottom: 28px;
}

.lp-franquia__list li{
  margin-bottom: 14px;
  line-height: 1.55;
}

.lp-franquia__btn {
    display: inline-block;
    padding: 14px 26px;
    border-radius: 999px;
    border: 1px solid #1f3e2e;
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    transition: all .25s ease;
    background-color: #1f3e2e;
}

.lp-franquia-btn-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 75px;;
}

.lp-franquia__btn:hover{
  background: rgba(31,62,46,.08);
  transform: translateY(-2px);
  color:#0f2e23;
}

/* Planta decorativa */
.lp-franquia__plant{
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 120px;
  opacity: .95;
}

/* Métricas */
.lp-franquia_stats{
   margin: 0 auto 30px; 
  margin-bottom: 70px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  padding-top: 45px;
}

.franquia-stat{
  background: #ffffff;
  border-radius: 18px;
  padding: 26px 22px;
  text-align: center;
  box-shadow: 0 8px 18px rgba(0,0,0,.08);
}

.franquia-stat:hover {
  
  transform: translateY(-4px);
  box-shadow:
    0 14px 28px rgba(0,0,0,.14),
    0 6px 8px #C19509;
 
}

.franquia-stat_icon{
  width: 42px;
  
  margin: 0 auto 14px; 
  margin-bottom: 14px;
  transition: transform .35s ease;
  align-items: center;
}

/* 🔑 Hover suave só no ícone */
.franquia-stat:hover .franquia-stat__icon{
  transform: scale(1.08);
}

.franquia-stat h4{
  margin-bottom: 10px;
  font-size: 15px;
  text-transform: uppercase;
}

.franquia-stat__highlight{
  font-weight: 700;
  font-size: 18px;
}


/* ======================= MOBILE - MODELO DE FRANQUIA ======================= */

@media (max-width: 768px) {
  .lp-franquia {
    padding: 40px 15px;
    background-size: cover;
    background-position: center;
  }

  .lp-franquia__container {
    padding: 0 10px;
  }

  /* Header */
  .lp-social__header {
    margin-bottom: 30px;
  }

  .lp-social__header h2 {
    font-size: 1.5rem;
  }

  .lp-social__header p {
    font-size: 0.9rem;
    padding: 0 5px;
  }

  /* Container dos dois modelos - empilhados */
  .lp-franquia_top {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
  }

  /* Boxes um em cima do outro, TRANSPARENTES igual desktop */
  .lp-franquia__content {
    width: 100%;
    max-width: 100%;
    min-width: unset;
    padding: 30px 20px;
    margin: 0;
    box-sizing: border-box;
   
    
    border: 2px solid #c9a87c;
    border-radius: 16px;
  }

  .lp-franquia__content h3 {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #c9a87c;
  }

  .lp-franquia__list li {
    padding: 12px 0;
    font-size: 0.9rem;
    text-align: center;
    border-bottom: 1px solid rgba(201, 168, 124, 0.3);
  }

  .lp-franquia__list li strong {
    display: block;
    margin-bottom: 5px;
  }

  .lp-franquia__subtitle {
    font-size: 0.85rem;
    text-align: center;
    padding: 15px;
    margin-top: 15px;
    /* Fundo sutil para legibilidade, mas ainda transparente */
    background: rgba(201, 168, 124, 0.1);
    border-radius: 8px;
  }

  /* Esconde planta decorativa */
  .lp-franquia__plant {
    display: none;
  }

  /* Botão centralizado */
  .lp-franquia-btn-wrapper {
    text-align: center;
    margin: 30px 0;
  }

  .lp-franquia__btn {
    display: inline-block;
    padding: 16px 32px;
    font-size: 0.95rem;
  }

  /* Stats em 2 colunas no mobile, TRANSPARENTES */
  .lp-franquia_stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 30px;
  }

  .franquia-stat {
    padding: 20px 15px;
    /* TRANSPARÊNCIA nos stats também */
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid #c9a87c;
    border-radius: 12px;
  }

  .franquia-stat_icon {
    width: 40px;
    height: 40px;
  }

  .franquia-stat h4 {
    font-size: 0.85rem;
  }

  .franquia-stat p {
    font-size: 0.8rem;
  }

  .franquia-stat__highlight {
    font-size: 1.1rem;
  }
}

/* Mobile pequeno - stats em 1 coluna */
@media (max-width: 480px) {
  .lp-franquia {
    padding: 30px 10px;
  }

  .lp-franquia__content {
    padding: 25px 15px;
 
  }

  .lp-franquia__content h3 {
    font-size: 1.1rem;
  }

  .lp-franquia__list li {
    font-size: 16px;
  }

  /* Stats em 1 coluna */
  .lp-franquia_stats {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .franquia-stat {
    padding: 18px 15px;
    background: rgba(255, 255, 255, 0.85);
  }
}
/* ======================= SUPORTE AO FRANQUEADO ======================= */
.lp-suporte{
  padding: 90px 20px 80px;
  background: #f4efec;
}

.lp-suporte__container{
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

/* Header */
.lp-suporte__header{
  text-align: center;
  margin-bottom: 75px;
}

.lp-suporte__header h2{
  margin-bottom: 14px;
  font-size: 28px;
  color: #1f3e2e;
}

.lp-suporte__header p{
  max-width: 680px;
  margin: 0 auto;
  font-size: 14px;
  text-transform: uppercase;
}

/* Grid */
.lp-suporte__grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 46px;
  justify-items: center;
}

/* Listas */
.lp-suporte__list{
  list-style: none;
  padding: 0;
  margin: 0;
  
}

.lp-suporte__list li{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  line-height: 1.5;
  font-size:16px;
}

.lp-suporte__list img{
  width: 18px;
  margin-top: 3px;
}
.suporte-grid {
    display: flex;
    justify-content: space-between;
}

.suporte-col.destaque {
    margin: 0 auto;
}



/* ======================= RESPONSIVO ======================= */

/* Tablet */
@media (max-width: 992px) {
  .lp-suporte__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

/* Mobile - empilha tudo */
@media (max-width: 768px) {
  .lp-suporte__grid {
    grid-template-columns: 1fr;
    gap: 25px;
    /* Mantém alinhamento à esquerda */
    justify-items: start;
  }

  .lp-suporte__list {
    width: 100%;
    /* Força alinhamento à esquerda */
    text-align: left;
  }

  .lp-suporte__list li {
    margin-bottom: 15px;
    font-size: 0.95rem;
    /* Garante que não centralize */
    justify-content: flex-start;
    text-align: left;
  }
}

/* Mobile pequeno */
@media (max-width: 480px) {
  .lp-suporte__grid {
    gap: 20px;
  }

  .lp-suporte__list li {
    font-size: 0.9rem;
    gap: 10px;
  }

  .lp-suporte__list li img {
    width: 20px;
    height: 20px;
  }
}

/* CTA */
.lp-suporte__cta{
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.lp-suporte__btn{
  padding: 14px 28px;
  border-radius: 999px;
  border: 1px solid #d2a24b;
  text-decoration: none;
  font-weight: 600;
  color: #1f3e2e;
  transition: all .25s ease;
}

.lp-suporte__btn:hover{
  background: #d2a24b;
  transform: translateY(-2px);
}

/* Ilustração */
.lp-suporte__plant{
  position: absolute;
  right: 0;
  bottom: -20px;
  width: 180px;
  pointer-events: none;
}

/* Responsivo */
@media (max-width: 1024px){
  .lp-suporte__grid{
    grid-template-columns: repeat(2, 1fr);
  }

  .lp-suporte__plant{
    display: none;
  }
}

@media (max-width: 560px){
  .lp-suporte{
    padding: 70px 16px 60px;
  }

  .lp-suporte__grid{
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .lp-suporte__header h2{
    font-size: 28px;
  }
}
/* ======================= BENEFÍCIOS (isolado) ======================= */
#beneficios{
  padding: 90px 20px 70px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#beneficios .container{
  max-width: 1200px;
  min-height: 900px;
  height: auto;      /* ✅ */
}

/* Header */
#beneficios .beneficios-head{
  text-align: center;
  margin-bottom: 70px;
}

#beneficios .beneficios-head h2{
  margin: 0 0 10px;

  
  color: #1f3e2e;
  letter-spacing: .3px;
  text-transform: uppercase;
}

#beneficios .beneficios-divider{
  display: block;
  width: 52%;
  max-width: 520px;
  height: 2px;
  margin: 14px auto 16px;
  background: #d2a24b;
  border-radius: 999px;
}

#beneficios .beneficios-head p{
  margin: 0;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: #1f3e2e;
  opacity: .9;
}

/* Grid central (2x2) */
#beneficios .beneficios-grid{
  max-width: 980px;   /* centraliza e dá “respiro” igual ao layout */
  margin: 0 auto;
}

#beneficios .beneficios-list{
  list-style: none;
  padding: 0;
  margin: 0;

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px 54px;
}

#beneficios .beneficios-item{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #1f3e2e;
}

#beneficios .beneficios-icon{
  width: 18px;
  height: 18px;
  margin-top: 3px;
  flex: 0 0 18px;
}

#beneficios .beneficios-item p{
  margin: 0;
  line-height: 1.55;
  font-size: 16px;
}

 

/* Planta decorativa */
#beneficios .beneficios-plant{
  position: absolute;
  right: 0;
  bottom: -18px;
  width: 190px;
  pointer-events: none;
}

/* Responsivo */
@media (max-width: 900px){
  #beneficios .beneficios-list{
    grid-template-columns: 1fr;
    gap: 22px;
  }
  #beneficios .beneficios-plant{
    display: none;
  }
}
/* ======================= FAQ (isolado) ======================= */
#faq{
  padding: 90px 20px 80px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#faq .faq-wrap{
  max-width: 980px;
  margin: 0 auto;
  position: relative;
}

/* Header */
#faq .faq-head{
  text-align: center;
  margin-bottom: 35px;
   
}

#faq .faq-head h2{
  margin: 0 0 14px;
  font-size: 28px;
   
  color: #1f3e2e; /* verde do print */
  letter-spacing: .4px;
  text-transform: uppercase;
  line-height: 1.15;
}

#faq .faq-line{
  display: block;
  width: 56%;
  max-width: 520px;
  height: 2px;
  margin: 0 auto;
  background: #d2a24b; /* dourado do print */
  border-radius: 999px;
}

/* Accordion */
#faq .faq-accordion{
  margin-top: 28px;
  display: grid;
  gap: 10px;
  padding-top: 30px;
}

/* Item */
#faq .faq-item{
  background: #efe9e6; /* cinza/bege claro do print */
  border-radius: 10px;
  overflow: hidden;
}

/* Summary (pergunta) */
#faq .faq-q{
  list-style: none;
  cursor: pointer;
  user-select: none;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;

  padding: 25px 16px;
  font-size: 18px;
  color: #1f3e2e;
}

/* remove marcador padrão */
#faq .faq-q::-webkit-details-marker{ display:none; }
#faq .faq-item > summary::marker{ content:""; }

/* Lado esquerdo (número + texto) */
#faq .faq-left{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

#faq .faq-n{
   
  min-width: 18px;
  opacity: .85;
}

#faq .faq-txt{
  font-weight: 600;
  min-width: 0;
}

/* Chevron (CSS puro) */
#faq .faq-chevron{
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  display: inline-block;
  position: relative;
  transition: transform .25s ease;
}

#faq .faq-chevron::before{
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid rgba(31,62,46,.85);
  border-bottom: 2px solid rgba(31,62,46,.85);
  transform: translate(-50%, -60%) rotate(45deg);
}

/* gira ao abrir */
#faq .faq-item[open] .faq-chevron{
  transform: rotate(180deg);
}

/* Resposta (conteúdo aberto) */
#faq .faq-a{
  padding: 0 16px 14px;
}

#faq .faq-a p{
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(31,62,46,.88);
}

/* Hover discreto (igual sensação do print) */
#faq .faq-item:hover{
  background: #f3eeeb;
}

/* Folha decorativa */
#faq .faq-leaf{
  position: absolute;
  left: -10px;
  bottom: -26px;
  width: 70px;
  pointer-events: none;
  opacity: .95;
}

/* Responsivo */
@media (max-width: 560px){
  #faq{
    padding: 70px 16px 60px;
  }

  #faq .faq-head h2{
    font-size: 26px;
    
   
  }

  #faq .faq-leaf{
    display: none;
    
  }
}
/* ======================= HISTÓRIA (isolado) ======================= */
#historia{
  padding: 46px 20px;
  background: #143326; /* verde escuro */
  position: relative;
  overflow: hidden;
}

/* leve textura/gradiente tipo print */
#historia::before{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(1200px 300px at 30% 50%, rgba(255,255,255,.08), transparent 60%);
  pointer-events:none;
  opacity:.9;
}

#historia .historia-wrap{
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

#historia .historia-grid{
  display: grid;
  grid-template-columns: 320px 1px 1fr;
  align-items: center;
  gap: 26px;
}

/* Logo */
#historia .historia-logo{
  max-width: 260px;
  width: 100%;
  height: auto;
  display: block;
}

/* Divisor dourado */
#historia .historia-divider{
  width: 1px;
  height: 56px;
  background: #d2a24b;
  border-radius: 999px;
  justify-self: center;
}

/* Texto */
#historia .historia-text p{
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,.78);
  max-width: 640px;
}

/* Responsivo */
@media (max-width: 860px){
  #historia .historia-grid{
    grid-template-columns: 1fr;
    gap: 18px;
    text-align: center;
  }

  #historia .historia-brand{
    display: flex;
    justify-content: center;
  }

  #historia .historia-divider{
    width: 60%;
    height: 2px;
  }

  #historia .historia-text p{
    margin: 0 auto;
  }
}
/* ======================= CONTATO / FORMULÁRIO ======================= */
.contato{
  padding: 130px 10px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  background-color: #193524;
}

/* grid principal */
.contato_grid{
  max-width: 1200px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: top;
}





/* ======================= LADO ESQUERDO ======================= */
.contato__left{
  color: #ffffff;
  position: relative;
}

/* "logo" em texto */
.contato__left h2{
  margin: 0 0 6px;
  font-size: 56px;
   
   
  line-height: 1;
}

/* texto abaixo do logo */
.contato__left h2::after{
  content: "restaurante por quilo";
  display: block;
  font-size: 16px;
  letter-spacing: 1.6px;
  text-transform: lowercase;
  margin-top: 6px;
  font-family: inherit;
}

/* frase */
.contato__left p{
  margin-top: 26px;
  font-size: 22px;
  line-height: 1.4;
  max-width: 420px;
}

 nt */
.contato__left p strong{
  color: #d2a24b;
  font-weight: 700;
}

/* ramo decorativo */
.contato::after{
  content: "";
  position: absolute;
  left: 40px;
  bottom: 40px;
  width: 285px;
  height: 186px;
  background: url("images/ramo.png") no-repeat center / contain;
  pointer-events: none;
  opacity: .95;
}

/* ======================= FORM ======================= */
.form{
  background: #ffffff;
  border-radius: 26px;
  padding: 36px 40px 40px;
  box-shadow: 0 20px 40px rgba(0,0,0,.25);
  max-height: 620px;
  overflow-y: auto;
}

/* título do form */
.form h3{
  margin: 0 0 22px;
  font-size: 16px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: #1f3e2e;
}

/* linhas */
.form__row{
  margin-bottom: 16px;
}

.form__row label{
  display: block;
  font-size: 12px;
  margin-bottom: 6px;
  color: #1f3e2e;
  font-weight: 600;
}

.form__row input,
.form__row textarea{
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: none;
  background: #eef2f4;
  font-size: 14px;
  color: #1f3e2e;
}

.form__row textarea{
  resize: none;
}

/* botão */
.btn--primary{
  background: #1f3e2e;
  color: #ffffff;
  border: none;
  border-radius: 999px;
  padding: 14px 20px;
  font-weight: 600;
  cursor: pointer;
}

.btn--block{
  width: 100%;
}

.btn--primary:hover{
  background: #244a37;
}

/* ======================= RESPONSIVO ======================= */
@media (max-width: 1024px){
  .contato__grid{
    grid-template-columns: 1fr;
  }

  .contato__left{
    text-align: center;
  }

  .contato__left p{
    margin-left: auto;
    margin-right: auto;
  }

  .contato::after{
    display: none;
  }
}
/* ======================= MOBILE - CONTATO/FORMULÁRIO ======================= */

@media (max-width: 768px) {
  .contato {
    padding: 40px 20px;
  }

  .contato_grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  /* Título sobe - ordem 1 */
  .contato__left {
    order: 1;
    text-align: center;
    width: 100%;
  }

  .contato__left img {
    width: 200px;
    height: auto;
    margin-bottom: 20px;
  }

  .contato__left p {
    font-size: 1.2rem;
    color: #fff;
    line-height: 1.5;
  }

  .contato__left p strong {
    color: #c9a87c; /* cor dourada para destacar */
  }

  /* Formulário desce - ordem 2 */
  .form {
    order: 2;
    background: #fff;
    padding: 30px 25px;
    border-radius: 20px;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    box-sizing: border-box;
  }

  .form h3 {
    text-align: center;
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .form__row {
    margin-bottom: 20px;
  }

  .form__row label {
    display: block;
    font-size: 0.85rem;
    color: #555;
    margin-bottom: 8px;
    font-weight: 500;
  }

  .form__row input {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 0.95rem;
    box-sizing: border-box;
    background: #f8f8f8;
  }

  .form__row input::placeholder {
    color: #aaa;
  }

  .btn--block {
    width: 100%;
    padding: 16px;
     
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
  }
}

/* Mobile pequeno */
@media (max-width: 480px) {
  .contato {
    padding: 30px 15px;
  }

  .contato__left img {
    width: 200px;
    height: auto;
    margin-bottom: 20px;
    /* Centraliza a imagem */
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .contato__left p {
    font-size: 1rem;
  }

  .form {
    padding: 25px 20px;
    border-radius: 16px;
  }

  .form h3 {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .form__row input {
    padding: 12px;
    font-size: 0.9rem;
  }

  .btn--block {
    padding: 14px;
    font-size: 0.95rem;
  }
}
/* SECTION FAQ */
#faq{
  position: relative;
  overflow: hidden; /* corta a folha se sair pra fora */
  padding-bottom: 85px; /* espaço pro rodapé/folha não invadir o conteúdo */
 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* garante que o conteúdo fique acima da folha */
#faq .faq-wrap{
  position: relative;
  z-index: 2;
}

/* Folha no rodapé (ajuste fino aqui) */
 
#faq .faq-leaf {
    position: absolute;
    /* left: -25px; */
    bottom: -90px;
    width: 30px;
    height: auto;
    z-index: 1;
    pointer-events: none;
    user-select: none;
    filter: drop-shadow(0 10px 18px rgba(0, 0, 0, .18));
}

/* Mobile */
@media (max-width: 768px){
  #faq{
    padding-bottom: 80px; /* mantém espaço para não cortar conteúdo */
  }

  #faq .faq-leaf{
    position: absolute;
    width: 64px;          /* ajuste fino do tamanho */
    left: -18px;
    bottom: 0;            /* 👈 COLADA NO FUNDO */
    transform: translateY(50%); /* “abraça” a borda inferior */
  }
}



/* ===== Gallery ===== */

.sec--deep .grow-gallery{
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

/* garante que o palco/imageme preencham */
.grow-gallery__sticky,
.grow-gallery__stage{
  width: 100vw;
}

.grow-gallery__stage .gg-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  padding: 50px 0px 60px;
}
/* GALERIA FULL BLEED */
.grow-gallery{
  position: relative;
}

/* área que “segura” a imagem */
.grow-gallery__sticky{
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

/* palco */
.grow-gallery__stage{
  width: 100%;
  height: 100%;
  position: relative;
}

/* imagens */
.gg-img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;

  transform: scale(1);              /* <- era 0.85 */
  transition: opacity .6s ease;     /* autoplay = fade */
  opacity: 0;
}


.gg-img.active{
  opacity: 1;
}

.grow-gallery__track{
  height: 1px;          /* não precisa mais de trilho */
  overflow: hidden;
}
/* imagens */
.gg-img { opacity: 0; }
.gg-img.active { opacity: 1; }
.footer{
  background:#163b2a;
  color:#ffffff;
  text-align:center;
  padding:48px 16px 32px;
  position:relative;
}
/* FOOTER */
.footer__inner{
  max-width:1200px;
  margin:0 auto;
}

.footer__brand{
  margin-bottom:18px;
}

.footer__logo{
  font-size:36px;
  font-weight:700;
  display:block;
}

.footer__subtitle{
  font-size:13px;
  letter-spacing:.08em;
  text-transform:lowercase;
  opacity:.85;
}

.footer__follow{
  font-size:13px;
  margin-bottom:12px;
  opacity:.8;
}

.footer__social{
  display:flex;
  justify-content:center;
  gap:16px;
  margin-bottom:22px;
}

.footer__icon{
  width:36px;
  height:36px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.6);
  display:grid;
  place-items:center;
  color:#fff;
  text-decoration:none;
  transition:all .25s ease;
}

.footer__icon:hover{
   
   
  transform:translateY(-2px);
}

.footer__icon svg{
  width:18px;
  height:18px;
  fill:currentColor;
}

.footer__copy{
  font-size:12px;
  opacity:.7;
}

.footer__toTop{
  position:absolute;
  right:24px;
  bottom:24px;
  width:42px;
  height:42px;
  border-radius:50%;
  border:none;
  background:#fff;
  color:#163b2a;
  font-size:18px;
  cursor:pointer;
  transition:transform .2s ease, box-shadow .2s ease;
}

.footer__toTop:hover{
  transform:translateY(-3px);
  box-shadow:0 8px 20px rgba(0,0,0,.25);
}
/* ====== GALERIA (3 fotos + hover scale) ====== */
.galeria{
  padding: 72px 0;
}

.galeria__container{
  width: min(1100px, 92%);
  margin: 0 auto;
  padding-top: 30px;
}

.galeria__titulo{
  margin: 0 0 28px;
  font-size: 28px;
  font-weight: 700;
}
/* =========================
   GALERIA — RESPONSIVO
   ========================= */


/* ====== GALERIA (cards responsivos) ====== */
.galeria{
  padding: 72px 0;
}

.galeria__container{
  width: min(1100px, 92%);
  margin: 0 auto;
  padding-top: 30px;
}

.galeria__grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  justify-items: center;
}

/* Card (mais comprido no desktop) */
.galeria__card{
  position: relative;
  display: block;
  width: 100%;
  max-width: 560px;
  border-radius: 18px;
  overflow: hidden;
  background: #f3efef;
  box-shadow: 0 10px 22px rgba(0,0,0,.10);
  transform: translateZ(0);
  aspect-ratio: 16 / 9;
  position: relative; overflow: hidden;
}

/* Imagens preenchem o card */

.galeria__card img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.9s ease, transform .35s ease;
}

.galeria__card img.active{
  opacity: 1;
}

@media (max-width: 900px){
  .galeria__card{ display: none; }
  .galeria__card:first-child{ display: block; }
}

/* Hover zoom (só em dispositivos com hover) */
@media (hover: hover){
  .galeria__card:hover img{
    transform: scale(1.08);
  }
}

/* Mobile: 1 coluna + mostra só 1 foto por card */
@media (max-width: 900px){
  .galeria__grid{
    grid-template-columns: 1fr;
    gap: 18px;
  }

  /* mantém grande, mas sem ficar “alto demais” */
  .galeria__card{
    max-width: 100%;
    aspect-ratio: 16 / 9;
  }

  /* como você tem 3 <img> dentro do mesmo card, no mobile mostramos só a 1ª */
  .galeria__card img{
    display: none;
  }
  .galeria__card img:first-child{
    display: block;
  }
}


/* =========================
   GALERIA — ALTURA FIXA NO DESKTOP
   ========================= */
@media (min-width: 901px){
  .galeria__card{
    height: 526px;        /* altura desejada no desktop */
    aspect-ratio: auto;  /* desativa o ratio para respeitar a altura */
  }

  .galeria__card img{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;   /* preenche sem distorcer */
  }
}

















   


/* ===== Header Galeria (igual ao print) ===== */
.sec-head--gallery{
  text-align: center;
  color: #ffffff;
  padding: 6px 25px 10px;
}

.sec-head--gallery h2{
  margin: 0;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.sec-head--gallery p{
  margin: 12px 0 0;
  font-size: 12px;
  letter-spacing: .28em;
  text-transform: uppercase;
  opacity: .85;
}

.sec-head__line{
  display: block;

  height: 1px;
  margin: 14px auto 10px;
  background: #b7a24a; /* dourado */
}
.footer__toTop {
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease, transform .3s ease;
  transform: translateY(10px);
}

.footer__toTop.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}


 /* =========================
   MOBILE — MOSTRAR APENAS 1 FOTO TOTAL
   ========================= */
@media (max-width: 900px){

  /* garante 1 coluna */
  .galeria__grid{
    grid-template-columns: 1fr;
  }

  /* ESCONDE todos os cards... */
  .galeria__card{
    display: none;
  }

  /* ...e mostra só o PRIMEIRO */
  .galeria__card:first-child{
    display: block;
  }

  /* garante que só 1 imagem apareça dentro do card */
  .galeria__card img{
    display: none;
  }

  .galeria__card img:first-child{
    display: block;
  }
}
.lp-social__grid{
  width: 100%;
  margin-top: 22px;
}

/* força o widget a ocupar a largura correta do container */
.lp-social__grid > div{
  width: 100%;
}
 

 

/* Botão flutuante WhatsApp - topo direito */
.btn-wpp-float {
  position: fixed;
  bottom: 70px;
    right: 20px;
  z-index: 9999;

  width: 54px;
  height: 54px;
  border-radius: 50%;
  background-color: #25D366;
  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 28px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.btn-wpp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

/* Ajuste mobile */
@media (max-width: 768px) {
  .btn-wpp-float {
    bottom: 20px;   /* reduz distância */
    right: 15px;
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
}
 
.insta-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.insta-grid blockquote{
  margin: 0 !important;
  width: 100% !important;
}

@media (max-width: 900px){
  .insta-grid{
    grid-template-columns: 1fr;
  }
}
.insta-grid blockquote{
  margin: 0 !important;
  width: 100% !important;
}



.ig-grid{
  display:grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.ig-item{
  position: relative;
  display:block;
  aspect-ratio: 1 / 1;      /* quadrado tipo feed */
  overflow:hidden;
  background:#eee;
  border-radius: 0;         /* no seu print é reto */
}

.ig-item img{
  width:100%;
  height:100%;
  object-fit:cover;
  transform: scale(1);
  transition: transform .35s ease;
}

.ig-item:hover img{
  transform: scale(1.05);
}

/* responsivo */
@media (max-width: 1024px){
  .ig-grid{ grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px){
  .ig-grid{ grid-template-columns: repeat(2, 1fr); }
}

/* ===== GALERIA BENEFÍCIOS – FIX DEFINITIVO ===== */

.galeria__grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

/* VIDEO ocupa 2 colunas, sem sobrepor */
.galeria__video{
  grid-column: 1 / -1;
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: #f3efef;
  box-shadow: 0 10px 22px rgba(0,0,0,.10);
}

.galeria__video video{
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* garante que os cards fiquem normais */
.galeria__card{
  position: relative;
  display: block;
}

/* MOBILE */
@media (max-width: 900px){
  .galeria__grid{
    grid-template-columns: 1fr;
  }
}


/* garante que as fotos fiquem abaixo */
.galeria__card{
  position: relative;
  z-index: 1;
}

/* MOBILE: vídeo vira bloco normal */
@media (max-width: 900px){
  .galeria__video{
    position: relative;
    top: 0;
    transform: none;
    margin-bottom: 22px;
  }
}
.galeria__grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  align-items: stretch;
}

.galeria__video{
  grid-column: 1 / -1;   /* ocupa as 2 colunas */
  border-radius: 18px;
  overflow: hidden;
  background: #f3efef;
  box-shadow: 0 10px 22px rgba(0,0,0,.10);
}

.galeria__video video{
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
/* ===== GALERIA COM VIDEO PRIMEIRO ===== */

.galeria__grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  align-items: stretch;
}

/* VIDEO ocupa as 2 colunas */
.galeria__video{
  grid-column: 1 / -1;
  border-radius: 18px;
  overflow: hidden;
  background: #f3efef;
  box-shadow: 0 10px 22px rgba(0,0,0,.10);
}

.galeria__video video{
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* MOBILE */
@media (max-width: 900px){
  .galeria__grid{
    grid-template-columns: 1fr;
  }
}


/* FADE H2*/

/* ===================== */
/* FADE UP — APENAS H2 */
/* ===================== */

h2.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
  will-change: opacity, transform;
}

h2.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

#popup {
  display: none; /* começa oculto */
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  justify-content: center;

  align-items: center;
    z-index: 9999; /* garante que fique acima de tudo */
}

.popup-content {
    
    background: #f6f1ed;
    padding: 80px;
    border-radius: 8px;
    max-width: 600px;
    text-align: center;
    position: absolute;
     
      
}

.popup-content .close {
  position: absolute;
  top: 10px; right: 20px;
  font-size: 24px;
  cursor: pointer;
}
