/* ============================================================
   Casa Além Mar — style.css
   Village, Porto Seguro, BA
   ============================================================ */

/* ── Reset & Variáveis ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --cream:   #faf7f2;
  --linen:   #f2ece1;
  --stone:   #e8dfd0;
  --bark:    #b89c7d;
  --terra:   #9b7b52;
  --deep:    #3d2f1e;
  --forest:  #2a4a35;
  --forest2: #3a6b4a;
  --teal:    #2a9d8a;   /* cor da logo — acento principal da marca */
  --teal2:   #237d6e;   /* teal mais escuro para hover */
  --sky:     #c8dce8;
  --seafoam: #d4e8e0;
  --white:   #ffffff;
  --muted:   #8a7b68;
  --radius:  16px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--deep);
  overflow-x: hidden;
}

/* ── Tipografia base ── */
.eyebrow {
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 500;
  margin-bottom: .75rem;
  display: block;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  color: var(--deep);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.section-title em {
  font-style: italic;
  color: var(--terra);
}

/* ── Layout base ── */
section { padding: 6rem 2rem; }
.container { max-width: 1140px; margin: 0 auto; }
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--stone), transparent);
  margin: 0 2rem;
}

/* ============================================================
   NAVEGAÇÃO
   ============================================================ */
#nav {
  position: fixed;
  top: 0;
  inset-x: 0;
  z-index: 200;
  padding: 1.25rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all .5s cubic-bezier(.4, 0, .2, 1);
}

#nav.solid {
  background: rgba(250, 247, 242, .96);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(184, 156, 125, .2);
}

.nav-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  line-height: 1;
}

/* Logo no nav — altura fixa, proporção automática */
.nav-logo {
  height: 56px;
  width: auto;
  display: block;
  border-radius: 8px;
  flex-shrink: 0;
  /* sombra suave para destacar sobre o hero transparente */
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, .25));
  transition: opacity .3s;
}
.nav-logo:hover { opacity: .88; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: auto;  /* garante separação da logo independente do espaço disponível */
  padding-left: 2rem; /* respiro mínimo após a logo */
}

.nav-links a {
  color: rgba(255, 255, 255, .8);
  text-decoration: none;
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 400;
  transition: color .3s;
}

#nav.solid .nav-links a { color: var(--muted); }
.nav-links a:hover       { color: var(--teal) !important; }

.nav-wa {
  background: var(--forest);
  color: var(--white) !important;
  padding: .5rem 1.25rem;
  border-radius: 50px;
  font-size: .75rem !important;
  transition: background .3s !important;
}

.nav-wa:hover { background: var(--forest2) !important; }

.burger {
  display: none;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.burger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--white);
  margin: 5px 0;
  transition: background .4s;
}

#nav.solid .burger span { background: var(--deep); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  height: 100svh;
  height: 100vh; /* fallback para browsers sem suporte a svh */
  min-height: 640px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-scene {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(0, 0, 0, .40)    0%,
      rgba(0, 0, 0, .05)   28%,
      rgba(15, 25, 20, .45) 72%,
      rgba(10, 18, 14, .88) 100%),
    url('fotos/PHOTO-2025-12-19-17-16-16.jpg')
    center / cover no-repeat;
  z-index: 0;
}

.hero-scene::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(42, 74, 53, .35) 0%, transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 8rem 1.5rem 2rem; /* 8rem no topo garante espaço abaixo da nav fixa (logo 56px + padding nav ≈ 96px) */
  max-width: 860px;
  width: 100%;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .2);
  backdrop-filter: blur(12px);
  color: rgba(255, 255, 255, .9);
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: .45rem 1.1rem;
  border-radius: 50px;
  margin-bottom: 1.75rem;
}

.hero-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--bark);
  display: inline-block;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1;
  margin-bottom: 1.25rem;
  letter-spacing: -.02em;
}

.hero h1 em {
  font-style: italic;
  color: #e8d4b8;
}

.hero-sub {
  font-size: clamp(.9rem, 2vw, 1.05rem);
  color: rgba(255, 255, 255, .75);
  font-weight: 300;
  letter-spacing: .02em;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Botões */
.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  background: #22c55e;
  color: var(--white);
  text-decoration: none;
  padding: .9rem 2rem;
  border-radius: 50px;
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .03em;
  transition: all .25s;
  box-shadow: 0 8px 32px rgba(34, 197, 94, .35);
}

.btn-wa:hover {
  background: #16a34a;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(34, 197, 94, .45);
}

.btn-wa svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  flex-shrink: 0;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: rgba(255, 255, 255, .85);
  text-decoration: none;
  padding: .9rem 1.75rem;
  border-radius: 50px;
  font-size: .88rem;
  font-weight: 400;
  border: 1px solid rgba(255, 255, 255, .3);
  backdrop-filter: blur(8px);
  transition: all .25s;
  background: rgba(255, 255, 255, .07);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, .15);
  color: var(--white);
}

