/* ============================================================
   JOEL LOPES — Corretor e Administrador de Imóveis · Guarapari
   Design system: litoral elegante (navy · champanhe · areia)
   ============================================================ */

:root {
  --navy: #0a2540;
  --navy-2: #12395e;
  --navy-3: #1b4a73;
  --ink: #16324b;
  --gold: #c9a96b;
  --gold-2: #ddc394;
  --gold-soft: #f3e9d7;
  --sand: #f7f4ee;
  --sand-2: #efe9df;
  --white: #ffffff;
  --wa: #25d366;
  --wa-dark: #1eb857;

  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  --shadow-sm: 0 2px 10px rgba(10, 37, 64, .06);
  --shadow-md: 0 14px 40px rgba(10, 37, 64, .12);
  --shadow-lg: 0 30px 70px rgba(10, 37, 64, .18);

  --radius: 14px;
  --hairline: 1px solid rgba(10, 37, 64, .12);
  --hairline-light: 1px solid rgba(255, 255, 255, .14);

  --ease: cubic-bezier(.22, 1, .36, 1);
  --header-h: 76px;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.container {
  width: min(1160px, 100% - 48px);
  margin-inline: auto;
}

.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--navy); color: var(--gold-2);
  padding: .8rem 1.2rem; z-index: 200; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: var(--gold-soft); color: var(--navy); }

/* ---------- Tipografia ---------- */
h1, h2, h3, .brand-name { font-family: var(--font-display); font-weight: 600; line-height: 1.14; color: var(--navy); text-wrap: balance; }
h1, h2 { text-wrap: balance; }

em { font-style: italic; }

.eyebrow {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  margin-bottom: 1.1rem;
}
.eyebrow::before { content: ""; width: 34px; height: 1px; background: var(--gold); }
.eyebrow-light { color: var(--gold-2); }
.eyebrow-light::before { background: var(--gold-2); }

.section-title { font-size: clamp(1.7rem, 3.2vw, 2.7rem); letter-spacing: -.01em; }
.section-title em { color: var(--navy-2); }
.section-lead { max-width: 640px; margin-top: 1.1rem; color: #52657a; font-size: 1.02rem; }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .01em;
  padding: .95rem 1.8rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s, color .3s, border-color .3s;
  white-space: nowrap;
}
.btn .ic { width: 1.05em; height: 1.05em; fill: currentColor; }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: var(--navy);
  box-shadow: 0 10px 26px rgba(201, 169, 107, .38);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(201, 169, 107, .5); }

.btn-ghost { border-color: rgba(255, 255, 255, .4); color: var(--white); background: rgba(255,255,255,.04); backdrop-filter: blur(6px); }
.btn-ghost:hover { border-color: var(--gold-2); color: var(--gold-2); transform: translateY(-2px); }

.btn-outline { border-color: rgba(10, 37, 64, .28); color: var(--navy); background: transparent; }
.btn-outline:hover { border-color: var(--navy); background: var(--navy); color: var(--gold-2); transform: translateY(-2px); }

.btn-lg { padding: 1.05rem 2.1rem; font-size: 1rem; }
.btn-sm { padding: .6rem 1.25rem; font-size: .85rem; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background .35s, box-shadow .35s, border-color .35s;
  border-bottom: 1px solid transparent;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); gap: 1rem; }

.brand { display: inline-flex; align-items: center; gap: .75rem; }
.brand-mark {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: .95rem; font-weight: 700; font-style: italic;
  color: var(--gold-2);
  transition: background .3s, color .3s, transform .3s var(--ease);
}
.brand:hover .brand-mark { transform: rotate(-6deg) scale(1.04); }

.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-name { font-size: 1.12rem; color: var(--white); letter-spacing: .01em; }
.brand-role { font-size: .66rem; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.62); }

.site-nav ul { display: flex; gap: 1.9rem; }
.site-nav a { font-size: .9rem; font-weight: 500; color: rgba(255,255,255,.85); position: relative; padding: .3rem 0; }
.site-nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: var(--gold-2);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease);
}
.site-nav a:hover { color: var(--white); }
.site-nav a:hover::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: .9rem; }
.header-cta-mobile { display: none; }

