/* ===== Cantinho Praia Guarujá — boutique beach stay ===== */

:root{
  --off-white: #F8F5EF;
  --white: #FFFFFF;
  --navy: #123047;
  --navy-dark: #0c2233;
  --ocean: #2F6878;
  --seafoam: #B9D8D3;
  --sand: #DDD1BC;
  --beige: #EEE7DC;
  --ink: #24323A;
  --muted: #66757D;

  --radius-lg: 28px;
  --radius: 20px;
  --radius-sm: 14px;

  --shadow-sm: 0 4px 18px rgba(18,48,71,.07);
  --shadow: 0 24px 60px rgba(18,48,71,.12);

  --maxw: 1200px;

  --ease: cubic-bezier(.22,.61,.36,1);
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: "DM Sans", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4{
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 .5em;
  letter-spacing: -.01em;
}
p{ line-height: 1.75; color: var(--muted); }
a{ text-decoration: none; color: inherit; }
img{ max-width: 100%; display: block; }
ul{ margin: 0; padding: 0; list-style: none; }
button{ font-family: inherit; }
.container{
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}
.section{ padding: 108px 0; }
.section-head{ text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-head.left{ text-align: left; margin: 0 0 40px; }
.eyebrow{
  display: inline-block;
  color: var(--ocean);
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: .76rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.section-head h2{ font-size: clamp(1.9rem, 3.4vw, 2.6rem); line-height: 1.2; }
.lede{ font-size: 1.05rem; max-width: 560px; margin: 14px auto 0; }
.section-head.left .lede{ margin-left: 0; margin-right: 0; }

/* Scroll reveal */
.reveal{ opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in-view{ opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce){
  .reveal{ opacity: 1; transform: none; transition: none; }
  html{ scroll-behavior: auto; }
}

/* ---------- Buttons ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  border: none;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
}
.btn-primary{
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 10px 26px rgba(18,48,71,.28);
}
.btn-primary:hover{ transform: translateY(-2px); box-shadow: 0 14px 30px rgba(18,48,71,.36); background: var(--navy-dark); }
.btn-outline{
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.75);
}
.btn-outline:hover{ background: rgba(255,255,255,.14); transform: translateY(-2px); }
.btn-outline-navy{
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn-outline-navy:hover{ background: var(--navy); color: var(--white); transform: translateY(-2px); }
.btn-light{
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 10px 26px rgba(0,0,0,.18);
}
.btn-light:hover{ transform: translateY(-2px); background: var(--seafoam); }
.btn-whatsapp{
  background: linear-gradient(135deg, #2fae65, #1f8a4d);
  color: var(--white);
  box-shadow: 0 10px 26px rgba(31,138,77,.32);
}
.btn-whatsapp:hover{ transform: translateY(-2px); box-shadow: 0 14px 30px rgba(31,138,77,.4); }
.btn[disabled]{ opacity: .45; cursor: not-allowed; transform: none !important; box-shadow: none !important; }
.btn-sm{ padding: 10px 20px; font-size: .85rem; }

/* ---------- Header ---------- */
.site-header{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: background .35s ease, box-shadow .35s ease, padding .35s ease;
}
.site-header.scrolled{
  background: rgba(248,245,239,.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 24px rgba(18,48,71,.08);
  padding: 14px 0;
}
.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo-link{ display: flex; align-items: center; gap: 10px; }
.logo-link img{ height: 42px; width: auto; transition: filter .3s ease; }
.nav-links{
  display: flex;
  gap: 34px;
  align-items: center;
}
.nav-links a{
  color: var(--white);
  font-size: .92rem;
  font-weight: 500;
  opacity: .92;
  transition: opacity .2s ease, color .2s ease;
}
.site-header.scrolled .nav-links a:not(.btn){ color: var(--navy); }
.nav-links a:hover{ opacity: 1; color: var(--ocean); }
.nav-toggle{
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.6rem;
  cursor: pointer;
  line-height: 1;
}
.site-header.scrolled .nav-toggle{ color: var(--navy); }

/* ---------- Hero ---------- */
.hero{
  position: relative;
  height: 92vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--white);
  text-align: center;
}
.hero video, .hero .hero-fallback-img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12,34,51,.58) 0%, rgba(12,34,51,.32) 42%, rgba(12,34,51,.8) 100%);
  z-index: 1;
}
.hero-content{
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 0 24px;
}
.hero-content .eyebrow{ color: var(--seafoam); }
.hero-content h1{
  color: var(--white);
  font-size: clamp(2.3rem, 5vw, 3.8rem);
  line-height: 1.14;
  margin-bottom: 18px;
}
.hero-content p{
  color: rgba(255,255,255,.92);
  font-size: 1.12rem;
  max-width: 560px;
  margin: 0 auto 34px;
}
.hero-actions{
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-proof{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 48px;
  flex-wrap: wrap;
  font-size: .88rem;
  color: rgba(255,255,255,.92);
}
.hero-proof .stars{ color: var(--seafoam); letter-spacing: 2px; }
.hero-proof .sep{ opacity: .4; }
.scroll-cue{
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,.75);
  font-size: 1.6rem;
  animation: bounce 2.2s infinite;
}
@keyframes bounce{
  0%,100%{ transform: translate(-50%, 0); }
  50%{ transform: translate(-50%, 8px); }
}

/* ---------- Benefícios (editorial) ---------- */
.beneficios{ background: var(--white); }
.ben-grid{
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}
.ben-img{
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 460px;
}
.ben-img img{ width: 100%; height: 100%; object-fit: cover; }
.ben-text .eyebrow{ color: var(--ocean); }
.ben-list{ display: grid; gap: 26px; margin: 30px 0; }
.ben-item{ display: flex; gap: 16px; align-items: flex-start; }
.ben-item .ico{
  flex: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--beige);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
}
.ben-item .ico svg{ width: 20px; height: 20px; }
.ben-item h3{ font-size: 1.05rem; margin-bottom: 4px; }
.ben-item p{ font-size: .92rem; margin: 0; }
.ben-highlight{
  font-family: "Playfair Display", serif;
  font-style: italic;
  color: var(--navy);
  font-size: 1.08rem;
  border-left: 3px solid var(--ocean);
  padding-left: 18px;
  margin-top: 8px;
}

