/* ========================================
   CARDOSO STUDIO — Estilos
   Paleta: nude, dourado, rosé, branco, preto
   ======================================== */

/* ---------- Tokens ---------- */
:root {
  --bg: #FAF7F2;
  --bg-alt: #FFFFFF;
  --bg-soft: #F3EEE6;
  --surface: #FFFFFF;
  --ink: #1A1613;
  --ink-soft: #5A4B42;
  --ink-muted: #8A7A6E;
  --line: rgba(26, 22, 19, 0.08);
  --line-strong: rgba(26, 22, 19, 0.14);

  --gold: #C9A961;
  --gold-deep: #A88742;
  --gold-soft: #E8D9B0;
  --rose: #E8D4D0;
  --rose-soft: #F5E8E5;
  --nude: #E8DDD0;
  --nude-soft: #F2E9DC;

  --shadow-sm: 0 2px 12px rgba(80, 60, 40, 0.06);
  --shadow-md: 0 12px 40px rgba(80, 60, 40, 0.08);
  --shadow-lg: 0 24px 60px rgba(80, 60, 40, 0.12);
  --shadow-gold: 0 12px 30px rgba(201, 169, 97, 0.25);

  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --radius-xl: 40px;

  --font-display: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-accent: "Italiana", "Cormorant Garamond", serif;

  --ease: cubic-bezier(.2, .7, .2, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);

  --container: 1240px;
}

[data-theme="dark"] {
  --bg: #0E0B08;
  --bg-alt: #14100C;
  --bg-soft: #1A1511;
  --surface: #1A1511;
  --ink: #F5EEE3;
  --ink-soft: #C9B9A8;
  --ink-muted: #8E7F70;
  --line: rgba(245, 238, 227, 0.08);
  --line-strong: rgba(245, 238, 227, 0.16);
  --gold: #D4B770;
  --gold-deep: #C9A961;
  --gold-soft: #3A2E1E;
  --rose: #4A3936;
  --rose-soft: #2A1F1D;
  --nude: #3A2F26;
  --nude-soft: #241C15;
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 12px 40px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.6);
  --shadow-gold: 0 12px 30px rgba(212, 183, 112, 0.2);
}

/* ---------- Base ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  transition: background .5s var(--ease), color .5s var(--ease);
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

button { font-family: inherit; border: 0; cursor: pointer; background: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

/* ---------- Tipografia ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 500; letter-spacing: -0.01em; line-height: 1.1; color: var(--ink); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body);
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold-deep);
}
.eyebrow::before {
  content: ""; width: 28px; height: 1px; background: var(--gold);
}

.section-title {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 400;
  margin: 14px 0 18px;
  text-wrap: balance;
}
.section-title em {
  font-style: italic;
  color: var(--gold-deep);
  font-family: var(--font-accent);
}

.section-lead {
  color: var(--ink-soft);
  font-size: 1.05rem;
  max-width: 620px;
  text-wrap: pretty;
}

/* ---------- Section wrapper ---------- */
.section {
  padding: clamp(70px, 10vw, 130px) 0;
  position: relative;
}
.section-head { margin-bottom: 60px; }
.section-head.center { text-align: center; }
.section-head.center .section-lead { margin: 0 auto; }
.section-head.center .eyebrow { justify-content: center; }
.section-head.center .eyebrow::after {
  content: ""; width: 28px; height: 1px; background: var(--gold);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: all .35s var(--ease);
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn svg { width: 18px; height: 18px; }

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: #fff;
  box-shadow: var(--shadow-gold);
}
.btn-primary::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.35) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform .8s var(--ease);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 40px rgba(201,169,97,.4); }
.btn-primary:hover::before { transform: translateX(100%); }

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-strong);
}
.btn-outline:hover {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
  transform: translateY(-2px);
}

.btn-ghost {
  color: var(--ink);
  padding: 10px 0;
  gap: 8px;
}
.btn-ghost:hover { color: var(--gold-deep); }
.btn-ghost .arrow { transition: transform .3s var(--ease); }
.btn-ghost:hover .arrow { transform: translateX(4px); }

.btn-whats {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #fff;
  box-shadow: 0 12px 30px rgba(37, 211, 102, .3);
}
.btn-whats:hover { transform: translateY(-2px); box-shadow: 0 18px 40px rgba(37, 211, 102, .4); }