/* header scrolled */
.site-header.scrolled {
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--hairline);
  box-shadow: var(--shadow-sm);
}
.site-header.scrolled .brand-name { color: var(--navy); }
.site-header.scrolled .brand-role { color: #6b7d90; }
.site-header.scrolled .site-nav a { color: var(--ink); }
.site-header.scrolled .site-nav a:hover { color: var(--navy); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; width: 42px; height: 42px; align-items: center; justify-content: center; border-radius: 10px; }
.nav-toggle span { width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s; }
.site-header:not(.scrolled) .nav-toggle span { background: var(--white); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: min(100svh, 840px);
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 55%, var(--navy-3) 100%);
  padding: calc(var(--header-h) + 48px) 0 96px;
  overflow: hidden;
  color: var(--white);
}

.hero-bg { position: absolute; inset: 0; pointer-events: none; }

.hero-orb {
  position: absolute; right: -140px; top: -180px;
  width: 560px; height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(221, 195, 148, .16), transparent 65%);
  filter: blur(8px);
}
.hero-orb::after {
  content: ""; position: absolute; inset: 90px;
  border-radius: 50%;
  border: 1px solid rgba(221, 195, 148, .28);
}

.hero-photo {
  position: absolute;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(221, 195, 148, .35);
}
.hero-photo-main {
  right: clamp(20px, 6vw, 110px);
  top: 50%;
  width: clamp(220px, 30vw, 380px);
  aspect-ratio: 4 / 4.6;
  transform: translateY(-46%) rotate(1.6deg);
}
.hero-photo-main .placeholder-art { position: absolute; inset: 0; }
.hero-photo-main .placeholder-art svg { width: 100%; height: 100%; }
.photo-slot-label {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 2.4rem 1.1rem 1rem;
  font-size: .68rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold-2);
  background: linear-gradient(transparent, rgba(10, 37, 64, .85));
}

.hero-inner { position: relative; z-index: 2; max-width: 720px; }
.hero-title {
  font-size: clamp(2.2rem, 4.8vw, 3.9rem);
  font-weight: 500;
  color: var(--white);
  letter-spacing: -.015em;
}
.hero-title em { color: var(--gold-2); }
.hero-sub { margin-top: 1.4rem; font-size: 1.05rem; color: rgba(255, 255, 255, .78); max-width: 540px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2.2rem; }

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.2rem, 4vw, 2.6rem);
  margin-top: 2.8rem;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(255, 255, 255, .18);
}
.hero-stats li { display: flex; flex-direction: column; gap: .15rem; }
.stat-num { font-family: var(--font-display); font-size: 2rem; font-weight: 600; color: var(--gold-2); line-height: 1; }
.stat-suf { font-size: 1.3rem; }
.stat-label { font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255, 255, 255, .62); }

.hero-wave { position: absolute; left: 0; right: 0; bottom: -1px; z-index: 1; }
.hero-wave svg { width: 100%; height: 60px; display: block; }

/* ---------- Seções ---------- */
.section { padding: clamp(3.5rem, 8vw, 5.5rem) 0; }
.section-head { max-width: 760px; margin-bottom: 3.4rem; }
.section-head-light .section-title { color: var(--white); }
.section-head-light .section-title em { color: var(--gold-2); }
.section-head-light .section-lead { color: rgba(255, 255, 255, .7); }

.section-dark { background: linear-gradient(170deg, var(--navy), var(--navy-2) 130%); color: rgba(255,255,255,.85); position: relative; overflow: hidden; }

/* ---------- Serviços ---------- */
.services { background: var(--sand); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }

.service-card {
  background: var(--white);
  border: var(--hairline);
  border-radius: var(--radius);
  padding: 2.1rem 1.9rem;
  display: flex; flex-direction: column; gap: .9rem;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(201, 169, 107, .55); }

.service-icon {
  width: 54px; height: 54px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 107, .6);
  background: var(--gold-soft);
  color: var(--navy);
  margin-bottom: .3rem;
}
.service-icon svg { width: 25px; height: 25px; }