/* ---------- Galeria (carrossel) ---------- */
.galeria{ background: var(--beige); }
.gal-carousel{ position: relative; }
.gal-track{
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  gap: 16px;
  border-radius: var(--radius-lg);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.gal-track::-webkit-scrollbar{ display: none; }
.gal-track .gal-slide{
  flex: 0 0 100%;
  scroll-snap-align: center;
  height: 560px;
  border: none; padding: 0; margin: 0; cursor: pointer; background: none;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.gal-track img{
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease);
}
.gal-slide:hover img{ transform: scale(1.04); }
.gal-slide::after{
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(12,34,51,.3));
  opacity: 0;
  transition: opacity .3s ease;
}
.gal-slide:hover::after{ opacity: 1; }
.gal-arrow{
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 50px; height: 50px; border-radius: 50%; border: none;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(6px);
  color: var(--navy);
  font-size: 1.5rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: background .2s ease, transform .2s ease;
  z-index: 2;
}
.gal-arrow:hover{ background: var(--white); transform: translateY(-50%) scale(1.06); }
.gal-prev{ left: 18px; }
.gal-next{ right: 18px; }
.gal-dots{
  display: flex; gap: 8px; justify-content: center;
  margin-top: 22px;
}
.gal-dots button{
  width: 8px; height: 8px; border-radius: 50%;
  border: none; padding: 0; cursor: pointer;
  background: var(--sand);
  transition: background .2s ease, width .2s ease;
}
.gal-dots button.active{ background: var(--navy); width: 22px; border-radius: 5px; }
.gal-actions{ text-align: center; margin-top: 30px; }