/* Stats do hero */
.hero-stats {
  position: relative;
  z-index: 2;
  display: flex;
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  padding: 0 1.5rem 5rem;
}

.hero-stat {
  flex: 1;
  text-align: center;
  padding: 1.5rem 1rem;
  border-right: 1px solid rgba(255, 255, 255, .12);
}

.hero-stat:last-child { border-right: none; }

.hero-stat strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1;
}

.hero-stat span {
  font-size: .65rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
  margin-top: .3rem;
  display: block;
}

/* Hint de scroll */
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  right: 2.5rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: .6rem;
  color: rgba(255, 255, 255, .4);
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.scroll-track {
  width: 32px;
  height: 1px;
  background: rgba(255, 255, 255, .2);
  position: relative;
  overflow: hidden;
}

.scroll-fill {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, .6);
  animation: scrollFill 2.5s ease-in-out infinite;
}

@keyframes scrollFill {
  0%   { left: -100%; }
  100% { left: 100%; }
}

/* ============================================================
   BENEFÍCIOS
   ============================================================ */
.benefits { background: var(--white); }

.benefits-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.benefits-text p {
  color: var(--muted);
  line-height: 1.8;
  font-weight: 300;
  font-size: .95rem;
  margin-bottom: 1.25rem;
}

.benefit-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  border-radius: var(--radius);
  background: var(--cream);
  transition: background .25s;
}

.benefit-item:hover { background: var(--linen); }

.b-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.b-icon svg {
  width: 19px;
  height: 19px;
  fill: var(--white);
}

.b-text strong {
  display: block;
  font-size: .88rem;
  font-weight: 500;
  color: var(--deep);
  margin-bottom: .2rem;
}

.b-text span {
  font-size: .8rem;
  color: var(--muted);
  line-height: 1.5;
}

/* Visual lateral */
.benefits-visual { position: relative; }

.bv-main {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  position: relative;
}

.bv-main-img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  display: block;
}

.bv-float {
  position: absolute;
  bottom: -2rem;
  left: -2rem;
  background: var(--white);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 12px 48px rgba(61, 47, 30, .12);
  min-width: 200px;
}

.bv-float-label {
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--bark);
  display: block;
  margin-bottom: .4rem;
}

.bv-float-val {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--deep);
  display: block;
  line-height: 1;
}

.bv-float-sub {
  font-size: .75rem;
  color: var(--muted);
  display: block;
  margin-top: .2rem;
}

.stars {
  color: #e8a21a;
  font-size: .9rem;
  letter-spacing: .05em;
  display: block;
  margin-top: .5rem;
}

/* ============================================================
   GALERIA — cabeçalho + strip
   ============================================================ */
.strip-heading {
  background: var(--linen);
  padding: 5rem 2rem 2.5rem;
  text-align: center;
}

.strip-heading-sub {
  color: var(--muted);
  font-size: .92rem;
  font-weight: 300;
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto;
}

/* Wrapper para posicionar as setas sobre a galeria */
.strip-wrap {
  position: relative;
  background: var(--linen);
  padding-bottom: 2.5rem; /* espaço para o hint */
}

.strip {
  padding: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch; /* iOS momentum scroll */
  background: var(--linen);
  /* Esconde scrollbar nativa — mantém funcionalidade */
  scrollbar-width: none;       /* Firefox */
  -ms-overflow-style: none;    /* IE / Edge legado */
}
.strip::-webkit-scrollbar { display: none; } /* Chrome / Safari */

.strip-inner {
  display: flex;
  gap: .75rem;
  padding: .75rem 1.5rem;
}

.strip-item {
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  aspect-ratio: 4 / 3;
  width: 320px;
  background: var(--stone);
  position: relative;
  scroll-snap-align: start;
  cursor: grab;
}
.strip-item:active { cursor: grabbing; }

/* ── Setas de navegação ── */
.strip-btn {
  position: absolute;
  top: calc(50% - 1.25rem); /* centraliza na imagem, descontando o hint */
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 2px 10px rgba(0, 0, 0, .18);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--forest);
  transition: background .2s, transform .2s;
}
.strip-btn:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.08);
}
.strip-prev { left: 1rem; }
.strip-next { right: 1rem; }

/* ── Hint de swipe ── */
.strip-hint {
  position: absolute;
  bottom: .75rem;
  left: 0;
  right: 0;
  text-align: center;
  font-size: .72rem;
  color: var(--muted);
  letter-spacing: .06em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  pointer-events: none;
  opacity: .7;
}

/* Oculta setas em mobile (toque/swipe é suficiente) */
@media (max-width: 640px) {
  .strip-btn { display: none; }
}