.service-card h3 { font-size: 1.28rem; font-weight: 600; }
.service-card p { font-size: .93rem; color: #5a6c7e; flex-grow: 1; }

.service-link {
  display: inline-flex; align-items: center; gap: .45rem;
  font-size: .85rem; font-weight: 600;
  color: var(--navy);
  margin-top: .4rem;
}
.service-link svg { width: 15px; height: 15px; transition: transform .3s var(--ease); }
.service-link::before { content: ""; width: 26px; height: 1px; background: var(--gold); transition: width .3s var(--ease); }
.service-link:hover::before { width: 40px; }
.service-link:hover svg { transform: translateX(4px); }

/* ---------- Como funciona ---------- */
.process::before {
  content: ""; position: absolute; left: -160px; bottom: -160px;
  width: 460px; height: 460px; border-radius: 50%;
  border: 1px solid rgba(221, 195, 148, .16);
}
.process::after {
  content: ""; position: absolute; left: -80px; bottom: -80px;
  width: 300px; height: 300px; border-radius: 50%;
  border: 1px solid rgba(221, 195, 148, .12);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.2rem;
  counter-reset: step;
  position: relative;
  z-index: 2;
}
.process-list li { position: relative; padding-top: .6rem; }
.process-list li::before {
  content: ""; position: absolute; top: 3.4rem; left: calc(-2.2rem); right: calc(50% + 1.2rem);
  height: 1px; background: linear-gradient(90deg, transparent, rgba(221, 195, 148, .4));
}
.process-list li:first-child::before { display: none; }

.process-num {
  font-family: var(--font-display);
  font-size: 2.3rem; font-weight: 500; font-style: italic;
  color: var(--gold-2);
  display: block;
  margin-bottom: .6rem;
  opacity: .9;
}
.process-list h3 { font-size: 1.16rem; color: var(--white); font-weight: 600; margin-bottom: .55rem; }
.process-list p { font-size: .9rem; color: rgba(255, 255, 255, .65); }

.process-cta { margin-top: 3.6rem; position: relative; z-index: 2; }

/* ---------- Imóveis ---------- */
.listings { background: var(--white); }

.listings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

.listing-card {
  background: var(--white);
  border: var(--hairline);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
}
.listing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(201, 169, 107, .5); }

.listing-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--sand-2); }
.listing-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.listing-card:hover .listing-media img { transform: scale(1.06); }

.ph-placeholder {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  background: linear-gradient(150deg, var(--navy-2), var(--navy));
}
.ph-placeholder svg { width: 100%; height: 100%; }

.listing-media.ph-fallback { background: linear-gradient(150deg, var(--navy-2), var(--navy)); }
.listing-media.ph-fallback::before {
  content: "JL";
  font-family: var(--font-display);
  font-style: italic;
  font-size: 3.2rem;
  color: var(--gold-2);
  opacity: .85;
}

.listing-tag {
  position: absolute; top: 1rem; left: 1rem; z-index: 2;
  font-size: .68rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  padding: .42rem .85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, .94);
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}
.listing-tag.tag-venda { background: var(--navy); color: var(--gold-2); }
.listing-tag.tag-aluguel { background: var(--gold); color: var(--navy); }
.listing-tag.tag-temporada { background: var(--white); color: var(--navy); }