/* Lightbox */
.lightbox{
  position: fixed; inset: 0;
  background: rgba(9,22,34,.94);
  z-index: 999;
  display: none;
  align-items: center; justify-content: center;
  padding: 30px;
}
.lightbox.open{ display: flex; }
.lightbox img{ max-width: 90vw; max-height: 78vh; border-radius: var(--radius-sm); }
.lightbox-count{
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.8); font-size: .85rem; letter-spacing: .04em;
}
.lightbox-close, .lightbox-prev, .lightbox-next{
  position: absolute;
  background: rgba(255,255,255,.12);
  color: var(--white);
  border: none;
  width: 46px; height: 46px;
  border-radius: 50%;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease;
}
.lightbox-close{ top: 24px; right: 24px; }
.lightbox-prev{ left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next{ right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover{ background: rgba(255,255,255,.28); }

/* ---------- Experiência ---------- */
.experiencia{ background: var(--navy); color: var(--white); overflow: hidden; }
.exp-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.exp-media{ position: relative; height: 460px; }
.exp-media .exp-main{
  position: absolute; inset: 0 60px 0 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.exp-media .exp-accent{
  position: absolute; right: 0; bottom: -30px;
  width: 55%; height: 60%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 46px rgba(0,0,0,.35);
  border: 6px solid var(--navy);
}
.exp-media img{ width: 100%; height: 100%; object-fit: cover; }
.experiencia .eyebrow{ color: var(--seafoam); }
.experiencia h2{ color: var(--white); font-size: clamp(1.7rem, 3vw, 2.3rem); }
.experiencia p{ color: rgba(255,255,255,.78); font-size: 1.02rem; }

/* ---------- O apartamento ---------- */
.apartamento{ background: var(--off-white); }
.apt-sub{ text-align: center; color: var(--ocean); font-weight: 600; font-size: .92rem; margin-top: -34px; margin-bottom: 50px; letter-spacing: .02em; }
.apt-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.apt-card{
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.apt-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow); }
.apt-card .apt-img{ height: 160px; }
.apt-card .apt-img img{ width: 100%; height: 100%; object-fit: cover; }
.apt-card .apt-img.apt-noimg{
  background: linear-gradient(135deg, var(--ocean), var(--navy));
  display: flex; align-items: center; justify-content: center;
}
.apt-card .apt-img.apt-noimg svg{ width: 34px; height: 34px; color: rgba(255,255,255,.85); }
.apt-card-body{ padding: 22px 22px 26px; }
.apt-card h3{ font-size: 1.02rem; margin-bottom: 6px; }
.apt-card p{ font-size: .88rem; margin: 0; }

/* ---------- Comodidades ---------- */
.comodidades{ background: var(--beige); }
.com-grid{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px 20px;
}
.com-item{ text-align: center; }
.com-item .ico{
  width: 58px; height: 58px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
  color: var(--navy);
}
.com-item .ico svg{ width: 24px; height: 24px; }
.com-item span{ font-size: .86rem; font-weight: 600; color: var(--ink); }

/* ---------- Localização ---------- */
.localizacao{ background: var(--white); }
.loc-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.loc-map{
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 400px;
}
.loc-map iframe{ width: 100%; height: 100%; border: 0; }
.loc-list{ display: grid; gap: 16px; margin-top: 24px; }
.loc-list li{
  display: flex; gap: 14px; align-items: flex-start;
  font-size: .96rem; color: var(--ink);
}
.loc-list .ico{
  flex: none; width: 36px; height: 36px; border-radius: 50%;
  background: var(--beige); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
}
.loc-list .ico svg{ width: 17px; height: 17px; }

/* ---------- Avaliações ---------- */
.avaliacoes{
  background: linear-gradient(150deg, var(--navy), var(--navy-dark));
  color: var(--white);
  text-align: center;
}
.avaliacoes .section-head h2{ color: var(--white); }
.avaliacoes .eyebrow{ color: var(--seafoam); }
.depo-card{
  max-width: 660px;
  margin: 0 auto;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 52px 46px;
}
.depo-stars{ color: var(--seafoam); font-size: 1.3rem; margin-bottom: 20px; letter-spacing: 4px; }
.depo-card blockquote{
  font-family: "Playfair Display", serif;
  font-size: 1.45rem;
  line-height: 1.6;
  margin: 0 0 24px;
  font-style: italic;
  color: var(--white);
}
.depo-author{ color: var(--seafoam); font-weight: 600; }
.depo-author span{ display: block; color: rgba(255,255,255,.62); font-weight: 400; font-size: .85rem; margin-top: 2px; }

/* ---------- Disponibilidade ---------- */
.disponibilidade{ background: var(--off-white); }
.disp-card{
  max-width: 780px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 52px 44px;
  text-align: center;
}
.calendar-status{ font-size: .85rem; color: var(--muted); }

.mini-calendar-wrap{ margin: 34px 0 10px; }
.calendar-months{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 26px;
  text-align: left;
}
.calendar-month h4{
  text-align: center;
  color: var(--navy);
  font-family: "Playfair Display", serif;
  margin: 0 0 14px;
  text-transform: capitalize;
  font-size: 1.1rem;
}
.calendar-grid{
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
}
.calendar-grid .dow{
  font-size: .68rem;
  text-align: center;
  color: var(--muted);
  font-weight: 600;
  padding-bottom: 6px;
}
.calendar-grid .day{
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px;
  font-size: .8rem;
  color: var(--ink);
  background: #E7F2EE;
}
.calendar-grid .day.empty{ background: transparent; }
.calendar-grid .day.occupied{
  background: #F3E3E0;
  color: #9C5C53;
  text-decoration: line-through;
  cursor: not-allowed;
}
.calendar-grid .day.past{ opacity: .32; cursor: default; }
.calendar-grid .day.free{ cursor: pointer; transition: background .2s ease, color .2s ease, transform .15s ease; }
.calendar-grid .day.free:hover{ background: var(--seafoam); transform: translateY(-1px); }
.calendar-grid .day.selected{
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
}
.calendar-grid .day.in-range{
  background: var(--seafoam);
  color: var(--navy);
  font-weight: 600;
}
.calendar-legend{
  display: flex; gap: 20px; justify-content: center;
  margin-top: 22px; font-size: .78rem; color: var(--muted);
  flex-wrap: wrap;
}
.calendar-legend span{ display: inline-flex; align-items: center; gap: 6px; }
.legend-dot{ width: 11px; height: 11px; border-radius: 3px; display: inline-block; }
.legend-dot.free{ background: #E7F2EE; }
.legend-dot.busy{ background: #F3E3E0; }
.legend-dot.selected{ background: var(--navy); }

.disp-selection{
  margin-top: 28px;
  padding: 20px 22px;
  background: var(--beige);
  border-radius: var(--radius);
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  text-align: left;
}
.disp-selection.show{ display: flex; }
.disp-selection-dates{ font-size: .92rem; color: var(--navy); font-weight: 600; }
.disp-selection-dates span{ display: block; font-size: .76rem; color: var(--muted); font-weight: 500; margin-top: 2px; }
.disp-guests{ display: flex; align-items: center; gap: 10px; font-size: .85rem; color: var(--ink); }
.disp-guests-stepper{ display: flex; align-items: center; gap: 8px; }
.disp-guests-stepper button{
  width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--sand);
  background: var(--white); cursor: pointer; font-size: 1rem; color: var(--navy);
  display: flex; align-items: center; justify-content: center;
}
.disp-guests-stepper button:hover{ background: var(--seafoam); }

.disp-note{
  margin-top: 24px;
  font-size: .82rem;
  color: var(--muted);
}

/* ---------- Reserva direta ---------- */
.reserva{ background: var(--beige); text-align: center; }
.reserva h2{ font-size: clamp(1.7rem, 3vw, 2.2rem); }
.reserva-platforms{ margin-top: 40px; }
.reserva-platforms p{ font-size: .88rem; margin-bottom: 16px; }
.disp-channels{
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.disp-channels a{
  padding: 12px 24px;
  border-radius: 999px;
  background: var(--white);
  font-size: .88rem;
  font-weight: 600;
  color: var(--navy);
  border: 1px solid var(--sand);
  transition: all .2s ease;
}
.disp-channels a:hover{ background: var(--navy); color: var(--white); border-color: var(--navy); }

/* ---------- CTA final ---------- */
.cta-final{
  background: url('../images/hero-fallback.jpg') center/cover no-repeat;
  position: relative;
  text-align: center;
  color: var(--white);
  padding: 120px 0;
}
.cta-final::before{
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(150deg, rgba(12,34,51,.9), rgba(47,104,120,.78));
}
.cta-final .container{ position: relative; z-index: 1; max-width: 640px; }
.cta-final .eyebrow{ color: var(--seafoam); }
.cta-final h2{ color: var(--white); }
.cta-final p{ color: rgba(255,255,255,.9); }

/* ---------- Footer ---------- */
.site-footer{
  background: var(--navy-dark);
  color: rgba(255,255,255,.75);
  padding: 56px 0 28px;
}
.footer-inner{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 34px;
}
.footer-brand{ display: flex; align-items: center; gap: 10px; }
.footer-brand img{ height: 36px; }
.footer-links{ display: flex; gap: 26px; flex-wrap: wrap; }
.footer-links a{ font-size: .86rem; color: rgba(255,255,255,.75); }
.footer-links a:hover{ color: var(--seafoam); }
.footer-social{ display: flex; gap: 14px; }
.footer-social a{
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease;
}
.footer-social a svg{ width: 18px; height: 18px; }
.footer-social a:hover{ background: var(--ocean); }
.footer-bottom{
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 22px;
  font-size: .78rem;
  text-align: center;
  color: rgba(255,255,255,.5);
}

/* ---------- WhatsApp flutuante ---------- */
.whatsapp-float{
  position: fixed;
  bottom: 22px; right: 22px;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 22px rgba(0,0,0,.25);
  z-index: 90;
  color: var(--white);
  animation: pulse 2.6s infinite;
}
.whatsapp-float svg{ width: 26px; height: 26px; }
@keyframes pulse{
  0%{ box-shadow: 0 0 0 0 rgba(37,211,102,.5); }
  70%{ box-shadow: 0 0 0 14px rgba(37,211,102,0); }
  100%{ box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ---------- Mobile sticky CTA ---------- */
.sticky-cta{
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 95;
  background: var(--white);
  border-top: 1px solid var(--sand);
  padding: 12px 18px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom));
  box-shadow: 0 -8px 24px rgba(18,48,71,.12);
  transition: transform .3s ease;
}
.sticky-cta.hide{ transform: translateY(110%); }
.sticky-cta a{
  display: flex; align-items: center; justify-content: center;
  width: 100%;
}

/* ---------- Responsivo ---------- */
@media (max-width: 1024px){
  .ben-grid, .exp-grid, .loc-grid{ grid-template-columns: 1fr; }
  .exp-media{ order: -1; height: 380px; }
  .apt-grid{ grid-template-columns: repeat(2, 1fr); }
  .com-grid{ grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px){
  .nav-links{
    position: fixed;
    top: 0; right: -100%;
    height: 100vh;
    width: 78%;
    max-width: 320px;
    background: var(--navy-dark);
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    transition: right .35s ease;
    padding: 40px;
  }
  .nav-links a{ color: var(--white) !important; }
  .nav-links.open{ right: 0; }
  .nav-toggle{ display: block; }
  .ben-img{ height: 300px; }
  .gal-track .gal-slide{ height: 320px; }
  .gal-arrow{ width: 42px; height: 42px; font-size: 1.25rem; }
  .gal-prev{ left: 10px; }
  .gal-next{ right: 10px; }
  .cta-final{ padding: 80px 0; }
  .sticky-cta{ display: block; }
  body{ padding-bottom: 78px; }
}
@media (max-width: 640px){
  .section{ padding: 72px 0; }
  .hero-actions{ flex-direction: column; align-items: stretch; }
  .hero-proof{ gap: 10px; margin-top: 36px; }
  .apt-grid{ grid-template-columns: 1fr 1fr; }
  .com-grid{ grid-template-columns: repeat(2, 1fr); }
  .disp-card{ padding: 36px 22px; }
  .disp-selection{ flex-direction: column; align-items: flex-start; }
}