.btn-lg { padding: 20px 38px; font-size: 1rem; }

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: all .4s var(--ease);
}
.navbar.scrolled {
  background: rgba(250, 247, 242, 0.75);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
}
[data-theme="dark"] .navbar.scrolled { background: rgba(14, 11, 8, 0.75); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex; flex-direction: column; line-height: 1;
  font-family: var(--font-display);
  font-weight: 500;
}
.logo .logo-mark {
  font-size: 1.7rem;
  letter-spacing: 0.02em;
}
.logo .logo-mark em {
  font-family: var(--font-accent);
  color: var(--gold-deep);
  font-style: italic;
  font-weight: 400;
}
.logo .logo-sub {
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 4px;
}

.nav-links {
  display: flex;
  gap: 34px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  transition: color .3s;
}
.nav-links a::after {
  content: ""; position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .3s var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }

.nav-actions {
  display: flex; align-items: center; gap: 12px;
}

.theme-toggle {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  color: var(--ink);
  transition: all .3s var(--ease);
}
.theme-toggle:hover { background: var(--bg-soft); transform: rotate(15deg); }
.theme-toggle svg { width: 18px; height: 18px; }
.theme-toggle .icon-moon { display: none; }
[data-theme="dark"] .theme-toggle .icon-sun { display: none; }
[data-theme="dark"] .theme-toggle .icon-moon { display: block; }

.nav-cta { padding: 12px 22px; font-size: 0.85rem; }

.menu-toggle {
  display: none;
  width: 42px; height: 42px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  place-items: center;
  color: var(--ink);
}
.menu-toggle svg { width: 20px; height: 20px; }

/* ---------- Hero ---------- */
.hero {
  padding: 140px 0 90px;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 70px;
  align-items: center;
}

.hero-content .eyebrow { margin-bottom: 24px; }

.hero-title {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  text-wrap: balance;
}
.hero-title em {
  font-family: var(--font-accent);
  color: var(--gold-deep);
  font-style: italic;
  display: inline-block;
  position: relative;
}
.hero-title em::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero-lead {
  font-size: 1.12rem;
  color: var(--ink-soft);
  max-width: 520px;
  margin-bottom: 40px;
  text-wrap: pretty;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 60px;
}

.hero-stats {
  display: flex;
  gap: 44px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
.hero-stat .num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--gold-deep);
  font-weight: 500;
  line-height: 1;
}
.hero-stat .lbl {
  font-size: 0.78rem;
  color: var(--ink-muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 8px;
}

/* Hero collage */
.hero-visual {
  position: relative;
  height: min(640px, 85vh);
  min-height: 500px;
}

.hero-img {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-img img { width: 100%; height: 100%; object-fit: cover; }

.hero-img.main {
  top: 0; right: 0;
  width: 68%; height: 78%;
}
.hero-img.accent {
  bottom: 0; left: 0;
  width: 52%; height: 45%;
  z-index: 2;
  border: 8px solid var(--bg);
}
[data-theme="dark"] .hero-img.accent { border-color: var(--bg); }

.hero-badge {
  position: absolute;
  top: 42%; left: -20px;
  z-index: 3;
  background: var(--surface);
  border-radius: 999px;
  padding: 14px 20px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  animation: float 4s ease-in-out infinite;
}
.hero-badge .stars {
  color: var(--gold);
  font-size: 0.85rem; letter-spacing: 1px;
}
.hero-badge .txt {
  font-size: 0.78rem;
  color: var(--ink-soft);
  line-height: 1.3;
}
.hero-badge .txt strong { color: var(--ink); display: block; font-size: 0.85rem; font-weight: 600; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Ornament */
.hero-ornament {
  position: absolute;
  right: -180px; top: -180px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--rose-soft) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
}
.hero-ornament.two {
  right: auto; left: -200px; top: auto; bottom: -100px;
  background: radial-gradient(circle, var(--nude-soft) 0%, transparent 70%);
}

/* ---------- Marquee valores ---------- */
.marquee {
  padding: 30px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.marquee-track {
  display: flex; gap: 60px;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
  will-change: transform;
}
.marquee-item {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--ink);
  font-style: italic;
}
.marquee-item .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Serviços ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.service-card {
  position: relative;
  padding: 40px 32px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  transition: all .5s var(--ease);
  overflow: hidden;
  isolation: isolate;
}
.service-card::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(160deg, var(--gold-soft) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .5s var(--ease);
  z-index: -1;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-soft);
}
.service-card:hover::before { opacity: 0.5; }

.service-icon {
  width: 62px; height: 62px;
  display: grid; place-items: center;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--rose-soft), var(--nude-soft));
  color: var(--gold-deep);
  margin-bottom: 24px;
  transition: transform .5s var(--ease);
}
.service-card:hover .service-icon { transform: scale(1.05) rotate(-4deg); }
.service-icon svg { width: 30px; height: 30px; stroke-width: 1.4; }

