.hero{
  position: relative;
  padding: 120px 0 100px; 
  overflow: hidden;

  /* fundo suave, harmonizado */
  background:
    radial-gradient(900px 500px at 50% 30%, rgba(80,110,80,0.18), transparent 55%),
    radial-gradient(700px 380px at 55% 55%, rgba(80,110,80,0.12), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,0.55), rgba(255,255,255,0.00));
}

.hero-inner{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
}

.hero-badge{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(35,45,35,0.10);
  box-shadow: 0 14px 30px rgba(20, 30, 20, 0.08);
  color: rgba(42,47,42,0.78);
}

.hero-title{
  margin: 16px 0 0;
  font-size: clamp(40px, 6vw, 78px);
  line-height: 1.08;
  letter-spacing: -1px;
  color: var(--green-900);
  font-weight: 700;
}

.hero-title span{
  display: block;
  font-weight: 500;
  color: rgba(70, 95, 70, 0.88);
  margin-top: 14px;
}

.hero-subtitle{
  margin-top: 10px;
  max-width: 760px;
  font-size: 18px;
  line-height: 1.65;
  color: rgba(42,47,42,0.68);
}

.hero-actions{
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
}

.arrow{
  transition: transform 180ms ease;
}

.btn-primary:hover .arrow{
  transform: translateX(4px);
}

/* espaço para âncora */
.anchor-spacer{
  position: absolute;
  bottom: 0;
  height: 1px;
  width: 1px;
}

/* mobile */
@media (max-width: 560px){
  .hero{ padding: 70px 0 60px; }
  .hero-actions{ flex-direction: column; width: 100%; }
  .hero-actions .btn{ width: min(420px, 100%); }
}

/* ========== STATS ========== */
.stats{
  padding: 22px 0 40px;
  margin-top: -22px; /* puxa ligeiramente para cima (igual ao print) */
}

.stats-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  align-items: stretch;
}

.stat-card{
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(35,45,35,0.10);
  border-radius: 18px;
  padding: 28px 18px;
  text-align: center;

  box-shadow: 0 18px 35px rgba(20,30,20,0.08);
  backdrop-filter: blur(10px);

  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.stat-card:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,0.86);
  box-shadow: 0 24px 45px rgba(20,30,20,0.12);
}

.stat-number{
  font-size: 44px;
  font-weight: 600;
  letter-spacing: -0.8px;
  color: rgba(70, 95, 70, 0.92);
  line-height: 1;
}

.stat-label{
  margin-top: 10px;
  font-size: 14.5px;
  color: rgba(42,47,42,0.62);
}

/* responsivo */
@media (max-width: 980px){
  .stats-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px){
  .stats-grid{ grid-template-columns: 1fr; }
}

/* ========== ABORDAGEM ========== */
.approach{
  padding: 90px 0 80px;
  background: linear-gradient(
    180deg,
    rgba(245,247,243,0.65),
    rgba(245,247,243,0.35)
  );
}

.approach-header{
  text-align: center;
  max-width: 760px;
}

.approach-header h2{
  font-size: clamp(32px, 4vw, 44px);
  color: rgba(45,65,45,0.95);
  margin-bottom: 14px;
  letter-spacing: -0.4px;
}

.approach-header p{
  font-size: 18px;
  line-height: 1.7;
  color: rgba(42,47,42,0.65);
}