.listing-body { padding: 1.4rem 1.5rem 1.5rem; display: flex; flex-direction: column; gap: .4rem; flex-grow: 1; }
.listing-bairro { font-size: .7rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); }
.listing-title { font-size: 1.16rem; font-weight: 600; line-height: 1.3; }
.listing-meta { display: flex; flex-wrap: wrap; gap: .9rem; font-size: .84rem; color: #6b7d90; margin-top: .35rem; }
.listing-meta span { display: inline-flex; align-items: center; gap: .35rem; }
.listing-meta svg { width: 14px; height: 14px; color: var(--gold); }

.listing-price {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 600;
  color: var(--navy);
  margin-top: .5rem;
}
.listing-price small { font-family: var(--font-body); font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: #8b9aab; }

.listing-cta {
  margin-top: .9rem;
  display: inline-flex; align-items: center; justify-content: space-between; gap: .5rem;
  padding: .68rem 1.1rem;
  border: 1px solid rgba(10, 37, 64, .25);
  border-radius: 999px;
  font-size: .85rem; font-weight: 600; color: var(--navy);
  transition: background .3s, color .3s, border-color .3s, transform .3s var(--ease);
}
.listing-cta svg { width: 15px; height: 15px; }
.listing-cta:hover { background: var(--navy); border-color: var(--navy); color: var(--gold-2); transform: translateY(-2px); }

.listings-note {
  margin-top: 3rem;
  text-align: center;
  color: #5a6c7e;
  font-size: .98rem;
}
.listings-note a {
  color: var(--navy); font-weight: 600;
  display: inline-flex; align-items: center; gap: .4rem;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
}
.listings-note a svg { width: 14px; height: 14px; }

/* ---------- Sobre ---------- */
.about { background: var(--sand); }
.about-grid { display: grid; grid-template-columns: 380px 1fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: center; }

.about-visual { position: relative; }
.about-portrait {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 5 / 6;
  border: 1px solid rgba(201, 169, 107, .5);
  box-shadow: var(--shadow-lg);
}
.about-portrait svg { width: 100%; height: 100%; }
.photo-slot {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 2.2rem 1.1rem 1rem;
  font-size: .66rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold-2);
  background: linear-gradient(transparent, rgba(10, 37, 64, .9));
}

.about-badge {
  position: absolute; right: -1rem; bottom: 2rem;
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--gold);
  color: var(--navy);
  font-size: .8rem; font-weight: 700;
  padding: .7rem 1.15rem;
  border-radius: 999px;
  box-shadow: var(--shadow-md);
}
.about-badge svg { width: 17px; height: 17px; }