.service-title {
  font-size: 1.55rem;
  margin-bottom: 12px;
}
.service-desc {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin-bottom: 24px;
  text-wrap: pretty;
}
.service-meta {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.service-tag {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.service-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.88rem; font-weight: 500;
  color: var(--ink);
  transition: color .3s;
}
.service-link:hover { color: var(--gold-deep); }
.service-link svg { width: 14px; height: 14px; transition: transform .3s; }
.service-link:hover svg { transform: translateX(4px); }

/* ---------- Sobre ---------- */
.about {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
  height: 620px;
}
.about-img-main {
  position: absolute; inset: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }

.about-img-secondary {
  position: absolute;
  bottom: -40px; right: -40px;
  width: 55%; height: 45%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 10px solid var(--bg-alt);
  box-shadow: var(--shadow-lg);
}
.about-img-secondary img { width: 100%; height: 100%; object-fit: cover; }

.about-quote {
  position: absolute;
  top: -20px; left: -20px;
  background: var(--surface);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  max-width: 220px;
  z-index: 2;
}
.about-quote .mark {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--gold);
  line-height: 0.5;
  font-style: italic;
}
.about-quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.98rem;
  color: var(--ink);
  margin-top: 8px;
}

.about-title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 400; margin: 14px 0 24px; }
.about-title em { font-family: var(--font-accent); color: var(--gold-deep); font-style: italic; }

.about-body p {
  color: var(--ink-soft);
  margin-bottom: 18px;
  text-wrap: pretty;
}

.about-notice {
  margin-top: 30px;
  padding: 22px 24px;
  border-radius: var(--radius);
  background: var(--rose-soft);
  border-left: 3px solid var(--gold);
  display: flex; gap: 16px;
  align-items: flex-start;
}
[data-theme="dark"] .about-notice { background: var(--rose-soft); }
.about-notice svg { flex-shrink: 0; color: var(--gold-deep); width: 22px; height: 22px; margin-top: 2px; }
.about-notice p { font-size: 0.92rem; color: var(--ink-soft); }
.about-notice p strong { color: var(--ink); }

/* ---------- Diferenciais ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.feature {
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  transition: all .4s var(--ease);
  position: relative;
  overflow: hidden;
}
.feature:hover {
  transform: translateY(-4px);
  border-color: var(--gold-soft);
  box-shadow: var(--shadow-md);
}
.feature-number {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--gold-soft);
  font-style: italic;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 8px;
  transition: color .4s;
}
.feature:hover .feature-number { color: var(--gold-deep); }
.feature h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
.feature p {
  color: var(--ink-soft);
  font-size: 0.92rem;
  text-wrap: pretty;
}

/* ---------- Galeria ---------- */
.gallery {
  background: var(--bg-alt);
}
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 50px;
}
.filter-btn {
  padding: 10px 22px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  color: var(--ink-soft);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: all .3s var(--ease);
  background: transparent;
}
.filter-btn:hover { color: var(--ink); border-color: var(--gold); }
.filter-btn.active {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}

.masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 120px;
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.gallery-item.hide { opacity: 0; transform: scale(0.9); pointer-events: none; position: absolute; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.gallery-item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.75));
  opacity: 0;
  transition: opacity .4s;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item .cap {
  position: absolute;
  bottom: 20px; left: 22px;
  color: #fff;
  z-index: 2;
  transform: translateY(10px);
  opacity: 0;
  transition: all .4s var(--ease);
}
.gallery-item:hover .cap { transform: translateY(0); opacity: 1; }
.gallery-item .cap-title { font-family: var(--font-display); font-size: 1.3rem; }
.gallery-item .cap-cat { font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold-soft); }