/* grid dos cards */
.approach-grid{
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* card */
.approach-card{
  position: relative;
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(35,45,35,0.10);
  border-radius: 22px;
  padding: 34px 28px;
  text-align: left;

  box-shadow: 0 20px 40px rgba(20,30,20,0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.approach-card:hover{
  transform: translateY(-3px);
  background: rgba(255,255,255,0.9);
  box-shadow: 0 28px 55px rgba(20,30,20,0.14);
}

.approach-card::after{
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 0.1px;

  height: 5px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(70,95,70,.7),
    transparent
    );

  transform: scaleX(0);
  transform-origin: center;
  transition: transform 350ms ease;
}

.approach-card:hover::after{
  transform: scaleX(1);
}



/* ícone */
.approach-icon{
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(240,243,238,0.9);
  border: 1px solid rgba(70,95,70,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.approach-icon img{
  width: 26px;
  height: 26px;
  opacity: 0.85;

}

/* texto */
.approach-card h3{
  font-size: 20px;
  margin-bottom: 10px;
  color: rgba(42,47,42,0.9);
}

.approach-card p{
  font-size: 15.5px;
  line-height: 1.65;
  color: rgba(42,47,42,0.65);
}

/* responsivo */
@media (max-width: 980px){
  .approach-grid{
    grid-template-columns: 1fr;
  }
}

/* ========== SERVIÇOS (HOME) ========== */
.services-home{
  padding: 90px 0 90px;
  background:
    radial-gradient(900px 500px at 50% 18%, rgba(80,110,80,0.12), transparent 60%),
    linear-gradient(180deg, rgba(245,247,243,0.35), rgba(245,247,243,0.55));
}

.section-head{
  text-align: center;
  max-width: 820px;
}

.section-head h2{
  font-size: clamp(34px, 4.2vw, 52px);
  margin: 0 0 14px;
  color: rgba(45,65,45,0.95);
  letter-spacing: -0.6px;
}

.section-head p{
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(42,47,42,0.62);
  max-width: 720px;
}

/* grid */
.services-grid{
  margin-top: 58px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

/* cards */
.service-card{
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(35,45,35,0.10);
  border-radius: 26px;
  padding: 34px 28px 28px;
  box-shadow: 0 20px 40px rgba(20,30,20,0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
  min-height: 260px;
  display: flex;
  flex-direction: column;
}

.service-card:hover{
  transform: translateY(-3px);
  background: rgba(255,255,255,0.92);
  box-shadow: 0 28px 55px rgba(20,30,20,0.14);
}

/* ícone */
.service-icon{
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: rgba(240,243,238,0.95);
  border: 1px solid rgba(35,45,35,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.service-icon img{
  width: 26px;
  height: 26px;
  opacity: 0.85;
  
}

.service-icon img,
.approach-icon img{
  opacity: 1;
  filter: invert(32%) sepia(12%) saturate(620%) hue-rotate(70deg);
}


/* texto */
.service-card h3{
  margin: 6px 0 12px;
  font-size: 19px;
  color: rgba(42,47,42,0.92);
  font-weight: 650;
}

.service-card p{
  margin: 0 0 18px;
  color: rgba(42,47,42,0.65);
  line-height: 1.7;
  font-size: 15.5px;
}

/* link “Saber mais” */
.service-link{
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(70,95,70,0.92);
  font-weight: 600;
  padding: 8px 0;
  width: fit-content;
  transition: transform 180ms ease, opacity 180ms ease;
}

.service-link:hover{
  transform: translateX(2px);
  opacity: 0.95;
}

.service-link span{
  transition: transform 180ms ease;
}

.service-link:hover span{
  transform: translateX(3px);
}

/* botão final */
.services-cta{
  margin-top: 46px;
  display: flex;
  justify-content: center;
}

/* responsivo */
@media (max-width: 980px){
  .services-grid{ grid-template-columns: 1fr; }
  .service-card{ min-height: auto; }
}

/* ========== BENEFÍCIOS ========== */
.benefits{
  padding: 90px 0 90px;
  background:
    radial-gradient(900px 520px at 50% 25%, rgba(80,110,80,0.10), transparent 60%),
    linear-gradient(180deg, rgba(245,247,243,0.45), rgba(245,247,243,0.35));
}

.benefits-grid{
  margin-top: 58px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

/* card */
.benefit-card{
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(35,45,35,0.10);
  border-radius: 26px;
  padding: 34px 28px 30px;
  box-shadow: 0 20px 40px rgba(20,30,20,0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.benefit-card:hover{
  transform: translateY(-3px);
  background: rgba(255,255,255,0.92);
  box-shadow: 0 28px 55px rgba(20,30,20,0.14);
}

.benefit-icon{
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: rgba(240,243,238,0.95);
  border: 1px solid rgba(35,45,35,0.12);
  margin-bottom: 18px;

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

.benefit-icon img{
  width: 22px;
  height: 22px;
  opacity: 1;
  filter: invert(32%) sepia(12%) saturate(620%) hue-rotate(70deg);
}




/* texto */
.benefit-card h3{
  margin: 6px 0 12px;
  font-size: 19px;
  color: rgba(42,47,42,0.92);
  font-weight: 650;
}

.benefit-card p{
  margin: 0;
  color: rgba(42,47,42,0.65);
  line-height: 1.7;
  font-size: 15.5px;
}

/* responsivo */
@media (max-width: 980px){
  .benefits-grid{ grid-template-columns: 1fr; }
}

/* ========== SOBRE (HOME) ========== */
.about-home{
  padding: 100px 0 100px;
  background:
    radial-gradient(900px 500px at 65% 35%, rgba(80,110,80,0.10), transparent 60%),
    linear-gradient(180deg, rgba(245,247,243,0.35), rgba(245,247,243,0.55));
}

.about-grid{
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}

/* Foto */
.about-photo{
  background: rgba(240,243,238,0.9);
  border: 1px solid rgba(35,45,35,0.12);
  border-radius: 32px;
  height: 620px;
  box-shadow: 0 24px 55px rgba(20,30,20,0.10);
  overflow: hidden;
  position: relative;
}

.about-photo-inner{
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(42,47,42,0.62);
  text-align: center;
}

.about-photo-icon{
  width: 86px;
  height: 86px;
  border-radius: 999px;
  border: 2px solid rgba(70,95,70,0.35);
  background: rgba(255,255,255,0.35);
  margin-bottom: 14px;
  position: relative;
}

.about-photo-icon::after{
  content: "";
  position: absolute;
  inset: 26px;
  border: 2px solid rgba(70,95,70,0.55);
  border-radius: 14px;
}

.about-photo-text{
  font-size: 15px;
}

/* Conteúdo */
.about-content{
  max-width: 520px;
}

.pill{
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(235,239,233,0.9);
  border: 1px solid rgba(35,45,35,0.10);
  color: rgba(70,95,70,0.92);
  font-weight: 600;
  margin-bottom: 20px;
}

.about-name{
  margin: 0;
  font-size: clamp(36px, 4.2vw, 54px);
  letter-spacing: -0.8px;
  color: rgba(45,65,45,0.95);
}

.about-role{
  margin-top: 10px;
  font-size: 19px;
  color: rgba(70,95,70,0.78);
}

.about-p{
  margin-top: 18px;
  line-height: 1.75;
  color: rgba(42,47,42,0.65);
  font-size: 16px;
}

/* lista */
.about-list{
  margin-top: 26px;
  display: grid;
  gap: 14px;
}


/* ========== ÍCONES DA LISTA (ABOUT) – OPÇÃO 3 ========== */

/* Linha da lista */
.about-item{
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(42,47,42,0.72);
  font-weight: 600;

  transition: transform 280ms ease;
}

/* Círculo */
.about-ico{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(35,45,35,0.12);
  background: rgba(240,243,238,0.95);

  display: grid;
  place-items: center;

  transition: transform 280ms cubic-bezier(.2,.9,.2,1), box-shadow 280ms ease;
  transform-origin: center;
  will-change: transform;
}

/* Ícone dentro (SVG/IMG) */
.about-ico img{
  width: 18px;
  height: 18px;
  opacity: 1;
  filter: invert(32%) sepia(12%) saturate(620%) hue-rotate(70deg);
}


/* Hover: aumenta + tilt “para cima/direita” */
.about-item:hover .about-ico{
  transform: scale(1.10) rotate(6deg);
  box-shadow: 0 14px 28px rgba(20,30,20,0.12);
}

/* Hover: dá um micro shift no texto também (fica mais premium) */
.about-item:hover{
  transform: translateX(2px);
}

/* Hover: ícone dá um “pop” */
.about-item:hover .about-ico img{
  transform: scale(1.06);
  opacity: 0.95;
}

/* acessibilidade */
@media (prefers-reduced-motion: reduce){
  .about-ico,
  .about-item,
  .about-ico img{
    transition: none;
  }
  .about-item:hover .about-ico{
    transform: none;
    box-shadow: none;
  }
  .about-item:hover{
    transform: none;
  }
  .about-item:hover .about-ico img{
    transform: none;
    opacity: 0.78;
  }
}


/* botão */
.about-btn{
  margin-top: 28px;
}

/* responsivo */
@media (max-width: 980px){
  .about-grid{
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .about-photo{
    height: 420px;
  }
  .about-content{
    max-width: 100%;
  }
}

/* ========== LOCALIZAÇÃO & CONTACTO ========== */
.contact{
  padding: 95px 0 95px;
  background:
    radial-gradient(900px 520px at 50% 25%, rgba(80,110,80,0.10), transparent 60%),
    linear-gradient(180deg, rgba(245,247,243,0.35), rgba(245,247,243,0.55));
}

.contact-grid{
  margin-top: 58px;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 26px;
  align-items: start;
}

/* MAPA */
.map-box{
  height: 520px;
  border-radius: 28px;
  border: 1px solid rgba(35,45,35,0.10);
  background: rgba(240,243,238,0.75);
  box-shadow: 0 24px 55px rgba(20,30,20,0.10);
  overflow: hidden; /* MUITO importante para cantos arredondados */
  position: relative;
}

/* O iframe do Google Maps */
.google-map{
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* deixa o mapa mais soft e a combinar com a tua palete */
.map-box .google-map{
  filter: saturate(0.9) contrast(1.02);
}


/* grelha leve (como no print) */


.map-center{
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 24px;
  color: rgba(42,47,42,0.62);
}

.map-pin{
  width: 88px;
  height: 88px;
  border-radius: 999px;
  border: 2px solid rgba(70,95,70,0.30);
  background: rgba(255,255,255,0.35);
  position: relative;
  margin-bottom: 16px;
}

.map-pin::after{
  content: "";
  position: absolute;
  inset: 28px;
  border: 2px solid rgba(70,95,70,0.55);
  border-radius: 14px;
}

.map-title{
  font-weight: 700;
  color: rgba(45,65,45,0.86);
  margin-bottom: 6px;
}

.map-sub{
  color: rgba(42,47,42,0.58);
}

/* CARDS */
.contact-cards{
  display: grid;
  gap: 18px;
}

.info-card{
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 14px;
  align-items: center;

  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(35,45,35,0.10);
  border-radius: 22px;
  padding: 22px 22px;
  box-shadow: 0 20px 40px rgba(20,30,20,0.08);

  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.info-card:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,0.92);
  box-shadow: 0 28px 55px rgba(20,30,20,0.14);
}

.info-ico{
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 1px solid rgba(35,45,35,0.12);
  background: rgba(240,243,238,0.95);

  display: grid;
  place-items: center;

  transition: transform 280ms cubic-bezier(.2,.9,.2,1), 
              box-shadow 280ms ease;
  will-change: transform;
}

.info-ico img{
  width: 22px;
  height: 22px;
  opacity: 1;

  /* verde do site */
  filter: invert(32%) sepia(12%) saturate(620%) hue-rotate(70deg);

  transition: transform 220ms ease, opacity 220ms ease;
}

.info-card:hover .info-ico{
  transform: scale(1.08) rotate(6deg);
  box-shadow: 0 14px 28px rgba(20,30,20,0.12);
}

.info-card:hover .info-ico img{
  transform: scale(1.06);
  opacity: 0.95;
}


.info-title{
  font-size: 14px;
  color: rgba(42,47,42,0.62);
  margin-bottom: 6px;
  font-weight: 650;
}

.info-main{
  font-size: 17px;
  color: rgba(42,47,42,0.86);
  font-weight: 650;
  margin-bottom: 6px;
}

.info-sub{
  font-size: 14.5px;
  color: rgba(42,47,42,0.60);
  line-height: 1.5;
}

/* responsivo */
@media (max-width: 980px){
  .contact-grid{
    grid-template-columns: 1fr;
  }
  .map-box{
    height: 420px;
  }
}

/* ========== CTA FINAL ========== */
.cta-final{
  padding: 95px 0 95px;
  background:
    radial-gradient(900px 520px at 50% 25%, rgba(80,110,80,0.10), transparent 60%),
    linear-gradient(180deg, rgba(245,247,243,0.35), rgba(245,247,243,0.55));
}

.cta-box{
  max-width: 1100px;
  margin: 0 auto;
  padding: 66px 40px;
  border-radius: 30px;
  border: 1px solid rgba(35,45,35,0.10);
  background: rgba(240,243,238,0.75);
  box-shadow: 0 28px 60px rgba(20,30,20,0.12);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* brilho suave */
.cta-box::before{
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 50% 40%, rgba(80,110,80,0.14), transparent 55%);
  transform: rotate(8deg);
  pointer-events: none;
}

/* ícone placeholder */
.cta-icon{
  width: 58px;
  height: 58px;
  border-radius: 16px;
  border: 1px solid rgba(35,45,35,0.12);
  background: rgba(235,239,233,0.95);
  display: grid;
  place-items: center;
  margin: 0 auto 22px;
}

.cta-icon img{
  width: 24px;
  height: 24px;
  opacity: 1;
  filter: invert(32%) sepia(12%) saturate(620%) hue-rotate(70deg);
}

/* texto */
.cta-box h2{
  margin: 0 0 16px;
  font-size: clamp(28px, 3.4vw, 44px);
  color: rgba(45,65,45,0.95);
  letter-spacing: -0.6px;
}

.cta-box p{
  margin: 0 auto;
  max-width: 720px;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(42,47,42,0.62);
}

/* botões */
.cta-actions{
  margin-top: 34px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* botão “ghost” */
.btn-ghost{
  background: rgba(230,234,228,0.75);
  border: 1px solid rgba(35,45,35,0.10);
  color: rgba(42,47,42,0.80);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn-ghost:hover{
  transform: translateY(-1px);
  background: rgba(236,240,234,0.95);
  box-shadow: 0 18px 35px rgba(20,30,20,0.10);
}

@media (max-width: 680px){
  .cta-box{ padding: 54px 22px; }
  .cta-actions{ gap: 12px; }
}


/* Scroll reveal (sem blur) */
.reveal{
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms ease;
  will-change: opacity, transform;
}

.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}

/*reveal da esquerda para a direita*/
.reveal-left{
  transform: translateX(-60px);
}

.reveal-left.is-visible{
  opacity: 1;
  transform: translateX(0);
}

/*reveal da direita para a esquerda*/
.reveal-right{
  transform: translateX(60px);
}

.reveal-right.is-visible{
  opacity: 1;
  transform: translateX(0);
}



/* BENEFITS – estado inicial (antes de aparecer no scroll) */
.benefit-reveal{
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 1100ms ease, transform 1400ms cubic-bezier(.2,.9,.2,1);
  will-change: opacity, transform;
}

/* quando entra no viewport */
.benefit-reveal.is-visible{
  opacity: 1;
  transform: scale(1);
}

/* hover mantém o efeito bonito */
.benefit-card:hover{
  transform: translateY(-3px) scale(1);
}

/* acessibilidade */
@media (prefers-reduced-motion: reduce){
  .benefit-reveal{
    opacity: 1;
    transform: scale(1);
    transition: none;
  }
}

/* FIX hover para elementos que também têm reveal */
.service-card.reveal.is-visible:hover{
  transform: translateY(-3px);
}

.stat-card.reveal.is-visible:hover{
  transform: translateY(-2px);
}

.approach-card.reveal.is-visible:hover{
  transform: translateY(-3px);
}

.back-to-top{
  position: fixed;
  bottom: 28px;
  right: 28px;

  width: 54px;
  height: 54px;
  border-radius: 999px;

  background: rgba(240,243,238,0.95);
  border: 1px solid rgba(35,45,35,0.15);

  display: grid;
  place-items: center;

  cursor: pointer;
  z-index: 1200;

  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);

  transition: 
    opacity 220ms ease,
    transform 220ms ease,
    box-shadow 220ms ease;
}

.back-to-top img{
  width: 20px;
  height: 20px;
  filter: invert(32%) sepia(12%) saturate(620%) hue-rotate(70deg);
}

/* visível quando aparece */
.back-to-top.is-visible{
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* hover bonito */
.back-to-top:hover{
  box-shadow: 0 16px 30px rgba(20,30,20,0.14);
  transform: translateY(-2px);
}

/* =========================
   BOOKING MODAL
========================= */

.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
}

.booking-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 24, 18, 0.52);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.booking-panel {
  position: absolute;
  top: 0;
  right: 0;
  height: 100dvh;
  width: min(720px, 100%);
  background:
    radial-gradient(700px 420px at top right, rgba(255,255,255,0.06), transparent 55%),
    linear-gradient(180deg, #466346 0%, #3f5640 100%);
  color: #f8f7f2;
  box-shadow: -24px 0 60px rgba(18, 28, 20, 0.28);
  transform: translateX(100%);
  transition: transform 0.42s cubic-bezier(.22,1,.36,1);
  overflow-y: auto;
  padding: 34px 32px 40px;
  font-family: inherit;
}

.booking-modal.is-open {
  pointer-events: auto;
}

.booking-modal.is-open .booking-overlay {
  opacity: 1;
}

.booking-modal.is-open .booking-panel {
  transform: translateX(0);
}

.booking-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.booking-close:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

.booking-head {
  padding-right: 64px;
  margin-bottom: 28px;
}

.booking-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.booking-head h2 {
  margin: 0 0 12px;
  font-size: clamp(2.1rem, 5vw, 3.5rem);
  line-height: 1.02;
  color: #ffffff;
  letter-spacing: -0.03em;
}

.booking-head p {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.86);
  max-width: 560px;
}

.booking-form {
  display: block;
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  margin-bottom: 9px;
  font-size: 0.98rem;
  font-weight: 600;
  color: #ffffff;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border-radius: 18px;
  padding: 16px 18px;
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, transform 0.2s ease;
  backdrop-filter: blur(3px);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.62);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(255, 255, 255, 0.34);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.11);
}

/* SELECT CUSTOM */
.form-group select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  color: #ffffff;
  cursor: pointer;
  padding-right: 52px;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255,255,255,0.92) 50%),
    linear-gradient(135deg, rgba(255,255,255,0.92) 50%, transparent 50%);
  background-position:
    calc(100% - 24px) calc(50% - 3px),
    calc(100% - 18px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.form-group select option {
  color: #2f4632;
  background: #ffffff;
}

.form-group select option:checked {
  color: #ffffff;
  background: #466346;
}

/* DATE ICON */
.form-group input[type="date"] {
  color-scheme: dark;
}

.form-group input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  filter: invert(1);
  opacity: 0.9;
}

/* CONSENTIMENTO */
.booking-consent {
  margin-top: 6px;
  margin-bottom: 22px;
}

.booking-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  color: #ffffff;
  font-size: 0.98rem;
  line-height: 1.6;
}

.booking-checkbox input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.booking-checkbox .checkmark {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  border-radius: 5px;
  margin-top: 2px;
  position: relative;
  background: transparent;
  transition: all 0.2s ease;
}

.booking-checkbox input:checked + .checkmark {
  background: #c9c06e;
  border-color: #c9c06e;
}

.booking-checkbox input:checked + .checkmark::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid #2f4632;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.booking-checkbox a {
  color: #e7dd93;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.booking-checkbox a:hover {
  color: #fff1a8;
}

/* AÇÕES */
.booking-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 8px;
}

.booking-submit {
  width: 100%;
  justify-content: center;
  border-radius: 999px;
  padding: 18px 24px;
  font-size: 1.08rem;
  font-weight: 700;
  background: #c9c06e !important;
  color: #ffffff !important;
  border: 1px solid #c9c06e !important;
  box-shadow: 0 10px 24px rgba(201, 192, 110, 0.22);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.booking-submit:hover {
  background: #d6cc79 !important;
  border-color: #d6cc79 !important;
  color: #ffffff !important;
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(201, 192, 110, 0.28);
}

.booking-actions .btn.btn-ghost {
  align-self: flex-start;
  min-width: 130px;
  border-radius: 999px;
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.booking-actions .btn.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.34);
}

body.booking-open {
  overflow: hidden;
}

@media (max-width: 640px) {
  .booking-panel {
    width: 100%;
    padding: 24px 18px 30px;
  }

  .booking-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .booking-head {
    padding-right: 56px;
  }

  .booking-head h2 {
    font-size: 2.2rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    border-radius: 16px;
    padding: 15px 16px;
  }
}

/* =========================
   FOOTER LEGAL LINKS
========================= */

.footer-bottom{
  margin-top:40px;
  padding-top:20px;
  border-top:1px solid rgba(0,0,0,0.08);

  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
}

.footer-legal{
  font-size:0.95rem;
  color:#6a736a;
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  justify-content:center;
}

.footer-legal a{
  color:#6a736a;
  text-decoration:none;
  transition:color .2s ease;
}

.footer-legal a:hover{
  color:#466346;
  text-decoration:underline;
}

.footer-copy{
  font-size:0.9rem;
  color:#7c857c;
}



/* =========================
   WHY BOOKING
========================= */

.why-booking {
  padding: 88px 0;
  background: linear-gradient(180deg, #f8fbf7 0%, #f4f7f2 100%);
}

.why-booking-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 42px;
  align-items: center;
}

.why-booking-content {
  min-width: 0;
}

.why-booking-title {
  margin: 14px 0 18px;
  font-size: clamp(2rem, 3vw, 2.9rem);
  line-height: 1.08;
  color: #3f5640;
}

.why-booking-text {
  margin: 0 0 16px;
  font-size: 1.03rem;
  line-height: 1.85;
  color: #667266;
  max-width: 640px;
}

.why-booking-list {
  margin-top: 30px;
  display: grid;
  gap: 16px;
}

.why-booking-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #5f6b5f;
  font-size: 1rem;
  line-height: 1.6;
  transition: transform 280ms ease;
}

.why-booking-ico {
  width: 54px;
  height: 54px;
  min-width: 54px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(240,243,238,0.95);
  border: 1px solid rgba(35,45,35,0.12);
  transition: transform 280ms cubic-bezier(.2,.9,.2,1), box-shadow 280ms ease;
  transform-origin: center;
  will-change: transform;
}

.why-booking-ico img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  opacity: 1;
  filter: invert(32%) sepia(12%) saturate(620%) hue-rotate(70deg);
  transition: transform 220ms ease, opacity 220ms ease;
}

.why-booking-item:hover {
  transform: translateX(2px);
}

.why-booking-item:hover .why-booking-ico {
  transform: scale(1.08) rotate(6deg);
  box-shadow: 0 14px 28px rgba(20,30,20,0.12);
}

.why-booking-item:hover .why-booking-ico img {
  transform: scale(1.06);
  opacity: 0.95;
}

.why-booking-actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.why-booking-visual {
  min-width: 0;
}

.why-booking-card {
  background: #ffffff;
  border: 1px solid rgba(67, 94, 67, 0.12);
  border-radius: 30px;
  padding: 34px 30px;
  box-shadow: 0 20px 60px rgba(53, 72, 53, 0.08);
}

.why-booking-card h3 {
  margin: 0 0 22px;
  font-size: 1.45rem;
  line-height: 1.25;
  color: #3f5640;
}

.why-booking-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.why-booking-points li {
  position: relative;
  padding-left: 26px;
  font-size: 1rem;
  line-height: 1.65;
  color: #5f6b5f;
}

.why-booking-points li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 0.08em;
  color: #5b7a5b;
  font-size: 0.84rem;
}

/* RESPONSIVO */
@media (max-width: 980px) {
  .why-booking {
    padding: 72px 0;
  }

  .why-booking-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .why-booking-card {
    padding: 28px 24px;
  }
}

@media (max-width: 640px) {
  .why-booking {
    padding: 58px 0;
  }

  .why-booking-title {
    font-size: 1.9rem;
  }

  .why-booking-text {
    font-size: 0.98rem;
    line-height: 1.78;
  }

  .why-booking-item {
    align-items: flex-start;
  }

  .why-booking-ico {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 16px;
  }

  .why-booking-card {
    border-radius: 24px;
    padding: 24px 20px;
  }

  .why-booking-card h3 {
    font-size: 1.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .why-booking-item,
  .why-booking-ico,
  .why-booking-ico img {
    transition: none;
  }

  .why-booking-item:hover {
    transform: none;
  }

  .why-booking-item:hover .why-booking-ico {
    transform: none;
    box-shadow: none;
  }

  .why-booking-item:hover .why-booking-ico img {
    transform: none;
    opacity: 1;
  }
}

.about-photo{
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  min-height: 520px;
  background: rgba(240,243,238,0.85);
  box-shadow: 0 28px 70px rgba(20,30,20,0.12);
}

.about-photo-img{
  width: 100%;
  height: 100%;
  min-height: 520px;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: inherit;
}

/* =========================================================
   RESPONSIVO LIMPO — MOBILE / TABLET
   Colar no FIM do CSS
========================================================= */

*,
*::before,
*::after{
  box-sizing: border-box;
}

html,
body{
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

img,
video,
iframe{
  max-width: 100%;
}

body{
  -webkit-text-size-adjust: 100%;
}

h1, h2, h3, p, a, span, div{
  overflow-wrap: break-word;
}

.container{
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

/* =========================================================
   HEADER + HAMBURGUER
========================================================= */

.site-header{
  position: sticky;
  top: 0;
  z-index: 3000;
}

.header-inner{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand{
  min-width: 0;
  flex: 1;
}

.brand-text{
  min-width: 0;
}

.brand-title,
.brand-subtitle{
  display: block;
}

.brand-title{
  white-space: nowrap;
}

.brand-subtitle{
  line-height: 1.2;
}

.nav-toggle{
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(35,45,35,0.12);
  background: rgba(255,255,255,0.88);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  box-shadow: 0 12px 26px rgba(20,30,20,0.08);
  z-index: 5001;
}

.nav-toggle span{
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #3f5640;
  transition: transform .25s ease, opacity .25s ease;
}

body.nav-open .nav-toggle span:nth-child(1){
  transform: translateY(7px) rotate(45deg);
}

body.nav-open .nav-toggle span:nth-child(2){
  opacity: 0;
}

body.nav-open .nav-toggle span:nth-child(3){
  transform: translateY(-7px) rotate(-45deg);
}

.nav-mobile-overlay{
  display: none;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1024px){

  .container{
    width: min(100% - 36px, 960px);
  }

  .header-inner{
    min-height: 78px;
  }

  .header-cta{
    display: none !important;
  }

  .nav-toggle{
    display: inline-flex !important;
    flex: 0 0 auto;
  }

  .nav-mobile-overlay{
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(18, 24, 19, 0.42);
    backdrop-filter: blur(3px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
    z-index: 4998;
  }

  body.nav-open .nav-mobile-overlay{
    opacity: 1;
    pointer-events: auto;
  }

  .nav{
    position: fixed !important;
    top: 86px;
    left: 18px;
    right: 18px;
    width: auto !important;
    max-width: none !important;

    display: flex !important;
    flex-direction: column;
    gap: 8px;

    padding: 18px;
    border-radius: 26px;
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(35,45,35,0.10);
    box-shadow: 0 24px 70px rgba(20,30,20,0.18);
    backdrop-filter: blur(16px);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
    z-index: 4999;
  }

  body.nav-open .nav{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-link{
    width: 100%;
    display: block;
    padding: 14px 16px;
    border-radius: 18px;
    font-size: 1rem;
    color: #3f5640;
    background: rgba(245,247,243,0.75);
  }

  .nav-link.is-active,
  .nav-link:hover{
    background: rgba(70,99,70,0.12);
  }

  body.nav-open{
    overflow: hidden;
  }
}

/* =========================================================
   MOBILE — FIX CORTES LATERAIS
========================================================= */

@media (max-width: 768px){

  html,
  body{
    width: 100%;
    max-width: 100%;
    overflow-x: hidden !important;
  }

  body{
    position: relative;
  }

  .container{
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 18px !important;
    padding-right: 18px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .site-header{
    width: 100%;
    max-width: 100%;
    overflow: visible;
  }

  .header-inner{
    width: 100%;
    max-width: 100%;
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    overflow: visible;
  }

  .brand{
    flex: 1 1 auto;
    min-width: 0;
    max-width: calc(100% - 58px);
    display: flex;
    align-items: center;
    gap: 12px;
    overflow: hidden;
  }

  .brand-mark{
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
  }

  .brand-text{
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
  }

  .brand-title{
    display: block;
    font-size: 1.05rem;
    line-height: 1.15;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .brand-subtitle{
    display: block;
    font-size: .82rem;
    line-height: 1.25;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .nav-toggle{
    display: inline-flex !important;
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    min-width: 46px;
  }

  /* HERO */
  .hero{
    width: 100%;
    max-width: 100%;
    overflow: hidden !important;
    padding: 70px 0 64px !important;
  }

  .hero-inner{
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    text-align: center;
    align-items: center;
    gap: 20px;
  }

  .hero-badge{
    max-width: 100%;
    width: fit-content;
    min-width: 0;
    padding: 9px 14px;
    font-size: .92rem;
    line-height: 1.35;
    overflow: hidden;
  }

  .hero-badge span:last-child{
    display: block;
    max-width: calc(100vw - 86px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero-title{
    width: 100%;
    max-width: 100%;
    margin: 14px 0 0;
    font-size: clamp(2.35rem, 11vw, 3.2rem) !important;
    line-height: 1.08;
    letter-spacing: -0.04em;
    text-align: center;
    overflow-wrap: normal;
  }

  .hero-title span{
    display: block;
    max-width: 100%;
    margin-top: 10px;
  }

  .hero-subtitle{
    width: 100%;
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.75;
    padding: 0 4px;
  }

  .hero-actions{
    width: 100%;
    max-width: 100%;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
  }

  .hero-actions .btn,
  .hero-actions a{
    width: 100%;
    max-width: 100%;
    justify-content: center;
  }

  .btn,
  .btn-lg{
    max-width: 100%;
    white-space: nowrap;
  }

  /* SEÇÕES */
  .stats-grid,
  .approach-grid,
  .services-grid,
  .benefits-grid,
  .about-grid,
  .contact-grid,
  .why-booking-grid{
    grid-template-columns: 1fr !important;
  }

  .approach,
  .services-home,
  .benefits,
  .about-home,
  .contact,
  .cta-final,
  .why-booking{
    padding-block: 68px;
  }

  .section-head h2,
  .approach-header h2,
  .about-name,
  .why-booking-title{
    font-size: clamp(2rem, 7vw, 2.9rem);
  }

  .section-head p,
  .approach-header p{
    font-size: 1rem;
  }

  .stats-grid{
    gap: 14px;
  }

  .stat-card,
  .approach-card,
  .service-card,
  .benefit-card,
  .why-booking-card,
  .info-card{
    border-radius: 22px;
    padding: 24px 20px;
  }

  .stat-number{
    font-size: 2.3rem;
  }

  .services-grid,
  .benefits-grid,
  .approach-grid{
    margin-top: 36px;
    gap: 18px;
  }

  .services-cta,
  .why-booking-actions,
  .cta-actions{
    width: 100%;
  }

  .services-cta .btn,
  .why-booking-actions .btn,
  .cta-actions .btn{
    width: 100%;
    justify-content: center;
  }

  /* SOBRE */
  .about-photo{
    height: auto;
    min-height: 420px;
  }

  .about-photo-img{
    min-height: 420px;
    object-fit: cover;
    object-position: center top;
  }

  /* CONTACTO */
  .map-box{
    height: 360px;
    border-radius: 24px;
  }

  .info-card{
    grid-template-columns: 52px 1fr;
    gap: 12px;
  }

  .info-ico{
    width: 48px;
    height: 48px;
  }

  .info-main{
    font-size: .98rem;
  }

  .info-sub{
    font-size: .9rem;
  }

  /* CTA */
  .cta-box{
    padding: 42px 20px;
    border-radius: 26px;
  }

  .cta-box p{
    font-size: 1rem;
  }

  /* FOOTER */
  .footer-card{
    grid-template-columns: 1fr !important;
    gap: 30px;
  }

  .footer-col{
    text-align: center;
    align-items: center;
  }

  .brand-line{
    justify-content: center;
  }

  .footer-desc{
    margin-inline: auto;
  }

  .social{
    justify-content: center;
  }

  .footer-bottom{
    gap: 16px;
  }

  .footer-legal{
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .footer-legal span{
    display: none;
  }

  .footer-copy{
    text-align: center;
    line-height: 1.5;
  }

  .complaints-book-link{
    left: 14px;
    bottom: 14px;
  }

  .complaints-book-link img{
    width: 105px;
    max-width: 38vw;
    height: auto;
  }

  /* BOTÃO TOPO */
  .back-to-top{
    width: 46px;
    height: 46px;
    right: 16px;
    bottom: 18px;
  }

  /* ANIMAÇÕES MAIS SUAVES */
  .reveal,
  .reveal-left,
  .reveal-right{
    transform: translateY(18px);
  }

  .reveal.is-visible,
  .reveal-left.is-visible,
  .reveal-right.is-visible{
    transform: translateY(0);
  }
}

/* =========================================================
   POPUP MARCAR CONSULTA — MOBILE
========================================================= */

@media (max-width: 768px){

  .booking-panel{
    inset: auto 0 0 0;
    top: auto;
    right: auto;

    width: 100%;
    height: min(92dvh, 760px);
    border-radius: 28px 28px 0 0;

    padding: 26px 18px 28px;
    transform: translateY(105%);
    box-shadow: 0 -22px 60px rgba(18,28,20,0.28);
  }

  .booking-modal.is-open .booking-panel{
    transform: translateY(0);
  }

  .booking-overlay{
    background: rgba(17,24,18,0.56);
  }

  .booking-close{
    top: 14px;
    right: 14px;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    font-size: 1.7rem;
  }

  .booking-head{
    padding-right: 50px;
    margin-bottom: 22px;
  }

  .booking-pill{
    padding: 7px 12px;
    font-size: .82rem;
  }

  .booking-head h2{
    font-size: clamp(1.9rem, 9vw, 2.45rem);
  }

  .booking-head p{
    font-size: .94rem;
    line-height: 1.65;
  }

  .booking-grid{
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-group{
    margin-bottom: 14px;
  }

  .form-group label{
    font-size: .92rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea{
    min-height: 48px;
    border-radius: 15px;
    padding: 13px 14px;
    font-size: .95rem;
  }

  .form-group textarea{
    min-height: 96px;
  }

  .booking-checkbox{
    font-size: .88rem;
    line-height: 1.55;
  }

  .booking-submit{
    padding: 15px 20px;
    font-size: 1rem;
  }
}

/* =========================================================
   COOKIE BANNER — MOBILE
========================================================= */

.cookie-banner{
  z-index: 9500;
}

@media (max-width: 768px){

  .cookie-banner{
    position: fixed;
    inset: auto 12px 12px 12px;
    width: auto;
    max-width: none;
  }

  .cookie-card{
    width: 100%;
    max-height: 78dvh;
    overflow-y: auto;

    border-radius: 24px;
    padding: 20px;
    display: grid;
    gap: 16px;

    background: rgba(255,255,255,0.96);
    box-shadow: 0 22px 65px rgba(20,30,20,0.18);
  }

  .cookie-content h2{
    font-size: 1.25rem;
    line-height: 1.2;
    margin-bottom: 8px;
  }

  .cookie-content p{
    font-size: .92rem;
    line-height: 1.55;
  }

  .cookie-link{
    font-size: .92rem;
  }

  .cookie-actions{
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .cookie-btn{
    width: 100%;
    min-height: 46px;
    justify-content: center;
    border-radius: 999px;
    font-size: .95rem;
  }
}

/* =========================================================
   COOKIE PREFERENCES — MOBILE
========================================================= */

@media (max-width: 768px){

  .cookie-preferences{
    position: fixed !important;
    inset: 0 !important;
    z-index: 10000 !important;
    width: 100vw !important;
    height: 100dvh !important;
    overflow: hidden !important;
  }

  .cookie-preferences-overlay{
    position: fixed !important;
    inset: 0 !important;
    width: 100vw !important;
    height: 100dvh !important;
    background: rgba(17, 24, 18, 0.56) !important;
    backdrop-filter: blur(5px);
  }

  .cookie-preferences-panel{
    position: fixed !important;

    left: 50% !important;
    right: auto !important;
    top: 50% !important;
    bottom: auto !important;

    transform: translate(-50%, -50%) !important;

    width: calc(100vw - 28px) !important;
    max-width: 440px !important;
    min-width: 0 !important;

    max-height: calc(100dvh - 28px) !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;

    margin: 0 !important;
    padding: 22px 18px 20px !important;

    border-radius: 26px !important;
    box-sizing: border-box !important;
  }

  .cookie-preferences-panel *{
    max-width: 100%;
    box-sizing: border-box;
  }

  .cookie-preferences-close{
    position: absolute !important;
    top: 12px !important;
    right: 12px !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 14px !important;
    z-index: 2;
  }

  .cookie-preferences-panel h2{
    font-size: 1.45rem !important;
    line-height: 1.18 !important;
    padding-right: 48px !important;
    margin-bottom: 10px !important;
  }

  .cookie-preferences-panel p{
    font-size: .92rem !important;
    line-height: 1.55 !important;
  }

  .cookie-options{
    display: grid !important;
    gap: 12px !important;
    margin-top: 16px !important;
  }

  .cookie-option{
    width: 100% !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;

    padding: 15px !important;
    border-radius: 18px !important;
    min-width: 0 !important;
  }

  .cookie-option h3{
    font-size: 1rem !important;
    line-height: 1.25 !important;
  }

  .cookie-option p{
    font-size: .86rem !important;
    line-height: 1.5 !important;
  }

  .cookie-required{
    width: fit-content !important;
    max-width: 100% !important;
    white-space: normal !important;
  }

  .cookie-switch{
    justify-self: start !important;
  }

  .cookie-preferences-actions{
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    margin-top: 16px !important;
  }

  .cookie-preferences-actions .cookie-btn,
  .cookie-btn{
    width: 100% !important;
    min-height: 46px !important;
    justify-content: center !important;
    text-align: center !important;
    white-space: normal !important;
    border-radius: 999px !important;
  }
}

/* =========================================================
   ECRÃS MUITO PEQUENOS
========================================================= */

@media (max-width: 420px){

  .container{
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .header-inner{
    min-height: 76px;
  }

  .brand{
    max-width: calc(100% - 54px);
    gap: 10px;
  }

  .brand-mark{
    flex-basis: 44px;
    width: 44px;
    height: 44px;
  }

  .brand-title{
    font-size: 1rem;
  }

  .brand-subtitle{
    font-size: .78rem;
  }

  .nav-toggle{
    width: 44px;
    height: 44px;
    min-width: 44px;
  }

  .hero{
    padding-top: 58px !important;
  }

  .hero-badge{
    font-size: .86rem;
    padding: 8px 13px;
  }

  .hero-badge span:last-child{
    max-width: calc(100vw - 78px);
  }

  .hero-title{
    font-size: clamp(2.1rem, 12vw, 2.75rem) !important;
  }

  .hero-subtitle{
    font-size: .95rem;
  }

  .about-photo{
    min-height: 360px;
    border-radius: 26px;
  }

  .about-photo-img{
    min-height: 360px;
  }

  .about-item{
    align-items: flex-start;
  }

  .map-box{
    height: 310px;
  }

  .info-card{
    grid-template-columns: 1fr;
  }

  .booking-panel{
    height: 94dvh;
    padding-inline: 15px;
  }

  .booking-head h2{
    font-size: 1.85rem;
  }

  .booking-head p{
    font-size: .9rem;
  }
}

@media (max-width: 390px){

  .cookie-preferences-panel{
    width: calc(100vw - 20px) !important;
    max-height: calc(100dvh - 20px) !important;
    padding: 20px 14px 16px !important;
    border-radius: 22px !important;
  }

  .cookie-preferences-panel h2{
    font-size: 1.3rem !important;
  }

  .cookie-option{
    padding: 13px !important;
  }

  .cookie-preferences-actions .cookie-btn{
    font-size: .88rem !important;
    padding-inline: 12px !important;
  }
}

@media (max-width: 380px){

  .brand-mark{
    width: 42px;
    height: 42px;
    min-width: 42px;
  }

  .brand-title{
    font-size: .98rem;
  }

  .brand-subtitle{
    font-size: .76rem;
  }

  .nav-toggle{
    width: 42px;
    height: 42px;
  }

  .hero-badge{
    font-size: .84rem;
  }

  .btn,
  .btn-lg{
    padding-inline: 18px;
    min-height: 48px;
  }
}

/* HERO COM FOTO DA CLÁUDIA */

.hero-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 1fr);
  align-items: center;
  gap: 50px;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-photo-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 590px;
  left: 100px;
}

.hero-photo-shape {
  position: absolute;
  width: 450px;
  height: 510px;
  border-radius: 48% 48% 42% 42% / 38% 38% 55% 55%;
  background: rgba(226, 233, 220, 0.9);
  transform: rotate(5deg);
}

.hero-photo {
  position: relative;
  z-index: 1;
  width: min(100%, 450px);
  height: 545px;
  object-fit: cover;
  object-position: center top;
  border-radius: 46% 46% 38% 38% / 34% 34% 48% 48%;
  box-shadow: 0 22px 55px rgba(44, 67, 47, 0.18);
}

.hero-photo-label {
  position: absolute;
  z-index: 2;
  left: 8px;
  bottom: 22px;
  max-width: 245px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 30px rgba(44, 67, 47, 0.12);
  backdrop-filter: blur(8px);
}

.hero-photo-label strong {
  display: block;
  margin-bottom: 4px;
  color: #38533a;
  font-size: 1rem;
}

.hero-photo-label span {
  display: block;
  color: #667066;
  font-size: 0.8rem;
  line-height: 1.4;
}

@media (max-width: 1100px) {
  .hero-split {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
    gap: 35px;
  }

  .hero-photo-wrap {
    min-height: 530px;
    left: 40px;
  }

  .hero-photo-shape {
    width: 400px;
    height: 455px;
  }

  .hero-photo {
    width: min(100%, 400px);
    height: 485px;
  }
}

@media (max-width: 900px) {
  .hero-split {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-content {
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-photo-wrap {
    min-height: 460px;
    order: -1;
    left: 0;
  }

  .hero-photo-shape {
    width: 340px;
    height: 395px;
  }

  .hero-photo {
    width: 340px;
    height: 420px;
  }

  .hero-photo-label {
    left: 50%;
    bottom: 8px;
    transform: translateX(-50%);
    width: max-content;
    max-width: calc(100% - 28px);
    text-align: left;
  }
}

@media (max-width: 520px) {
  .hero-photo-wrap {
    min-height: 390px;
    left: 0;
  }

  .hero-photo-shape {
    width: 275px;
    height: 325px;
  }

  .hero-photo {
    width: 275px;
    height: 350px;
  }

  .hero-photo-label {
    padding: 13px 15px;
  }

  .hero-photo-label strong {
    font-size: 0.92rem;
  }

  .hero-photo-label span {
    font-size: 0.74rem;
  }
}