.strip-item .simg {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  display: block;
}

/* ── Overlay de informação da galeria ── */
.strip-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 3rem .75rem .75rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, .65));
  display: flex;
  flex-direction: column;
  gap: .3rem;
}

/* Título do cômodo — mesmo visual do antigo strip-label */
.strip-title {
  display: inline-block;
  align-self: flex-start;
  background: rgba(10, 10, 8, .6);
  backdrop-filter: blur(8px);
  color: rgba(255, 255, 255, .9);
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .3rem .75rem;
  border-radius: 50px;
}

/* Legenda curta abaixo do título */
.strip-desc {
  font-size: .72rem;
  color: rgba(255, 255, 255, .72);
  padding: 0 .2rem;
  line-height: 1.4;
  font-weight: 300;
  letter-spacing: .01em;
}

/* ============================================================
   COMODIDADES
   ============================================================ */
.comod { background: var(--cream); }

.comod-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.comod-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.comod-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  transition: transform .25s, box-shadow .25s;
  border: 1px solid transparent;
}

.comod-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(61, 47, 30, .1);
  border-color: var(--stone);
}

.cc-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  margin-bottom: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cc-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--white);
}

.cc-green { background: var(--forest); }
.cc-terra { background: var(--terra); }
.cc-sky   { background: #4a8fa0; }
.cc-dusk  { background: #7a6255; }

.comod-card h3 {
  font-size: .9rem;
  font-weight: 500;
  color: var(--deep);
  margin-bottom: .35rem;
}

.comod-card p {
  font-size: .78rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ============================================================
   LOCALIZAÇÃO
   ============================================================ */
.localizacao { background: var(--white); }

.loc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.loc-grid > div:first-child p {
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.loc-map {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 45% 55%, #4a9b6a 0%, #2a5a3a 50%, #1a3a25 100%);
}

.loc-pin {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .25rem;
  z-index: 1;
}

.pin-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--terra);
  box-shadow:
    0 0 0 4px rgba(155, 123, 82, .3),
    0 0 0 8px rgba(155, 123, 82, .15);
}

.pin-label {
  background: var(--white);
  color: var(--deep);
  font-size: .72rem;
  font-weight: 500;
  padding: .35rem .85rem;
  border-radius: 50px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .2);
  white-space: nowrap;
  letter-spacing: .03em;
}

.map-city-label {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(10, 24, 15, .65);
  backdrop-filter: blur(10px);
  color: rgba(255, 255, 255, .6);
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .35rem 1rem;
  border-radius: 50px;
  white-space: nowrap;
  z-index: 1;
}

.loc-distances {
  display: flex;
  flex-direction: column;
  gap: .65rem;
  margin-top: 1.75rem;
}

.dist-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .9rem 1.1rem;
  background: var(--cream);
  border-radius: 12px;
  transition: background .2s;
}

.dist-item:hover { background: var(--linen); }

.dist-emoji {
  font-size: 1.1rem;
  width: 32px;
  text-align: center;
  flex-shrink: 0;
}

.dist-name {
  flex: 1;
  font-size: .85rem;
  color: var(--deep);
  font-weight: 400;
}

.dist-pill {
  font-size: .75rem;
  color: var(--forest);
  background: var(--seafoam);
  padding: .2rem .7rem;
  border-radius: 50px;
  font-weight: 500;
  white-space: nowrap;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--cream); }

.faq-wrap {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  align-items: start;
}

.faq-sidebar p {
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.75;
  margin-bottom: 1.75rem;
  font-weight: 300;
}

.faq-contact-card {
  background: var(--forest);
  border-radius: var(--radius);
  padding: 1.75rem;
  color: var(--white);
}

.faq-contact-card strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: .5rem;
}

.faq-contact-card p {
  color: rgba(255, 255, 255, .7);
  font-size: .82rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.faq-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: #22c55e;
  color: var(--white);
  text-decoration: none;
  padding: .7rem 1.25rem;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 500;
  transition: background .2s;
}

.faq-wa-btn:hover { background: #16a34a; }

.faq-wa-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.faq-item {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
}

.faq-q {
  padding: 1.2rem 1.5rem;
  font-size: .9rem;
  font-weight: 500;
  color: var(--deep);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  gap: 1rem;
  transition: color .2s;
}

.faq-q:hover { color: var(--terra); }

.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform .35s cubic-bezier(.4, 0, .2, 1);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.4, 0, .2, 1);
}

.faq-a-inner {
  padding: .25rem 1.5rem 1.25rem;
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.75;
  font-weight: 300;
}

.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-item.open .faq-a       { max-height: 240px; }

/* ============================================================
   CTA FINAL
   ============================================================ */
.cta-section { padding: 0 2rem 6rem; }

.cta-inner {
  max-width: 1140px;
  margin: 0 auto;
  background: var(--forest);
  border-radius: 24px;
  padding: 4rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
  overflow: hidden;
}