.g-1 { grid-column: span 2; grid-row: span 3; }
.g-2 { grid-column: span 1; grid-row: span 2; }
.g-3 { grid-column: span 1; grid-row: span 2; }
.g-4 { grid-column: span 1; grid-row: span 2; }
.g-5 { grid-column: span 1; grid-row: span 3; }
.g-6 { grid-column: span 2; grid-row: span 2; }
.g-7 { grid-column: span 1; grid-row: span 2; }
.g-8 { grid-column: span 1; grid-row: span 3; }

/* ---------- Depoimentos ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.testimonial {
  padding: 36px 32px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  position: relative;
  transition: all .4s var(--ease);
}
.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-soft);
}
.testimonial .stars {
  color: var(--gold);
  font-size: 1.05rem;
  letter-spacing: 3px;
  margin-bottom: 18px;
}
.testimonial p {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.5;
  margin-bottom: 24px;
  text-wrap: pretty;
}
.testimonial-author {
  display: flex; align-items: center; gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--rose), var(--nude));
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
}
.author-name { font-weight: 500; font-size: 0.95rem; }
.author-meta { font-size: 0.78rem; color: var(--ink-muted); }

/* Depoimentos "em branco" */
.testimonial-empty {
  background: repeating-linear-gradient(
    135deg,
    var(--surface) 0 14px,
    var(--bg-soft) 14px 28px
  );
  border-style: dashed;
  border-color: var(--line-strong);
}
.testimonial-empty .stars.empty { color: var(--ink-muted); opacity: 0.4; }
.testimonial-empty .empty-quote {
  color: var(--ink-muted);
  opacity: 0.55;
  font-style: italic;
}
.testimonial-empty .avatar.empty {
  background: var(--bg-soft);
  color: var(--ink-muted);
  border: 1px dashed var(--line-strong);
  font-family: var(--font-body);
  font-weight: 400;
}
.testimonial-empty .empty-line {
  color: var(--ink-muted);
  opacity: 0.55;
}
.testimonial-empty:hover {
  border-style: solid;
  border-color: var(--gold-soft);
}

/* ---------- CTA grande ---------- */
.cta-band {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 30%, var(--rose-soft) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, var(--nude-soft) 0%, transparent 45%),
    var(--bg-soft);
  z-index: -1;
}

.cta-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.cta-title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 400;
  line-height: 1.1;
  margin: 20px 0 28px;
  text-wrap: balance;
}
.cta-title em { font-family: var(--font-accent); color: var(--gold-deep); font-style: italic; }
.cta-lead { color: var(--ink-soft); font-size: 1.05rem; margin-bottom: 40px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Contato ---------- */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
}

.contact-info { display: flex; flex-direction: column; gap: 18px; }
.contact-card {
  padding: 26px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  display: flex; gap: 18px;
  align-items: flex-start;
  transition: all .4s var(--ease);
}
.contact-card:hover {
  transform: translateX(4px);
  border-color: var(--gold-soft);
  box-shadow: var(--shadow-sm);
}
.contact-card .ico {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--rose-soft), var(--nude-soft));
  display: grid; place-items: center;
  color: var(--gold-deep);
  flex-shrink: 0;
}
.contact-card .ico svg { width: 22px; height: 22px; }
.contact-card h4 { font-size: 1.05rem; margin-bottom: 4px; }
.contact-card p, .contact-card a {
  font-size: 0.92rem;
  color: var(--ink-soft);
  transition: color .3s;
  display: block;
}
.contact-card a:hover { color: var(--gold-deep); }

.contact-form {
  padding: 40px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.contact-form h3 { font-size: 1.6rem; margin-bottom: 8px; font-weight: 400; }
.contact-form .form-lead { color: var(--ink-soft); font-size: 0.92rem; margin-bottom: 28px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-field { margin-bottom: 14px; }
.form-field label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 8px;
}
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--line-strong);
  background: var(--bg);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  transition: border-color .3s, box-shadow .3s;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-soft);
}
.form-field textarea { resize: vertical; min-height: 100px; }

.form-submit {
  width: 100%;
  margin-top: 8px;
}

