/* ============ Tokens ============ */
:root {
  --green: #0E4A42;
  --green-dark: #0A3831;
  --cream: #EDE8DD;
  --cream-soft: #F7F5EF;
  --gold: #B7791F;
  --ink: #1C2422;
  --ink-soft: #4B564F;
  --white: #FFFFFF;
  --whatsapp: #25D366;
  --whatsapp-dark: #1DA851;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 12px 32px -12px rgba(14, 74, 66, 0.18);
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --wrap: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; margin: 0; padding: 0; }
h1, h2, h3 { font-family: var(--font-display); color: var(--green-dark); line-height: 1.15; margin: 0 0 .5rem; font-weight: 600; }
p { margin: 0 0 1rem; color: var(--ink-soft); }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }

.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--green);
  color: #fff; padding: 10px 16px; z-index: 200; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .74rem;
  font-weight: 700;
  color: var(--gold);
  margin: 0 0 .6rem;
}

.section-head { text-align: center; max-width: 640px; margin-left: auto; margin-right: auto; }
.section-sub { margin-top: -.2rem; }

section { padding: 76px 0; }

/* ============ Buttons ============ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; font-family: var(--font-body);
  border-radius: 999px; padding: 13px 22px; font-size: .95rem;
  border: 1.5px solid transparent; transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn-lg { padding: 16px 28px; font-size: 1rem; }
.btn-sm { padding: 9px 16px; font-size: .84rem; }
.btn-whatsapp { background: var(--whatsapp); color: #fff; box-shadow: 0 10px 24px -10px rgba(37,211,102,.55); }
.btn-whatsapp:hover { background: var(--whatsapp-dark); }
.btn-outline { border-color: rgba(255,255,255,.6); color: #fff; }
.btn-outline:hover { background: rgba(255,255,255,.12); }

.link-arrow { font-weight: 700; color: var(--green); border-bottom: 2px solid var(--gold); padding-bottom: 2px; }

/* ============ Header ============ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92); backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid rgba(14,74,66,.08);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 74px; gap: 20px; }
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 600; color: var(--green-dark); font-size: 1.05rem; white-space: nowrap; }
.brand em { display: block; font-style: normal; font-family: var(--font-body); font-size: .62rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); font-weight: 700; }
.main-nav { display: flex; gap: 28px; }
.main-nav a { font-weight: 600; font-size: .92rem; color: var(--ink); position: relative; }
.main-nav a:hover { color: var(--green); }
.header-actions { display: flex; align-items: center; gap: 14px; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 6px; cursor: pointer; }
.nav-toggle span { width: 22px; height: 2px; background: var(--green-dark); border-radius: 2px; }

/* ============ Hero ============ */
.hero { position: relative; min-height: 92vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(10,25,22,.86) 10%, rgba(10,25,22,.55) 55%, rgba(10,25,22,.35) 100%);
}
.hero-inner { position: relative; z-index: 2; padding: 120px 20px 90px; color: #fff; max-width: 720px; }
.hero .eyebrow { color: #E7C77A; }
.hero h1 { color: #fff; font-size: clamp(2.1rem, 4.4vw, 3.4rem); margin-bottom: 1rem; }
.hero-sub { color: rgba(255,255,255,.86); font-size: 1.08rem; max-width: 560px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin: 1.8rem 0 2.2rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 10px 26px; }
.hero-trust li { font-size: .85rem; font-weight: 600; color: rgba(255,255,255,.85); position: relative; padding-left: 18px; }
.hero-trust li::before { content: '✓'; position: absolute; left: 0; color: #E7C77A; }

/* ============ Sobre ============ */
.sobre { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.sobre-img img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; }
.sobre-texto h2 { font-size: clamp(1.6rem, 2.6vw, 2.1rem); }

/* ============ Ambientes / Carousel ============ */
.ambientes { background: var(--cream-soft); }
.carousel-wrap { position: relative; margin-top: 40px; }
.carousel {
  display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 6px 2px 18px; scrollbar-width: none;
}
.carousel::-webkit-scrollbar { display: none; }
.card {
  scroll-snap-align: start; flex: 0 0 300px; background: #fff; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow); display: flex; flex-direction: column;
}
.card img { width: 100%; height: 210px; object-fit: cover; }
.card-body { padding: 20px 22px 24px; }
.card-body h3 { font-size: 1.15rem; margin-bottom: .4rem; }
.card-body p { font-size: .92rem; margin-bottom: .9rem; }
.card-body a { font-weight: 700; font-size: .88rem; color: var(--green); border-bottom: 2px solid var(--gold); padding-bottom: 1px; }

.carousel-nav {
  position: absolute; top: 96px; z-index: 5; width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid rgba(14,74,66,.15); background: #fff; color: var(--green-dark);
  font-size: 1.4rem; line-height: 1; cursor: pointer; box-shadow: var(--shadow);
  display: flex; align-items: center; justify-content: center;
}
.carousel-nav.prev { left: -8px; }
.carousel-nav.next { right: -8px; }

/* ============ Diferenciais ============ */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 44px; }
.feature { padding: 28px 24px; border: 1px solid rgba(14,74,66,.1); border-radius: var(--radius); }
.feature-icon { display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: 12px; background: var(--cream); color: var(--green); margin-bottom: 14px; }
.feature h3 { font-size: 1.05rem; margin-bottom: .35rem; }
.feature p { font-size: .9rem; margin: 0; }

/* ============ Como funciona ============ */
.processo { background: var(--green); }
.processo .eyebrow { color: #E7C77A; }
.processo h2 { color: #fff; }
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; margin-top: 44px; }
.steps li { color: rgba(255,255,255,.9); }
.step-n {
  display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px;
  border-radius: 50%; border: 1.5px solid rgba(255,255,255,.5); font-family: var(--font-display);
  font-weight: 600; margin-bottom: 14px;
}
.steps h3 { color: #fff; font-size: 1rem; margin-bottom: .3rem; }
.steps p { color: rgba(255,255,255,.75); font-size: .88rem; margin: 0; }

/* ============ CTA final ============ */
.cta-final { background: var(--cream); text-align: center; }
.cta-final h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
.cta-final p { max-width: 480px; margin-left: auto; margin-right: auto; }

/* ============ Localização ============ */
.localizacao { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: center; }
.localizacao-mapa iframe { width: 100%; height: 340px; border: 0; border-radius: var(--radius); box-shadow: var(--shadow); }

/* ============ Footer ============ */
.site-footer { background: var(--green-dark); color: rgba(255,255,255,.75); padding: 48px 0 28px; }
.footer-inner { display: grid; grid-template-columns: 1fr auto; gap: 18px 40px; align-items: center; }
.footer-brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); color: #fff; font-weight: 600; }
.footer-nav { display: flex; gap: 22px; font-size: .88rem; }
.footer-nav a:hover { color: #fff; }
.footer-contact, .footer-copy { grid-column: 1 / -1; font-size: .82rem; margin: 0; color: rgba(255,255,255,.55); }
.footer-copy { margin-top: 6px; }

/* ============ Floating WhatsApp ============ */
.whatsapp-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 150;
  width: 60px; height: 60px; border-radius: 50%; background: var(--whatsapp); color: #fff;
  display: flex; align-items: center; justify-content: center; box-shadow: 0 14px 30px -8px rgba(37,211,102,.6);
  animation: wa-pulse 2.6s ease-in-out infinite;
}
.whatsapp-float:hover { background: var(--whatsapp-dark); }
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 14px 30px -8px rgba(37,211,102,.6), 0 0 0 0 rgba(37,211,102,.45); }
  50% { box-shadow: 0 14px 30px -8px rgba(37,211,102,.6), 0 0 0 12px rgba(37,211,102,0); }
}

/* ============ Responsive ============ */
@media (max-width: 900px) {
  .sobre, .localizacao { grid-template-columns: 1fr; }
  .localizacao-mapa { order: -1; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .main-nav { position: fixed; inset: 74px 0 auto 0; background: #fff; flex-direction: column; padding: 18px 24px 26px; gap: 4px; border-bottom: 1px solid rgba(14,74,66,.08); transform: translateY(-8px); opacity: 0; pointer-events: none; transition: all .18s ease; }
  .main-nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .main-nav a { padding: 10px 0; border-bottom: 1px solid rgba(14,74,66,.06); }
  .nav-toggle { display: flex; }
  .header-actions .btn-sm { display: none; }
  section { padding: 56px 0; }
  .hero-inner { padding: 100px 20px 70px; }
  .hero { min-height: 84vh; }
  .carousel-nav { display: none; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .footer-nav { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 560px) {
  .features-grid, .steps { grid-template-columns: 1fr; }
  .card { flex: 0 0 84vw; }
  .whatsapp-float { width: 54px; height: 54px; right: 16px; bottom: 16px; }
}