.cta-inner::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .04);
}

.cta-inner::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: 30%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .03);
}

.cta-text .eyebrow   { color: rgba(255, 255, 255, .5); }

.cta-text .section-title {
  color: var(--white);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: .75rem;
}

.cta-text .section-title em { color: #e8d4b8; }

.cta-text p {
  color: rgba(255, 255, 255, .65);
  font-size: .9rem;
  line-height: 1.7;
  font-weight: 300;
  max-width: 440px;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  align-items: flex-end;
  flex-shrink: 0;
}

.cta-wa {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  background: #22c55e;
  color: var(--white);
  text-decoration: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-size: .92rem;
  font-weight: 500;
  white-space: nowrap;
  transition: all .25s;
  box-shadow: 0 8px 32px rgba(34, 197, 94, .35);
}

.cta-wa:hover {
  background: #16a34a;
  transform: translateY(-2px);
}

.cta-wa svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.cta-note {
  font-size: .75rem;
  color: rgba(255, 255, 255, .4);
  text-align: right;
  letter-spacing: .05em;
}

/* ============================================================
   RODAPÉ
   ============================================================ */
footer {
  background: var(--deep);
  padding: 2.5rem 2rem;
  text-align: center;
}

/* Logo no rodapé */
.footer-logo {
  display: block;
  height: 64px;
  width: auto;
  margin: 0 auto 1.25rem;
  border-radius: 10px;
  opacity: .85;
}

footer p {
  color: rgba(255, 255, 255, .3);
  font-size: .78rem;
  line-height: 1.8;
}

footer strong { color: rgba(255, 255, 255, .6); font-weight: 400; }
footer a      { color: var(--teal); text-decoration: none; }

/* ============================================================
   WHATSAPP FLUTUANTE
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 999;
  width: 58px;
  height: 58px;
  background: #22c55e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(34, 197, 94, .45);
  transition: transform .25s, box-shadow .25s;
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 36px rgba(34, 197, 94, .6);
}

.wa-float svg {
  width: 28px;
  height: 28px;
  fill: var(--white);
}

.wa-float::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(34, 197, 94, .3);
  animation: waPulse 2.5s ease-out infinite;
}

@keyframes waPulse {
  0%   { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

.wa-tooltip {
  position: absolute;
  right: 68px;
  background: var(--deep);
  color: var(--white);
  font-size: .75rem;
  white-space: nowrap;
  padding: .45rem 1rem;
  border-radius: 50px;
  opacity: 0;
  transform: translateX(8px);
  transition: all .25s;
  pointer-events: none;
}

.wa-float:hover .wa-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================================
   ANIMAÇÕES DE ENTRADA
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity .7s cubic-bezier(.4, 0, .2, 1),
    transform .7s cubic-bezier(.4, 0, .2, 1);
}

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

.fade-up:nth-child(2) { transition-delay: .1s; }
.fade-up:nth-child(3) { transition-delay: .2s; }
.fade-up:nth-child(4) { transition-delay: .3s; }

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 900px) {
  .benefits-inner,
  .loc-grid {
    grid-template-columns: 1fr;
  }

  .benefits-visual { display: none; }
  .comod-grid      { grid-template-columns: 1fr 1fr; }

  .faq-wrap {
    grid-template-columns: 1fr;
  }

  .faq-sidebar { display: none; }

  .cta-inner {
    flex-direction: column;
    text-align: center;
    padding: 3rem 2rem;
  }

  .cta-actions  { align-items: center; }
  .cta-text p   { max-width: 100%; }
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    inset-x: 0;
    background: rgba(250, 247, 242, .97);
    backdrop-filter: blur(20px);
    padding: 1.5rem 2rem;
    gap: .75rem;
    border-bottom: 1px solid var(--stone);
  }

  .nav-links.open { display: flex; }

  .nav-links a {
    color: var(--deep) !important;
    font-size: .82rem;
    padding: .5rem 0;
    border-bottom: 1px solid var(--stone);
  }

  .nav-links a:last-child { border-bottom: none; }

  .burger  { display: block; }
  #nav     { padding: 1rem 1.5rem; }
  section  { padding: 4rem 1.25rem; }

  .hero-content { padding: 4rem 1.25rem 1.5rem; }
  .hero-stats   { padding: 0 1.25rem 3.5rem; }

  .hero-stat        { padding: 1rem .5rem; }
  .hero-stat strong { font-size: 1.5rem; }

  .cta-section { padding: 0 1.25rem 4rem; }
}

@media (max-width: 480px) {
  .comod-grid { grid-template-columns: 1fr 1fr; }
  .hero h1    { font-size: 2.6rem; }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn-wa,
  .btn-outline {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .strip-item { width: 260px; }
}