/* ---------- Footer ---------- */
.footer {
  padding: 80px 0 30px;
  background: var(--ink);
  color: rgba(245, 238, 227, 0.75);
}
[data-theme="dark"] .footer { background: #05040 3; background: #050403; }

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer .logo .logo-mark { color: #fff; }
.footer .logo .logo-sub { color: rgba(255,255,255,.5); }

.footer-tag {
  margin: 20px 0 24px;
  font-size: 0.92rem;
  line-height: 1.6;
}

.footer h5 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 18px;
  font-weight: 500;
}
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer a { transition: color .3s; font-size: 0.92rem; }
.footer a:hover { color: var(--gold); }

.footer-social {
  display: flex; gap: 10px;
}
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  display: grid; place-items: center;
  color: rgba(255,255,255,.75);
  transition: all .3s;
}
.footer-social a:hover {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
  transform: translateY(-3px);
}
.footer-social svg { width: 18px; height: 18px; }

.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 0.82rem;
  color: rgba(255,255,255,.5);
  flex-wrap: wrap;
}

/* ---------- Botão flutuante WhatsApp ---------- */
.float-whats {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  display: grid; place-items: center;
  color: #fff;
  box-shadow: 0 12px 30px rgba(37, 211, 102, .4);
  z-index: 90;
  transition: transform .3s var(--ease);
}
.float-whats::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: 50%;
  background: #25D366;
  animation: pulse 2s ease-out infinite;
  z-index: -1;
}
.float-whats:hover { transform: scale(1.08); }
.float-whats svg { width: 30px; height: 30px; }
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* Back to top */
.back-top {
  position: fixed;
  bottom: 30px; right: 100px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--line-strong);
  display: grid; place-items: center;
  z-index: 89;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: all .3s var(--ease);
  box-shadow: var(--shadow-sm);
}
.back-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-top:hover { background: var(--gold); color: #fff; border-color: var(--gold); }
.back-top svg { width: 18px; height: 18px; }

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

/* ---------- Responsivo ---------- */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 50px; }
  .hero-visual { height: 500px; }
  .about-inner { grid-template-columns: 1fr; gap: 90px; }
  .about-visual { height: 480px; }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .masonry { grid-template-columns: repeat(3, 1fr); }
  .g-1, .g-6 { grid-column: span 2; }
}

@media (max-width: 720px) {
  .nav-links, .nav-cta { display: none; }
  .menu-toggle { display: grid; }
  .hero { padding: 120px 0 60px; }
  .hero-visual { height: 420px; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .hero-stat .num { font-size: 1.8rem; }
  .about-img-secondary { right: -10px; bottom: -20px; }
  .about-quote { top: 10px; left: 10px; }
  .footer-inner { grid-template-columns: 1fr; gap: 30px; }
  .form-row { grid-template-columns: 1fr; }
  .masonry { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 100px; }
  .g-1, .g-6 { grid-column: span 2; grid-row: span 2; }
  .g-2, .g-3, .g-4, .g-5, .g-7, .g-8 { grid-column: span 1; grid-row: span 2; }
  .contact-form { padding: 28px 22px; }
  .float-whats { width: 54px; height: 54px; bottom: 20px; right: 20px; }
  .float-whats svg { width: 26px; height: 26px; }
  .back-top { bottom: 20px; right: 84px; width: 42px; height: 42px; }
  .marquee-item { font-size: 1.15rem; }
  .hero-badge { padding: 10px 14px; left: -10px; }
  .hero-badge .txt { font-size: 0.7rem; }
}

/* Mobile menu drawer */
.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  width: min(320px, 90vw);
  height: 100vh;
  background: var(--surface);
  z-index: 200;
  transform: translateX(100%);
  transition: transform .5s var(--ease);
  padding: 90px 30px 30px;
  box-shadow: var(--shadow-lg);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.mobile-menu a {
  display: block;
  padding: 14px 0;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.mobile-menu .mobile-cta { margin-top: 24px; width: 100%; }
.mobile-close {
  position: absolute; top: 24px; right: 24px;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: grid; place-items: center;
  color: var(--ink);
}
.mobile-close svg { width: 18px; height: 18px; }
.mobile-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.4);
  z-index: 150;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s;
}
.mobile-overlay.open { opacity: 1; pointer-events: auto; }