.about-body .section-title { margin-bottom: 1.6rem; }
.about-quote {
  font-family: var(--font-display);
  font-size: 1.5rem; font-style: italic; line-height: 1.45;
  color: var(--navy);
  border-left: 2px solid var(--gold);
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}
.about-text { color: #52657a; max-width: 58ch; }

.about-signature { margin: 1.7rem 0 1.9rem; display: flex; flex-direction: column; gap: .1rem; }
.sign-name {
  font-family: var(--font-display);
  font-size: 1.5rem; font-style: italic; font-weight: 600;
  color: var(--navy);
}
.sign-name::before { content: "— "; color: var(--gold); }
.sign-role { font-size: .78rem; letter-spacing: .08em; color: #6b7d90; text-transform: uppercase; }

/* ---------- Depoimentos ---------- */
.testimonials { background: var(--white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }

.testimonial-card {
  background: var(--sand);
  border: var(--hairline);
  border-radius: var(--radius);
  padding: 2rem 1.9rem;
  display: flex; flex-direction: column; gap: 1.1rem;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.testimonial-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.stars { display: flex; gap: .2rem; color: var(--gold); }
.stars svg { width: 16px; height: 16px; }

.testimonial-card blockquote {
  font-family: var(--font-display);
  font-size: 1.12rem; font-style: italic; line-height: 1.55;
  color: var(--ink);
  flex-grow: 1;
}
.testimonial-card figcaption { display: flex; flex-direction: column; gap: .1rem; border-top: 1px solid rgba(10,37,64,.1); padding-top: 1rem; }
.t-name { font-weight: 700; font-size: .92rem; color: var(--navy); }
.t-meta { font-size: .76rem; letter-spacing: .08em; text-transform: uppercase; color: #7d8da0; }

/* ---------- FAQ ---------- */
.faq { background: var(--sand); }
.faq-grid { display: grid; grid-template-columns: 380px 1fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: start; }
.faq-intro .btn { margin-top: 1.8rem; }

.faq-accordion { display: flex; flex-direction: column; gap: .8rem; }

.faq-item {
  background: var(--white);
  border: var(--hairline);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .3s, box-shadow .3s;
}
.faq-item[open] { border-color: rgba(201, 169, 107, .6); box-shadow: var(--shadow-sm); }

.faq-item summary {
  list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.2rem 1.5rem;
  font-weight: 600; font-size: 1rem; color: var(--navy);
  cursor: pointer;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-chevron { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; transition: transform .35s var(--ease); }
.faq-item[open] .faq-chevron { transform: rotate(180deg); }

.faq-panel { padding: 0 1.5rem 1.4rem; color: #5a6c7e; font-size: .95rem; max-width: 70ch; }

/* ---------- Contato ---------- */
.contact { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(2rem, 5vw, 4rem); align-items: stretch; }

.contact-list { display: flex; flex-direction: column; gap: 1.4rem; }
.contact-list li { display: flex; gap: 1.1rem; align-items: flex-start; }
.contact-ic {
  width: 46px; height: 46px; flex-shrink: 0;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--gold-soft);
  border: 1px solid rgba(201, 169, 107, .5);
  color: var(--navy);
}
.contact-ic svg { width: 20px; height: 20px; }
.contact-ic-wa { background: rgba(37, 211, 102, .14); border-color: rgba(37, 211, 102, .4); color: #128c4b; }
.contact-ic-wa svg { fill: currentColor; stroke: none; width: 22px; height: 22px; }

.contact-list strong { display: block; font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: #8b9aab; margin-bottom: .15rem; }
.contact-list li > div { display: flex; flex-direction: column; gap: .05rem; font-size: .98rem; color: var(--ink); }
.contact-list a { font-weight: 600; color: var(--navy); }
.contact-list a:hover { color: var(--navy-3); }

.contact-cta {
  margin-top: 2.4rem;
  background: linear-gradient(150deg, var(--navy), var(--navy-2));
  border-radius: var(--radius);
  padding: 1.9rem 2rem;
  color: var(--white);
  display: flex; flex-direction: column; align-items: flex-start; gap: .3rem;
  position: relative; overflow: hidden;
}
.contact-cta::before {
  content: ""; position: absolute; right: -70px; top: -70px;
  width: 220px; height: 220px; border-radius: 50%;
  border: 1px solid rgba(221, 195, 148, .3);
}
.contact-cta-title { font-family: var(--font-display); font-size: 1.55rem; font-style: italic; color: var(--gold-2); }
.contact-cta-sub { font-size: .95rem; color: rgba(255,255,255,.7); margin-bottom: 1.2rem; }

.contact-map {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: var(--hairline);
  min-height: 480px;
  display: flex; flex-direction: column;
}
.contact-map iframe { flex-grow: 1; border: 0; width: 100%; filter: grayscale(.25) contrast(1.02); min-height: 420px; }
.map-btn { margin: 1.1rem; align-self: flex-start; }

/* ---------- Footer ---------- */
.site-footer { background: #071c30; color: rgba(255, 255, 255, .72); padding: 4.5rem 0 2rem; }

.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-about { margin-top: 1.2rem; font-size: .9rem; max-width: 40ch; color: rgba(255,255,255,.55); }

.footer-col h3 {
  font-family: var(--font-body);
  font-size: .74rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 1.1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .55rem; }
.footer-col a { font-size: .92rem; color: rgba(255,255,255,.72); transition: color .3s; }
.footer-col a:hover { color: var(--gold-2); }
.footer-col li { font-size: .92rem; }

.footer-legal {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: .8rem;
  padding-top: 1.6rem;
  font-size: .82rem; color: rgba(255,255,255,.45);
}
.footer-legal-note { letter-spacing: .04em; }

/* ---------- WhatsApp flutuante ---------- */
.wa-float {
  position: fixed; right: 1.4rem; bottom: 1.4rem; z-index: 90;
  width: 58px; height: 58px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--wa);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(37, 211, 102, .45);
  transition: transform .3s var(--ease), box-shadow .3s;
}
.wa-float:hover { transform: translateY(-4px) scale(1.05); box-shadow: 0 18px 40px rgba(37, 211, 102, .55); }
.wa-float svg { width: 28px; height: 28px; fill: currentColor; }
.wa-float::before {
  content: ""; position: absolute; inset: 0;
  border-radius: 50%;
  background: var(--wa);
  animation: wa-pulse 2.4s var(--ease) infinite;
  z-index: -1;
}
@keyframes wa-pulse {
  0% { transform: scale(1); opacity: .55; }
  70% { transform: scale(1.7); opacity: 0; }
  100% { transform: scale(1.7); opacity: 0; }
}

/* ---------- Reveal ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  transition-delay: calc(var(--d, 0) * 90ms);
}
[data-reveal].revealed { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  [data-reveal] { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsivo ----------
   Régua única:
   · ≥1025px  — Desktop (nav completa, 3 colunas, foto do hero)
   · 769–1024 — Tablet  (hambúrguer, hero central, 2 colunas)
   · ≤768px   — Celular  (1 coluna, hero compacto)
   · ≤420px   — Telas pequenas (micro-ajustes)
   ------------------------------------------------------------ */

@media (max-width: 1120px) {
  .site-nav ul { gap: 1.3rem; }
}

@media (max-width: 1024px) {
  .nav-toggle { display: flex; }
  .header-cta { display: none; }
  .header-cta-mobile { display: inline-flex; }

  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: rgba(255, 255, 255, .97);
    backdrop-filter: blur(14px);
    border-bottom: var(--hairline);
    box-shadow: var(--shadow-md);
    padding: 1rem 1.5rem 1.6rem;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s, transform .3s var(--ease);
  }
  .site-nav.open { opacity: 1; transform: none; pointer-events: auto; }
  .site-nav ul { flex-direction: column; gap: .2rem; }
  .site-nav a { display: block; padding: .75rem 0; font-size: 1.02rem; color: var(--ink) !important; border-bottom: 1px solid rgba(10,37,64,.08); }
  .site-nav a::after { display: none; }
  .header-cta-mobile { margin-top: 1.1rem; width: 100%; }

  .hero { padding-bottom: 84px; }
  .hero-inner { margin-inline: auto; text-align: center; max-width: 640px; }
  .hero-inner .eyebrow { justify-content: center; }
  .hero-inner .eyebrow::before { display: none; }
  .hero-sub { margin-inline: auto; }
  .hero-cta { justify-content: center; }
  .hero-stats { justify-content: center; gap: 1.6rem; }
  .hero-photo-main { display: none; }

  .services-grid, .listings-grid, .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .process-list { grid-template-columns: repeat(2, 1fr); gap: 2.4rem 3rem; }
  .process-list li::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .about-grid, .faq-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-visual { max-width: 420px; }
  .faq-intro .btn { margin-top: 1.2rem; }
  .contact-map { min-height: 380px; }
}

@media (max-width: 768px) {
  .container { width: min(1160px, 100% - 40px); }
  .only-desktop { display: none; }

  .hero {
    padding: calc(var(--header-h) + 40px) 0 72px;
    min-height: min(100svh, 720px);
  }
  .hero-title { font-size: clamp(2rem, 8.5vw, 2.5rem); }
  .hero-sub { font-size: .97rem; }
  .hero-cta { flex-direction: column; width: 100%; }
  .hero-cta .btn { width: 100%; }
  .hero-stats { flex-direction: column; gap: 1.2rem; align-items: center; }
  .hero-stats li { flex-direction: row; align-items: baseline; gap: .9rem; }

  .section-head { margin-bottom: 2.4rem; }
  .section-title { font-size: clamp(1.55rem, 6vw, 1.9rem); }
  .eyebrow { margin-bottom: .9rem; }

  .services-grid, .listings-grid, .testimonials-grid, .process-list { grid-template-columns: 1fr; }
  .process-list { gap: 2rem; }
  .service-card, .testimonial-card { padding: 1.8rem 1.5rem; }
  .listing-body { padding: 1.2rem 1.3rem 1.3rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .contact-map { min-height: 340px; }
  .contact-cta { padding: 1.6rem 1.5rem; }
  .wa-float { width: 54px; height: 54px; right: 1.1rem; bottom: 1.1rem; }
}

@media (max-width: 420px) {
  .brand-role { display: none; }
  .brand-mark { width: 40px; height: 40px; }
  .hero-stats { align-items: stretch; }
  .listing-cta { width: 100%; }
  .contact-list li { gap: .85rem; }
  .map-btn { width: calc(100% - 2.2rem); justify-content: center; }
}
