:root {
  --navy: #071C33;
  --navy-2: #0B2949;
  --navy-3: #10385E;
  --gold: #C7892B;
  --gold-2: #E0AA5A;
  --off: #F7F1E7;
  --sand: #E8D8C3;
  --graphite: #1E1E1E;
  --white: #FFFFFF;
  --whats: #25D366;
  --bg: #F7F1E7;
  --bg-soft: #F1E6D7;
  --surface: rgba(255, 255, 255, .78);
  --surface-solid: #FFFFFF;
  --heading: #071C33;
  --text: #1E1E1E;
  --muted: rgba(30, 30, 30, .68);
  --line: rgba(7, 28, 51, .12);
  --line-strong: rgba(7, 28, 51, .20);
  --header-bg: rgba(247, 241, 231, .88);
  --header-link: rgba(7, 28, 51, .78);
  --shadow: 0 24px 70px rgba(7, 28, 51, .12);
  --shadow-soft: 0 14px 44px rgba(7, 28, 51, .09);
  --radius: 26px;
  --radius-sm: 18px;
  --button-radius: 999px;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: Nexa-Black, Nexa, Oswald, "Arial Black", "Segoe UI Black", system-ui, sans-serif;
  --font-accent: Fraunces, Georgia, "Times New Roman", serif;
}
:root[data-theme="dark"] {
  --bg: #071C33;
  --bg-soft: #0B2949;
  --surface: rgba(255, 255, 255, .07);
  --surface-solid: #0B2949;
  --heading: #F7F1E7;
  --text: #F7F1E7;
  --muted: rgba(247, 241, 231, .70);
  --line: rgba(247, 241, 231, .14);
  --line-strong: rgba(247, 241, 231, .24);
  --header-bg: rgba(7, 28, 51, .88);
  --header-link: rgba(247, 241, 231, .78);
  --shadow: 0 28px 80px rgba(0, 0, 0, .30);
  --shadow-soft: 0 16px 52px rgba(0, 0, 0, .24);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
  transition: background-color .35s ease, color .35s ease;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background:
    radial-gradient(circle at 11% 10%, rgba(199, 137, 43, .20), transparent 28%),
    radial-gradient(circle at 88% 15%, rgba(7, 28, 51, .09), transparent 34%),
    radial-gradient(circle at 54% 100%, rgba(232, 216, 195, .42), transparent 40%),
    var(--bg);
  transition: background .35s ease;
}
:root[data-theme="dark"] body::before {
  background:
    radial-gradient(circle at 12% 8%, rgba(199, 137, 43, .22), transparent 30%),
    radial-gradient(circle at 85% 18%, rgba(247, 241, 231, .08), transparent 34%),
    radial-gradient(circle at 50% 100%, rgba(199, 137, 43, .10), transparent 38%),
    var(--bg);
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: .055;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}
:root[data-theme="dark"] body::after { mix-blend-mode: screen; opacity: .035; }
p, h1, h2, h3, h4, a, span, strong, small, li { overflow-wrap: normal; word-break: normal; hyphens: none; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { cursor: pointer; font: inherit; }
.container { width: min(1180px, calc(100% - 44px)); margin-inline: auto; }
.section { position: relative; padding: 90px 0; }
.ambient-canvas { position: fixed; inset: 0; z-index: -1; opacity: .23; pointer-events: none; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 80;
  background: var(--header-bg);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: background .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.site-header.scrolled { box-shadow: 0 16px 48px rgba(7, 28, 51, .13); }
:root[data-theme="dark"] .site-header.scrolled { box-shadow: 0 16px 54px rgba(0,0,0,.30); }
.nav { height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.brand { display: flex; align-items: center; flex: 0 0 146px; width: 146px; }
.brand .logo { width: 146px; max-height: 44px; object-fit: contain; }
.logo-dark { display: none; }
:root[data-theme="dark"] .logo-light { display: none; }
:root[data-theme="dark"] .logo-dark { display: block; }
.nav-links { display: flex; align-items: center; justify-content: center; gap: 4px; }
.nav-links a {
  color: var(--header-link);
  font-size: 13px;
  font-weight: 850;
  padding: 10px 13px;
  border-radius: 999px;
  transition: color .25s ease, background .25s ease, transform .25s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--heading); background: rgba(199, 137, 43, .15); }
:root[data-theme="dark"] .nav-links a:hover, :root[data-theme="dark"] .nav-links a.active { color: var(--white); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.theme-toggle, .menu-toggle {
  width: 42px; height: 42px; display: grid; place-items: center;
  border: 1px solid var(--line); border-radius: 50%;
  background: rgba(255,255,255,.58); color: var(--heading);
  box-shadow: 0 10px 26px rgba(7, 28, 51, .08);
  transition: background .25s ease, color .25s ease, transform .25s ease, border-color .25s ease;
}
:root[data-theme="dark"] .theme-toggle, :root[data-theme="dark"] .menu-toggle { background: rgba(255,255,255,.06); color: var(--off); box-shadow: none; }
.theme-toggle:hover, .menu-toggle:hover { transform: translateY(-2px); border-color: rgba(199,137,43,.45); }
.theme-toggle { position: relative; overflow: hidden; }
.theme-sun, .theme-moon { position: absolute; line-height: 1; font-size: 17px; transition: transform .28s ease, opacity .28s ease; }
.theme-moon { opacity: 0; transform: translateY(18px) rotate(20deg); }
:root[data-theme="dark"] .theme-sun { opacity: 0; transform: translateY(-18px) rotate(-20deg); }
:root[data-theme="dark"] .theme-moon { opacity: 1; transform: translateY(0) rotate(0); }
.menu-toggle { display: none; padding: 0; }
.menu-toggle span { width: 18px; height: 2px; display: block; margin: 3px auto; border-radius: 999px; background: currentColor; transition: transform .25s ease, opacity .25s ease; }
.menu-toggle.is-open span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

.btn {
  position: relative; isolation: isolate; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 50px; padding: 0 22px; border-radius: var(--button-radius); border: 1px solid transparent;
  font-size: 14px; font-weight: 900; letter-spacing: -.015em; line-height: 1; white-space: nowrap; overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, #09213B, var(--navy));
  border-color: rgba(199, 137, 43, .34);
  box-shadow: 0 18px 44px rgba(7, 28, 51, .20), inset 0 1px 0 rgba(255,255,255,.12);
}
.btn-primary:hover { border-color: rgba(199, 137, 43, .62); box-shadow: 0 22px 54px rgba(7, 28, 51, .25); }
.btn-gold {
  color: var(--navy);
  background: linear-gradient(135deg, #E4B567, var(--gold));
  border-color: rgba(105, 64, 15, .15);
  box-shadow: 0 14px 34px rgba(199, 137, 43, .24), inset 0 1px 0 rgba(255,255,255,.36);
}
.btn-gold:hover { box-shadow: 0 18px 44px rgba(199, 137, 43, .30); }
.btn-secondary {
  color: var(--heading); background: rgba(255, 255, 255, .56); border-color: var(--line);
  box-shadow: 0 14px 34px rgba(7, 28, 51, .06);
}
:root[data-theme="dark"] .btn-secondary { color: var(--off); background: rgba(255,255,255,.07); border-color: var(--line); box-shadow: none; }
.btn-secondary:hover { border-color: rgba(199, 137, 43, .42); background: rgba(255,255,255,.78); }
:root[data-theme="dark"] .btn-secondary:hover { background: rgba(255,255,255,.10); }
.btn.small { min-height: 42px; padding-inline: 15px; font-size: 13px; }
.btn-menu { min-width: 154px; }
.whats-icon { width: 18px; height: 18px; flex: 0 0 18px; color: var(--whats); fill: currentColor; }
.btn-primary .whats-icon { color: #25D366; filter: drop-shadow(0 0 9px rgba(37,211,102,.25)); }
.btn-gold .whats-icon { color: #128C4A; }

.hero { position: relative; padding: 112px 0 70px; }
.hero-shell {
  display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(330px, .92fr); gap: clamp(30px, 4vw, 58px); align-items: center;
  position: relative; padding: clamp(28px, 4.6vw, 62px); border-radius: 34px; overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255,255,255,.76), rgba(247,241,231,.74)),
    radial-gradient(circle at 9% 8%, rgba(199, 137, 43, .18), transparent 32%),
    radial-gradient(circle at 96% 8%, rgba(7, 28, 51, .10), transparent 34%);
  border: 1px solid rgba(255,255,255,.55); box-shadow: var(--shadow);
}
:root[data-theme="dark"] .hero-shell {
  background:
    linear-gradient(135deg, rgba(11, 41, 73, .94), rgba(7, 28, 51, .96)),
    radial-gradient(circle at 10% 8%, rgba(199, 137, 43, .24), transparent 34%);
  border-color: rgba(247,241,231,.13);
}
.hero-shell::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.30), transparent); opacity: .35; transform: translateX(-70%); animation: heroSheen 9s ease-in-out infinite;
}
:root[data-theme="dark"] .hero-shell::before { opacity: .10; }
@keyframes heroSheen { 0%, 30% { transform: translateX(-75%); } 65%, 100% { transform: translateX(75%); } }
.hero-copy, .hero-media { position: relative; z-index: 1; min-width: 0; }
.kicker { display: inline-flex; align-items: center; gap: 10px; color: rgba(7, 28, 51, .66); text-transform: uppercase; letter-spacing: .16em; font-size: 11px; font-weight: 900; }
:root[data-theme="dark"] .kicker { color: rgba(247,241,231,.72); }
.kicker::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 22px rgba(199,137,43,.55); }
.kicker.dark { color: rgba(7, 28, 51, .62); }
:root[data-theme="dark"] .kicker.dark { color: rgba(247,241,231,.64); }
.display-title, h2 { font-family: var(--font-display); text-transform: uppercase; letter-spacing: -.015em; line-height: 1; text-wrap: balance; margin: 0; color: var(--heading); }
.display-title { margin: 18px 0 24px; max-width: 700px; font-size: clamp(42px, 5.5vw, 76px); }
.accent-word {
  display: inline-block; font-family: var(--font-accent); font-style: italic; font-weight: 760; text-transform: none; letter-spacing: -.055em; line-height: .88;
  color: var(--gold); transform: translateY(.02em) rotate(-1deg);
  text-shadow: 0 12px 34px rgba(199, 137, 43, .15);
}
.accent-word.compact { font-size: .74em; margin-inline: .02em; color: var(--gold); }
.accent-word.underline { position: relative; color: var(--heading); }
:root[data-theme="dark"] .accent-word.underline { color: var(--off); }
.accent-word.underline::after { content: ""; position: absolute; left: .04em; right: .04em; bottom: -.08em; height: .08em; border-radius: 999px; background: var(--gold); opacity: .75; }
.accent-inline { font-family: var(--font-accent); font-style: italic; text-transform: none; letter-spacing: -.04em; color: var(--gold); }
.lead, .section-head p, .models-copy p { margin: 0; font-size: clamp(16px, 1.2vw, 18px); line-height: 1.72; }
.hero .lead { max-width: 590px; margin-bottom: 28px; color: var(--muted); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; align-items: center; }
.hero-media { justify-self: end; width: min(480px, 100%); }
.hero-photo-wrap {
  position: relative; width: 100%; aspect-ratio: 4 / 4.9; margin: 0; border-radius: 30px; overflow: hidden;
  background: var(--navy); box-shadow: 0 28px 76px rgba(7,28,51,.20); border: 1px solid var(--line);
}
.hero-photo-wrap::before { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none; background: linear-gradient(to top, rgba(7,28,51,.48), transparent 44%), radial-gradient(circle at 28% 0%, rgba(255,255,255,.22), transparent 35%); }
.hero-photo-wrap::after { content: ""; position: absolute; inset: 14px; z-index: 2; pointer-events: none; border: 1px solid rgba(255,255,255,.24); border-radius: 22px; }
.hero-photo { width: 100%; height: 100%; object-fit: cover; object-position: center 42%; filter: saturate(.98) contrast(1.03) sepia(.06); transform: scale(1.01); }
.media-card { position: absolute; right: -10px; bottom: 34px; z-index: 4; padding: 16px 18px; min-width: 172px; border-radius: 20px; background: rgba(7,28,51,.92); color: var(--off); border: 1px solid rgba(199,137,43,.34); box-shadow: 0 18px 48px rgba(7,28,51,.28); backdrop-filter: blur(12px); }
.media-card span { display: block; color: rgba(247,241,231,.70); font-size: 12px; font-weight: 700; }
.media-card strong { display: block; margin-top: 3px; color: var(--gold-2); font-family: var(--font-display); text-transform: uppercase; letter-spacing: .02em; font-size: 25px; }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 18px; }
.stat-item { padding: 20px 22px; border-radius: 22px; background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-soft); }
.stat-item strong { display: block; color: var(--gold); font-family: var(--font-display); font-size: clamp(23px, 2.1vw, 34px); line-height: .98; text-transform: uppercase; letter-spacing: -.02em; }
.stat-item span { display: block; margin-top: 6px; color: var(--muted); font-size: 13px; line-height: 1.38; }

h2 { color: var(--heading); font-size: clamp(32px, 4.1vw, 58px); }
h3 { margin-top: 0; color: var(--heading); }
.split-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 42px; align-items: center; }
.text-panel { padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow-soft); backdrop-filter: blur(12px); }
.text-panel p { margin: 0; color: var(--text); font-size: clamp(17px, 1.3vw, 20px); line-height: 1.75; }
.section-head { max-width: 820px; margin-bottom: 42px; }
.section-head p, .models-copy p { max-width: 690px; color: var(--muted); margin-top: 16px; }
.cards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.service-card, .process-step, .trust-card { border: 1px solid var(--line); background: var(--surface); box-shadow: var(--shadow-soft); backdrop-filter: blur(12px); }
.service-card { min-height: 286px; padding: 27px; border-radius: var(--radius); transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; }
.service-card:hover { transform: translateY(-7px); border-color: rgba(199, 137, 43, .42); box-shadow: var(--shadow); }
.card-icon, .process-step > span { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 30px; border-radius: 50%; color: var(--gold); font-weight: 900; background: rgba(199, 137, 43, .12); border: 1px solid rgba(199, 137, 43, .26); }
.service-card h3, .process-step h3 { font-size: 20px; line-height: 1.18; letter-spacing: -.03em; margin-bottom: 14px; }
.service-card p, .process-step p, .trust-card span { color: var(--muted); line-height: 1.64; margin: 0; }
.models { background: linear-gradient(135deg, rgba(232, 216, 195, .46), rgba(247, 241, 231, .45)); }
:root[data-theme="dark"] .models { background: linear-gradient(135deg, rgba(11, 41, 73, .70), rgba(7, 28, 51, .45)); }
.models-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 50px; align-items: center; }
.models-copy .btn { margin-top: 24px; }
.model-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.model-list span { position: relative; min-height: 74px; display: flex; align-items: center; padding: 18px 20px 18px 48px; border-radius: 22px; background: var(--surface); border: 1px solid var(--line); color: var(--heading); font-weight: 850; box-shadow: var(--shadow-soft); }
.model-list span::before { content: ""; position: absolute; left: 21px; width: 10px; height: 10px; border-radius: 999px; background: var(--gold); box-shadow: 0 0 20px rgba(199,137,43,.55); }
.gallery-section { background: var(--sand); }
:root[data-theme="dark"] .gallery-section { background: #0B2949; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 250px; gap: 18px; }
.gallery-item { position: relative; margin: 0; min-height: 0; border-radius: var(--radius); overflow: hidden; background: var(--navy); box-shadow: 0 18px 48px rgba(7, 28, 51, .13); border: 1px solid rgba(255, 255, 255, .44); }
.gallery-item.tall { grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.98) contrast(1.02) sepia(.07); transition: transform .45s ease, filter .45s ease; }
.gallery-item:hover img { transform: scale(1.045); filter: saturate(1.04) contrast(1.04) sepia(.08); }
.process { background: rgba(255,255,255,.42); }
:root[data-theme="dark"] .process { background: rgba(255,255,255,.03); }
.process-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.process-step { padding: 26px; border-radius: var(--radius); }
.process-step > span { margin-bottom: 24px; }
.quote-band { position: relative; padding: 86px 0; overflow: hidden; background: var(--navy); color: var(--white); text-align: center; }
.quote-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 20% 8%, rgba(199, 137, 43, .28), transparent 32%), radial-gradient(circle at 86% 80%, rgba(247, 241, 231, .09), transparent 36%); }
.quote-band .container { position: relative; z-index: 1; }
.quote-band p { max-width: 900px; margin: 0 auto 16px; color: var(--white); font-family: var(--font-accent); font-style: italic; font-weight: 760; font-size: clamp(34px, 4.8vw, 72px); line-height: 1.05; letter-spacing: -.055em; }
.quote-band span { color: var(--gold-2); font-weight: 900; letter-spacing: .16em; text-transform: uppercase; font-size: 12px; }
.trust { background: transparent; }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.trust-card { min-height: 190px; padding: 30px; border-radius: var(--radius); }
.trust-card strong { display: block; margin-bottom: 18px; color: var(--gold); font-family: var(--font-display); text-transform: uppercase; font-size: clamp(28px, 3vw, 44px); line-height: .96; }
.final-cta { padding: 74px 0 92px; background: transparent; }
.final-panel { display: grid; grid-template-columns: 1fr auto; gap: 38px; align-items: center; padding: clamp(30px, 4.5vw, 58px); border-radius: 34px; background: linear-gradient(135deg, rgba(7, 28, 51, .98), rgba(11, 41, 73, .95)), radial-gradient(circle at 12% 7%, rgba(199, 137, 43, .28), transparent 36%); color: var(--white); border: 1px solid rgba(247, 241, 231, .16); box-shadow: 0 34px 100px rgba(0,0,0,.25); }
.final-panel h2 { max-width: 760px; margin-top: 16px; color: var(--white); }
.final-panel p { max-width: 620px; margin: 18px 0 0; color: rgba(247, 241, 231, .76); font-size: 18px; line-height: 1.68; }
.site-footer { background: var(--navy); color: var(--off); padding: 60px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.35fr .8fr .8fr; gap: 38px; padding-bottom: 38px; border-bottom: 1px solid rgba(247, 241, 231, .14); }
.footer-logo { width: 185px; max-height: 54px; object-fit: contain; margin-bottom: 18px; }
.site-footer p { max-width: 410px; margin: 0; color: rgba(247, 241, 231, .72); line-height: 1.7; }
.footer-info { display: grid; align-content: start; gap: 9px; color: rgba(247, 241, 231, .72); }
.footer-info strong { color: var(--gold-2); text-transform: uppercase; letter-spacing: .10em; font-size: 12px; }
.footer-info a:hover, .footer-bottom a:hover { color: var(--gold-2); }
.footer-bottom { display: flex; justify-content: space-between; gap: 18px; padding-top: 22px; color: rgba(247, 241, 231, .62); font-size: 13px; }
.floating-whatsapp { position: fixed; right: 22px; bottom: 22px; z-index: 90; width: 58px; height: 58px; display: grid; place-items: center; border-radius: 50%; background: var(--white); border: 1px solid rgba(7, 28, 51, .12); box-shadow: 0 18px 42px rgba(7, 28, 51, .22); transition: transform .25s ease, box-shadow .25s ease; }
.floating-whatsapp:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 22px 54px rgba(7, 28, 51, .28); }
.floating-whatsapp .whats-icon { width: 30px; height: 30px; flex-basis: 30px; color: var(--whats); }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }

@media (max-width: 1120px) {
  .nav-links { display: none; }
  .menu-toggle { display: grid; }
  .nav-links { position: absolute; top: 82px; left: 18px; right: 18px; padding: 12px; background: var(--header-bg); border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow); flex-direction: column; align-items: stretch; backdrop-filter: blur(18px); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 15px; }
  .hero-shell { grid-template-columns: 1fr; }
  .hero-media { justify-self: start; width: min(560px, 100%); }
  .hero-stats { grid-template-columns: repeat(3, 1fr); }
  .cards-grid, .process-list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 820px) {
  .container { width: min(100% - 28px, 1180px); }
  .section { padding: 68px 0; }
  .nav { height: 70px; }
  .brand { width: 130px; flex-basis: 130px; }
  .brand .logo { width: 130px; max-height: 39px; }
  .btn-menu { display: none; }
  .hero { padding: 96px 0 54px; }
  .hero-shell { padding: 24px; border-radius: 28px; }
  .display-title { font-size: clamp(39px, 10.8vw, 70px); line-height: 1; }
  .hero-stats { grid-template-columns: 1fr; gap: 10px; }
  .media-card { right: 14px; bottom: 16px; min-width: 150px; }
  .split-grid, .models-grid, .final-panel, .footer-grid { grid-template-columns: 1fr; }
  .cards-grid, .process-list, .trust-grid { grid-template-columns: 1fr; }
  .model-list { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 270px; }
  .gallery-item.tall { grid-row: span 1; min-height: 360px; }
  .final-panel .btn { width: 100%; }
  .footer-bottom { flex-direction: column; }
}
@media (max-width: 520px) {
  .container { width: min(100% - 24px, 1180px); }
  .section { padding: 58px 0; }
  .theme-toggle, .menu-toggle { width: 40px; height: 40px; }
  .hero-shell { padding: 20px; border-radius: 24px; }
  .display-title { font-size: clamp(37px, 11.8vw, 56px); letter-spacing: -.01em; }
  .accent-word { letter-spacing: -.06em; }
  .hero .lead { font-size: 16px; line-height: 1.62; }
  .hero-actions .btn { width: 100%; white-space: normal; min-height: 54px; text-align: center; }
  .hero-photo-wrap { border-radius: 22px; }
  h2 { font-size: clamp(30px, 10vw, 46px); line-height: 1.02; }
  .text-panel, .service-card, .process-step, .trust-card { padding: 22px; border-radius: 22px; }
  .floating-whatsapp { right: 16px; bottom: 16px; width: 54px; height: 54px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}

/* Revisão solicitada — hero, botões, WhatsApp e tema claro principal */
:root {
  --gold: #BF8128;
  --gold-2: #D9A557;
  --bg: #F7F1E7;
  --bg-soft: #EFE2CF;
  --surface: rgba(255, 255, 255, .82);
  --surface-solid: #FFFFFF;
}

.site-header { background: rgba(247, 241, 231, .92); }
:root[data-theme="dark"] .site-header { background: rgba(7, 28, 51, .90); }

.nav-links a.active {
  color: var(--navy);
  background: rgba(199, 137, 43, .18);
  box-shadow: inset 0 0 0 1px rgba(199, 137, 43, .18);
}
:root[data-theme="dark"] .nav-links a.active {
  color: var(--white);
  background: rgba(199, 137, 43, .18);
}

.btn { gap: 9px; }
.whats-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  fill: currentColor;
  color: currentColor;
}
.btn-primary .whats-icon,
.btn-gold .whats-icon,
.btn-nav .whats-icon {
  color: currentColor;
  filter: none;
}

.btn-primary {
  color: var(--off);
  background: linear-gradient(135deg, #071C33, #0A2745);
  border-color: rgba(199, 137, 43, .40);
  box-shadow: 0 16px 36px rgba(7, 28, 51, .18), inset 0 1px 0 rgba(255,255,255,.12);
}

.btn-gold {
  color: var(--navy);
  background: linear-gradient(135deg, #E6BC72, #C7892B);
  border-color: rgba(7, 28, 51, .14);
  box-shadow: 0 14px 30px rgba(199, 137, 43, .24), inset 0 1px 0 rgba(255,255,255,.38);
}

.btn-nav {
  min-width: 148px;
  min-height: 40px;
  padding-inline: 16px;
  color: var(--off);
  background: linear-gradient(135deg, #071C33, #102E4E);
  border: 1px solid rgba(199, 137, 43, .44);
  box-shadow: 0 12px 28px rgba(7, 28, 51, .13), inset 0 1px 0 rgba(255,255,255,.12);
}
.btn-nav:hover {
  color: #FFFFFF;
  border-color: rgba(199, 137, 43, .72);
  box-shadow: 0 16px 34px rgba(7, 28, 51, .18), inset 0 1px 0 rgba(255,255,255,.14);
}
:root[data-theme="dark"] .btn-nav {
  color: var(--navy);
  background: linear-gradient(135deg, #E3B66E, #C7892B);
  border-color: rgba(255,255,255,.10);
}

.hero {
  padding: 112px 0 66px;
}
.hero-shell {
  grid-template-columns: minmax(0, 1fr) minmax(330px, .82fr);
  gap: clamp(32px, 4vw, 54px);
  align-items: center;
  padding: clamp(30px, 4.2vw, 54px);
  background:
    linear-gradient(135deg, rgba(255,255,255,.84), rgba(247,241,231,.86)),
    radial-gradient(circle at 10% 12%, rgba(199, 137, 43, .16), transparent 30%),
    radial-gradient(circle at 95% 8%, rgba(7, 28, 51, .08), transparent 35%);
  border: 1px solid rgba(7, 28, 51, .10);
  box-shadow: 0 30px 90px rgba(7, 28, 51, .11);
  overflow: hidden;
}
:root[data-theme="dark"] .hero-shell {
  background:
    linear-gradient(135deg, rgba(11, 41, 73, .94), rgba(7, 28, 51, .96)),
    radial-gradient(circle at 10% 8%, rgba(199, 137, 43, .20), transparent 34%);
}
.hero-shell::before { opacity: .18; }
.hero-copy { max-width: 560px; }
.display-title {
  max-width: 560px;
  margin: 18px 0 22px;
  font-size: clamp(40px, 4.2vw, 56px);
  line-height: .96;
  letter-spacing: -.012em;
}
.title-line { display: block; }
.accent-word {
  line-height: .88;
  color: #C7892B;
}
.accent-word.compact {
  display: inline-block;
  font-size: .72em;
  margin-right: .06em;
  transform: translateY(.03em) rotate(-3deg);
}
.accent-word.underline { display: inline-block; color: var(--heading); }
:root[data-theme="dark"] .accent-word.underline { color: var(--off); }

.hero .lead {
  max-width: 520px;
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.66;
}
.hero-media {
  width: min(430px, 100%);
  align-self: center;
}
.hero-photo-wrap {
  aspect-ratio: 4 / 4.75;
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(7, 28, 51, .18);
}
.media-card {
  right: 14px;
  bottom: 16px;
  min-width: 156px;
  padding: 13px 15px;
  border-radius: 18px;
}
.media-card strong { font-size: 22px; }

.floating-whatsapp {
  right: 22px;
  bottom: 22px;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #25D366;
  color: #FFFFFF;
  border: 4px solid #FFFFFF;
  box-shadow: 0 18px 44px rgba(7, 28, 51, .22), 0 10px 26px rgba(37, 211, 102, .25);
}
.floating-whatsapp .whats-icon {
  width: 33px;
  height: 33px;
  flex: 0 0 33px;
  color: #FFFFFF;
}
.floating-whatsapp:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 22px 56px rgba(7, 28, 51, .26), 0 12px 30px rgba(37, 211, 102, .30);
}

@media (min-width: 1121px) and (max-width: 1280px) {
  .hero-shell { grid-template-columns: minmax(0, 1fr) minmax(320px, .78fr); gap: 42px; }
  .display-title { max-width: 520px; font-size: clamp(40px, 4vw, 52px); }
  .hero-media { width: min(420px, 100%); }
}

@media (max-width: 1120px) {
  .hero-shell { grid-template-columns: 1fr; }
  .hero-copy { max-width: 760px; }
  .display-title { max-width: 760px; }
  .hero-media { justify-self: start; width: min(520px, 100%); }
}

@media (max-width: 820px) {
  .hero { padding: 96px 0 54px; }
  .display-title { font-size: clamp(36px, 9.8vw, 58px); max-width: 100%; }
  .hero-media { width: 100%; }
}

@media (max-width: 520px) {
  .display-title { font-size: clamp(34px, 10.6vw, 48px); line-height: .98; }
  .hero-shell { padding: 20px; }
  .floating-whatsapp { right: 16px; bottom: 16px; width: 58px; height: 58px; border-width: 3px; }
  .floating-whatsapp .whats-icon { width: 30px; height: 30px; flex-basis: 30px; }
}


/* Correção final — remove card sobre a foto e padroniza WhatsApp */
.media-card { display: none !important; }

.wa-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  color: currentColor;
}
.wa-icon svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: currentColor;
}
.btn .wa-icon {
  transform: translateY(.5px);
}
.btn-primary .wa-icon,
.btn-gold .wa-icon,
.btn-nav .wa-icon {
  color: currentColor;
  filter: none;
}

/* Botões mais limpos: sem verde nos CTAs dourados/azuis */
.btn-primary {
  color: var(--off);
  background: linear-gradient(135deg, #071C33 0%, #0F3152 100%);
  border-color: rgba(199, 137, 43, .45);
}
.btn-gold {
  color: var(--navy);
  background: linear-gradient(135deg, #E3B066 0%, #C7892B 100%);
  border-color: rgba(7, 28, 51, .16);
}
.btn-nav {
  min-width: 148px;
  min-height: 40px;
  padding-inline: 16px;
  color: #F7F1E7;
  background: linear-gradient(135deg, #071C33 0%, #102E4E 100%);
  border-color: rgba(199, 137, 43, .50);
}
:root[data-theme="dark"] .btn-nav {
  color: #071C33;
  background: linear-gradient(135deg, #E3B066 0%, #C7892B 100%);
  border-color: rgba(247, 241, 231, .16);
}

/* Botão fixo do WhatsApp: ícone centralizado e proporcional */
.floating-whatsapp {
  width: 62px !important;
  height: 62px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  border-radius: 999px !important;
  background: #25D366 !important;
  color: #FFFFFF !important;
  border: 4px solid #FFFFFF !important;
  box-shadow: 0 18px 44px rgba(7, 28, 51, .22), 0 10px 26px rgba(37, 211, 102, .24) !important;
  overflow: visible !important;
}
.floating-whatsapp .wa-icon {
  width: 32px !important;
  height: 32px !important;
  flex: 0 0 32px !important;
  color: #FFFFFF !important;
}
.floating-whatsapp .wa-icon svg {
  width: 32px !important;
  height: 32px !important;
}

/* Força o hero claro como padrão visual na versão light */
:root[data-theme="light"] .hero-shell {
  background:
    linear-gradient(135deg, rgba(255,255,255,.88), rgba(247,241,231,.92)),
    radial-gradient(circle at 10% 12%, rgba(199, 137, 43, .14), transparent 30%),
    radial-gradient(circle at 95% 8%, rgba(7, 28, 51, .07), transparent 35%);
}

@media (max-width: 520px) {
  .floating-whatsapp {
    right: 16px !important;
    bottom: 16px !important;
    width: 56px !important;
    height: 56px !important;
    border-width: 3px !important;
  }
  .floating-whatsapp .wa-icon,
  .floating-whatsapp .wa-icon svg {
    width: 29px !important;
    height: 29px !important;
    flex-basis: 29px !important;
  }
}

/* Correção mobile — título do hero sem corte lateral */
@media (max-width: 520px) {
  .hero-copy,
  .display-title,
  .display-title .title-line,
  .display-title .accent-word {
    max-width: 100% !important;
  }

  .display-title {
    width: 100% !important;
    font-size: clamp(27px, 8.2vw, 34px) !important;
    line-height: 1.04 !important;
    letter-spacing: -.025em !important;
  }

  .display-title .title-line {
    display: block !important;
  }

  .display-title > .accent-word:not(.compact) {
    font-size: 1.16em !important;
  }

  .display-title .accent-word.compact {
    font-size: .78em !important;
    margin-right: .08em !important;
  }

  .hero-shell {
    overflow: hidden !important;
  }
}

@media (max-width: 370px) {
  .display-title {
    font-size: clamp(25px, 7.8vw, 30px) !important;
  }

  .hero-shell {
    padding-inline: 18px !important;
  }
}

/* Correção mobile — espaçamento lateral e galeria sem sobreposição */
@media (max-width: 820px) {
  .container {
    width: min(100% - 36px, 1180px) !important;
  }

  .gallery-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 18px !important;
    grid-auto-rows: initial !important;
  }

  .gallery-item,
  .gallery-item.tall {
    width: 100% !important;
    min-height: 0 !important;
    height: auto !important;
    aspect-ratio: 4 / 3.15 !important;
    grid-row: auto !important;
    border-radius: 22px !important;
  }

  .gallery-item img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  .model-list {
    gap: 14px !important;
  }

  .model-list span {
    min-height: 66px !important;
    padding: 16px 18px 16px 44px !important;
    border-radius: 20px !important;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 40px, 1180px) !important;
  }

  .hero-shell,
  .text-panel,
  .service-card,
  .process-step,
  .trust-card,
  .final-panel,
  .stat-item,
  .model-list span {
    border-radius: 20px !important;
  }

  .section-head {
    margin-bottom: 30px !important;
  }

  .gallery-grid {
    gap: 20px !important;
  }

  .gallery-item,
  .gallery-item.tall {
    aspect-ratio: 4 / 3.05 !important;
    border-radius: 20px !important;
  }

  .models-grid,
  .split-grid {
    gap: 30px !important;
  }
}

@media (max-width: 380px) {
  .container {
    width: min(100% - 32px, 1180px) !important;
  }
}

/* Correção mobile — respiro lateral geral e títulos sem corte */
@media (max-width: 640px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .container {
    width: calc(100% - 56px) !important;
    max-width: 1180px !important;
  }

  .section {
    padding: 56px 0 !important;
  }

  .section-head,
  .models-copy,
  .section-copy,
  .text-panel,
  .hero-copy,
  .final-panel > div {
    min-width: 0 !important;
    max-width: 100% !important;
  }

  h2,
  .section-head h2,
  .models-copy h2,
  .section-copy h2,
  .final-panel h2 {
    max-width: 100% !important;
    font-size: clamp(27px, 7.35vw, 32px) !important;
    line-height: 1.08 !important;
    letter-spacing: -.018em !important;
    text-wrap: balance !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
  }

  .section-head p,
  .models-copy p,
  .text-panel p,
  .process-step p,
  .service-card p,
  .trust-card span,
  .final-panel p {
    font-size: 15px !important;
    line-height: 1.62 !important;
  }

  .kicker {
    max-width: 100% !important;
    font-size: 10px !important;
    letter-spacing: .13em !important;
    line-height: 1.3 !important;
  }

  .cards-grid,
  .process-list,
  .trust-grid,
  .model-list,
  .gallery-grid,
  .hero-stats {
    width: 100% !important;
  }

  .service-card,
  .process-step,
  .trust-card,
  .text-panel,
  .stat-item,
  .model-list span,
  .final-panel {
    width: 100% !important;
    max-width: 100% !important;
  }

  .model-list span {
    min-height: 62px !important;
    padding: 16px 18px 16px 42px !important;
    font-size: 14px !important;
  }

  .model-list span::before {
    left: 18px !important;
    width: 8px !important;
    height: 8px !important;
  }
}

@media (max-width: 430px) {
  .container {
    width: calc(100% - 58px) !important;
  }

  .hero-shell {
    padding: 19px !important;
  }

  .display-title {
    font-size: clamp(26px, 7.9vw, 31px) !important;
    line-height: 1.05 !important;
  }

  h2,
  .section-head h2,
  .models-copy h2,
  .section-copy h2,
  .final-panel h2 {
    font-size: clamp(25px, 7.1vw, 30px) !important;
  }

  .section-head {
    margin-bottom: 28px !important;
  }

  .models-grid,
  .split-grid,
  .cards-grid,
  .process-list,
  .trust-grid {
    gap: 24px !important;
  }
}

@media (max-width: 360px) {
  .container {
    width: calc(100% - 40px) !important;
  }

  h2,
  .section-head h2,
  .models-copy h2,
  .section-copy h2,
  .final-panel h2 {
    font-size: 25px !important;
  }
}


/* Ajuste final CTA mobile */
.final-panel .kicker {
  color: rgba(247, 241, 231, .88);
}
.final-panel .kicker::before {
  box-shadow: none;
}

@media (max-width: 820px) {
  .final-panel {
    gap: 24px !important;
    align-items: stretch !important;
  }

  .final-panel .kicker {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    font-size: 12px !important;
    letter-spacing: .12em !important;
    line-height: 1.35 !important;
    color: rgba(247, 241, 231, .92) !important;
    opacity: 1 !important;
  }

  .final-panel h2 {
    margin-top: 14px !important;
  }

  .final-panel .btn {
    min-height: 52px !important;
    padding: 0 20px !important;
    font-size: 15px !important;
    gap: 10px !important;
  }
}

@media (max-width: 520px) {
  .final-panel {
    padding: 28px 22px !important;
    border-radius: 26px !important;
  }

  .final-panel .kicker {
    font-size: 11px !important;
    letter-spacing: .10em !important;
    color: rgba(247, 241, 231, .95) !important;
  }

  .final-panel h2 {
    font-size: clamp(25px, 8.2vw, 34px) !important;
    line-height: 1.02 !important;
    max-width: 100% !important;
  }

  .final-panel p {
    font-size: 15px !important;
    line-height: 1.58 !important;
    margin-top: 14px !important;
  }

  .final-panel .btn {
    width: 100% !important;
    min-height: 54px !important;
    padding: 0 18px !important;
    font-size: 15px !important;
    white-space: nowrap !important;
  }

  .final-panel .btn .wa-icon {
    width: 17px !important;
    height: 17px !important;
    flex: 0 0 17px !important;
  }
}

@media (max-width: 380px) {
  .final-panel {
    padding: 26px 20px !important;
  }

  .final-panel .btn {
    font-size: 14px !important;
  }
}


/* Ajuste hero: banner grande ao fundo + título mais limpo */
.hero-shell.hero-banner {
  display: flex !important;
  align-items: flex-end !important;
  min-height: clamp(460px, 62vw, 640px);
  padding: clamp(34px, 4.4vw, 58px) !important;
  border-radius: 34px !important;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(7, 28, 51, .90) 0%, rgba(7, 28, 51, .76) 38%, rgba(7, 28, 51, .48) 66%, rgba(7, 28, 51, .30) 100%),
    linear-gradient(180deg, rgba(7, 28, 51, .08), rgba(7, 28, 51, .12)),
    url('../img/hero.webp') center 34% / cover no-repeat !important;
  border: 1px solid rgba(247, 241, 231, .14) !important;
  box-shadow: 0 30px 90px rgba(7, 28, 51, .20) !important;
}

:root[data-theme="dark"] .hero-shell.hero-banner {
  background:
    linear-gradient(90deg, rgba(7, 28, 51, .92) 0%, rgba(7, 28, 51, .82) 40%, rgba(7, 28, 51, .56) 68%, rgba(7, 28, 51, .36) 100%),
    url('../img/hero.webp') center 34% / cover no-repeat !important;
}

.hero-shell.hero-banner::before {
  display: none !important;
}

.hero-shell.hero-banner .hero-copy {
  position: relative;
  z-index: 1;
  max-width: min(690px, 100%);
}

.hero-shell.hero-banner .kicker {
  color: rgba(247, 241, 231, .92) !important;
}

.hero-shell.hero-banner .display-title {
  margin: 18px 0 18px !important;
  max-width: 680px !important;
  color: #FFFFFF !important;
  font-size: clamp(42px, 5.4vw, 74px) !important;
  line-height: .94 !important;
  letter-spacing: -.02em !important;
  text-transform: none !important;
  text-wrap: balance;
}

.hero-title-clean .accent-word {
  display: inline-block;
  margin-bottom: .08em;
  color: #E4B567 !important;
  text-shadow: 0 16px 40px rgba(7, 28, 51, .20) !important;
}

.hero-title-clean .title-line {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -.02em;
  color: #FFFFFF;
}

.hero-shell.hero-banner .lead {
  max-width: 560px !important;
  color: rgba(247, 241, 231, .90) !important;
  font-size: clamp(16px, 1.2vw, 18px) !important;
  line-height: 1.68 !important;
  margin-bottom: 28px !important;
}

.hero-shell.hero-banner .hero-actions {
  gap: 12px !important;
}

.hero-shell.hero-banner .btn-secondary {
  color: #FFFFFF;
  background: rgba(255, 255, 255, .10);
  border-color: rgba(247, 241, 231, .18);
  backdrop-filter: blur(10px);
}

.hero-shell.hero-banner .btn-secondary:hover {
  background: rgba(255, 255, 255, .16);
  border-color: rgba(247, 241, 231, .28);
}

@media (max-width: 1120px) {
  .hero-shell.hero-banner {
    min-height: 540px;
    background-position: center 30% !important;
  }
}

@media (max-width: 820px) {
  .hero-shell.hero-banner {
    min-height: 520px !important;
    align-items: flex-end !important;
    padding: 28px 24px !important;
    border-radius: 28px !important;
    background:
      linear-gradient(180deg, rgba(7, 28, 51, .34) 0%, rgba(7, 28, 51, .64) 40%, rgba(7, 28, 51, .90) 100%),
      url('../img/hero.webp') center 28% / cover no-repeat !important;
  }

  .hero-shell.hero-banner .display-title {
    font-size: clamp(34px, 8.8vw, 56px) !important;
    line-height: .96 !important;
    max-width: 100% !important;
  }

  .hero-shell.hero-banner .lead {
    max-width: 100% !important;
  }
}

@media (max-width: 520px) {
  .hero-shell.hero-banner {
    min-height: 500px !important;
    padding: 24px 20px !important;
    border-radius: 24px !important;
    background:
      linear-gradient(180deg, rgba(7, 28, 51, .24) 0%, rgba(7, 28, 51, .60) 38%, rgba(7, 28, 51, .92) 100%),
      url('../img/hero.webp') center 26% / cover no-repeat !important;
  }

  .hero-shell.hero-banner .kicker {
    font-size: 10px !important;
    letter-spacing: .12em !important;
  }

  .hero-shell.hero-banner .display-title {
    font-size: clamp(30px, 9.4vw, 42px) !important;
    line-height: .97 !important;
    margin: 16px 0 16px !important;
  }

  .hero-title-clean .accent-word {
    margin-bottom: .12em;
  }

  .hero-shell.hero-banner .lead {
    font-size: 15px !important;
    line-height: 1.58 !important;
    margin-bottom: 22px !important;
  }

  .hero-shell.hero-banner .hero-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .hero-shell.hero-banner .hero-actions .btn {
    width: 100%;
  }
}

@media (max-width: 380px) {
  .hero-shell.hero-banner {
    min-height: 470px !important;
    padding: 22px 18px !important;
  }

  .hero-shell.hero-banner .display-title {
    font-size: 28px !important;
  }
}


/* Hero fullscreen */
.hero {
  min-height: 100svh !important;
  padding: 92px 0 66px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
}

.hero-shell.hero-banner {
  min-height: calc(100svh - 158px) !important;
  width: 100%;
  align-items: flex-end !important;
}

.hero-stats {
  margin-top: 18px !important;
}

@media (max-width: 1120px) {
  .hero {
    min-height: 100svh !important;
    padding: 88px 0 56px !important;
  }

  .hero-shell.hero-banner {
    min-height: calc(100svh - 150px) !important;
  }
}

@media (max-width: 820px) {
  .hero {
    min-height: 100svh !important;
    padding: 82px 0 48px !important;
  }

  .hero-shell.hero-banner {
    min-height: calc(100svh - 138px) !important;
  }
}

@media (max-width: 520px) {
  .hero {
    min-height: 100svh !important;
    padding: 78px 0 40px !important;
  }

  .hero-shell.hero-banner {
    min-height: calc(100svh - 126px) !important;
  }
}


/* Ajuste solicitado: hero igual referência Camisetas para Pescaria — banner full bleed */
.hero {
  position: relative !important;
  min-height: 100svh !important;
  width: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  padding: 118px 0 56px !important;
  overflow: hidden !important;
  background:
    linear-gradient(90deg, rgba(7, 28, 51, .94) 0%, rgba(7, 28, 51, .82) 37%, rgba(7, 28, 51, .48) 67%, rgba(7, 28, 51, .20) 100%),
    linear-gradient(180deg, rgba(7, 28, 51, .18) 0%, rgba(7, 28, 51, .60) 100%),
    url('../img/hero.webp') center 34% / cover no-repeat !important;
}

:root[data-theme="dark"] .hero {
  background:
    linear-gradient(90deg, rgba(7, 28, 51, .96) 0%, rgba(7, 28, 51, .86) 38%, rgba(7, 28, 51, .56) 70%, rgba(7, 28, 51, .26) 100%),
    linear-gradient(180deg, rgba(7, 28, 51, .20) 0%, rgba(7, 28, 51, .72) 100%),
    url('../img/hero.webp') center 34% / cover no-repeat !important;
}

.hero::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  pointer-events: none !important;
  z-index: 0 !important;
  background:
    radial-gradient(circle at 78% 18%, rgba(255,255,255,.14), transparent 18%),
    linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px) !important;
  background-size: auto, 100% 130px, 130px 100% !important;
  opacity: .7 !important;
}

.hero::after {
  content: "" !important;
  position: absolute !important;
  inset: auto 0 0 !important;
  height: 32% !important;
  z-index: 0 !important;
  pointer-events: none !important;
  background: linear-gradient(0deg, rgba(7, 28, 51, .62), transparent) !important;
}

.hero-shell.hero-banner {
  position: relative !important;
  z-index: 1 !important;
  width: min(1180px, calc(100% - 44px)) !important;
  min-height: auto !important;
  display: block !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
  overflow: visible !important;
}

.hero-shell.hero-banner::before,
.hero-shell.hero-banner::after {
  display: none !important;
}

.hero-shell.hero-banner .hero-copy {
  max-width: 760px !important;
}

.hero-shell.hero-banner .display-title {
  max-width: 760px !important;
  font-size: clamp(52px, 5.6vw, 92px) !important;
  line-height: .94 !important;
  margin: 20px 0 24px !important;
  color: #FFFFFF !important;
  text-shadow: 0 18px 56px rgba(0, 0, 0, .28) !important;
}

.hero-title-clean .accent-word {
  color: #E0A13E !important;
}

.hero-shell.hero-banner .lead {
  max-width: 680px !important;
  color: rgba(247, 241, 231, .88) !important;
  font-size: clamp(17px, 1.25vw, 21px) !important;
  line-height: 1.58 !important;
  text-shadow: 0 10px 30px rgba(0,0,0,.25) !important;
}

.hero-shell.hero-banner .kicker {
  padding: 9px 16px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(199, 137, 43, .55) !important;
  background: rgba(7, 28, 51, .38) !important;
  color: #F7F1E7 !important;
  backdrop-filter: blur(10px) !important;
}

.hero-shell.hero-banner .kicker::before {
  width: 8px !important;
  height: 8px !important;
}

.hero-shell.hero-banner .hero-actions {
  margin-top: 28px !important;
}

.hero-stats {
  position: relative !important;
  z-index: 1 !important;
  width: min(1180px, calc(100% - 44px)) !important;
  margin: 30px auto 0 !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 12px !important;
}

.hero-stats .stat-item {
  background: rgba(7, 28, 51, .42) !important;
  border-color: rgba(247, 241, 231, .14) !important;
  box-shadow: none !important;
  backdrop-filter: blur(12px) !important;
}

.hero-stats .stat-item strong {
  color: #E4B567 !important;
}

.hero-stats .stat-item span {
  color: rgba(247, 241, 231, .76) !important;
}

.site-header {
  background: transparent !important;
  border-bottom: 0 !important;
  box-shadow: none !important;
}

.site-header.is-scrolled {
  background: rgba(247, 241, 231, .92) !important;
  border-bottom: 1px solid var(--line) !important;
  box-shadow: 0 12px 38px rgba(7, 28, 51, .08) !important;
}

:root[data-theme="dark"] .site-header.is-scrolled {
  background: rgba(7, 28, 51, .90) !important;
  border-bottom-color: rgba(247, 241, 231, .10) !important;
}

.site-header:not(.is-scrolled) .nav {
  margin-top: 14px !important;
  padding-inline: 14px !important;
  height: 72px !important;
  border: 1px solid rgba(247, 241, 231, .18) !important;
  border-radius: 999px !important;
  background: rgba(7, 28, 51, .34) !important;
  backdrop-filter: blur(18px) !important;
  box-shadow: 0 20px 70px rgba(7, 28, 51, .18) !important;
}

.site-header:not(.is-scrolled) .nav-links a {
  color: rgba(247, 241, 231, .88) !important;
}

.site-header:not(.is-scrolled) .nav-links a:hover,
.site-header:not(.is-scrolled) .nav-links a.active {
  color: #FFFFFF !important;
  background: rgba(199, 137, 43, .18) !important;
}

.site-header:not(.is-scrolled) .theme-toggle,
.site-header:not(.is-scrolled) .menu-toggle {
  background: rgba(255,255,255,.10) !important;
  color: #FFFFFF !important;
  border-color: rgba(247, 241, 231, .20) !important;
}

/* Garante que a logo clara/negativa apareça sobre o banner */
.site-header:not(.is-scrolled) .logo-light {
  display: none !important;
}

.site-header:not(.is-scrolled) .logo-dark {
  display: block !important;
}

@media (max-width: 1120px) {
  .hero {
    padding: 110px 0 46px !important;
    background:
      linear-gradient(90deg, rgba(7, 28, 51, .94) 0%, rgba(7, 28, 51, .80) 50%, rgba(7, 28, 51, .46) 100%),
      linear-gradient(180deg, rgba(7, 28, 51, .12) 0%, rgba(7, 28, 51, .62) 100%),
      url('../img/hero.webp') center 30% / cover no-repeat !important;
  }

  .hero-shell.hero-banner .display-title {
    font-size: clamp(44px, 8vw, 72px) !important;
  }

  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 820px) {
  .hero {
    min-height: 100svh !important;
    justify-content: flex-end !important;
    padding: 112px 0 34px !important;
    background:
      linear-gradient(180deg, rgba(7, 28, 51, .18) 0%, rgba(7, 28, 51, .42) 30%, rgba(7, 28, 51, .92) 100%),
      url('../img/hero.webp') center top / cover no-repeat !important;
  }

  .site-header:not(.is-scrolled) .nav {
    width: min(100% - 28px, 1180px) !important;
    margin-top: 10px !important;
    height: 64px !important;
    padding-inline: 10px !important;
  }

  .hero-shell.hero-banner {
    width: min(100% - 40px, 1180px) !important;
  }

  .hero-shell.hero-banner .hero-copy {
    max-width: 100% !important;
  }

  .hero-shell.hero-banner .display-title {
    font-size: clamp(34px, 9.2vw, 54px) !important;
    line-height: .98 !important;
  }

  .hero-stats {
    width: min(100% - 40px, 1180px) !important;
    grid-template-columns: 1fr !important;
    margin-top: 20px !important;
  }

  .hero-stats .stat-item {
    padding: 16px 18px !important;
  }
}

@media (max-width: 520px) {
  .hero {
    padding: 104px 0 28px !important;
    background:
      linear-gradient(180deg, rgba(7, 28, 51, .08) 0%, rgba(7, 28, 51, .34) 28%, rgba(7, 28, 51, .94) 100%),
      url('../img/hero.webp') center top / cover no-repeat !important;
  }

  .hero-shell.hero-banner {
    width: min(100% - 38px, 1180px) !important;
  }

  .hero-shell.hero-banner .kicker {
    font-size: 9px !important;
    letter-spacing: .10em !important;
    padding: 8px 12px !important;
  }

  .hero-shell.hero-banner .display-title {
    font-size: clamp(30px, 9.2vw, 40px) !important;
    margin: 16px 0 14px !important;
  }

  .hero-shell.hero-banner .lead {
    font-size: 15px !important;
    line-height: 1.55 !important;
    margin-bottom: 20px !important;
  }

  .hero-shell.hero-banner .hero-actions {
    flex-direction: column !important;
    align-items: stretch !important;
    width: 100% !important;
    margin-top: 20px !important;
  }

  .hero-shell.hero-banner .hero-actions .btn {
    width: 100% !important;
  }

  .hero-stats {
    display: none !important;
  }
}

@media (max-width: 380px) {
  .hero-shell.hero-banner .display-title {
    font-size: 28px !important;
  }

  .hero-shell.hero-banner {
    width: min(100% - 32px, 1180px) !important;
  }
}


/* Ajuste final: site sem alternância de tema */
.theme-toggle {
  display: none !important;
}

:root {
  color-scheme: light !important;
}

:root[data-theme="dark"] {
  --bg: #F7F1E7;
  --bg-soft: #EFE2CF;
  --surface: rgba(255, 255, 255, .82);
  --surface-solid: #FFFFFF;
  --text: #1E1E1E;
  --muted: #58606B;
  --heading: #071C33;
  --line: rgba(7, 28, 51, .12);
  --header-bg: rgba(247, 241, 231, .92);
}


/* Ajuste fino da primeira section no mobile */
@media (max-width: 520px) {
  .site-header:not(.is-scrolled) .nav {
    width: calc(100% - 24px) !important;
    height: 60px !important;
    margin-top: 10px !important;
    padding-inline: 8px !important;
    border-radius: 24px !important;
  }

  .brand {
    width: 152px !important;
    flex-basis: 152px !important;
  }

  .brand .logo {
    width: 152px !important;
    max-height: 34px !important;
  }

  .menu-toggle {
    width: 42px !important;
    height: 42px !important;
  }

  .hero {
    min-height: 100svh !important;
    justify-content: flex-end !important;
    padding: 94px 0 24px !important;
    background:
      linear-gradient(180deg, rgba(7, 28, 51, .06) 0%, rgba(7, 28, 51, .28) 22%, rgba(7, 28, 51, .72) 54%, rgba(7, 28, 51, .96) 100%),
      url('../img/hero.webp') center top / cover no-repeat !important;
  }

  .hero::before {
    background-size: auto, 100% 108px, 108px 100% !important;
    opacity: .46 !important;
  }

  .hero-shell.hero-banner {
    width: calc(100% - 24px) !important;
  }

  .hero-shell.hero-banner .hero-copy {
    max-width: 100% !important;
  }

  .hero-shell.hero-banner .kicker {
    max-width: 100% !important;
    font-size: 8.5px !important;
    letter-spacing: .08em !important;
    line-height: 1.2 !important;
    padding: 8px 11px !important;
    gap: 8px !important;
  }

  .hero-shell.hero-banner .kicker::before {
    width: 7px !important;
    height: 7px !important;
  }

  .hero-shell.hero-banner .display-title {
    max-width: 320px !important;
    font-size: clamp(25px, 8.8vw, 35px) !important;
    line-height: .94 !important;
    letter-spacing: -.025em !important;
    margin: 14px 0 12px !important;
    text-wrap: pretty !important;
  }

  .hero-title-clean .accent-word {
    margin-bottom: .10em !important;
  }

  .hero-shell.hero-banner .lead {
    max-width: 100% !important;
    font-size: 13px !important;
    line-height: 1.48 !important;
    margin-bottom: 16px !important;
  }

  .hero-shell.hero-banner .hero-actions {
    width: 100% !important;
    margin-top: 14px !important;
    gap: 10px !important;
    padding-bottom: 72px !important;
  }

  .hero-shell.hero-banner .hero-actions .btn {
    width: 100% !important;
    min-height: 52px !important;
    padding-inline: 18px !important;
    font-size: 14px !important;
    border-radius: 999px !important;
  }

  .hero-shell.hero-banner .hero-actions .btn-secondary {
    min-height: 50px !important;
  }

  .floating-whatsapp {
    right: 12px !important;
    bottom: 12px !important;
    width: 56px !important;
    height: 56px !important;
    border-width: 3px !important;
  }

  .floating-whatsapp .wa-icon,
  .floating-whatsapp .wa-icon svg {
    width: 28px !important;
    height: 28px !important;
  }
}

@media (max-width: 390px) {
  .hero-shell.hero-banner .display-title {
    max-width: 292px !important;
    font-size: 23px !important;
  }

  .hero-shell.hero-banner .lead {
    font-size: 12px !important;
  }

  .hero-shell.hero-banner .hero-actions .btn {
    min-height: 50px !important;
    font-size: 13px !important;
  }
}


/* Correção do menu mobile aberto */
@media (max-width: 1120px) {
  .nav-links {
    top: calc(100% + 12px) !important;
    left: 0 !important;
    right: 0 !important;
    padding: 10px !important;
    border-radius: 24px !important;
    background: rgba(7, 28, 51, .94) !important;
    border: 1px solid rgba(247, 241, 231, .16) !important;
    box-shadow: 0 24px 70px rgba(7, 28, 51, .34) !important;
    backdrop-filter: blur(18px) saturate(130%) !important;
    -webkit-backdrop-filter: blur(18px) saturate(130%) !important;
  }

  .site-header:not(.is-scrolled) .nav-links,
  .site-header.is-scrolled .nav-links {
    background: rgba(7, 28, 51, .94) !important;
    border-color: rgba(247, 241, 231, .16) !important;
  }

  .nav-links a,
  .site-header:not(.is-scrolled) .nav-links a,
  .site-header.is-scrolled .nav-links a {
    color: rgba(247, 241, 231, .88) !important;
    background: transparent !important;
    border: 1px solid transparent !important;
    box-shadow: none !important;
    border-radius: 18px !important;
    padding: 14px 16px !important;
  }

  .nav-links a:hover,
  .nav-links a.active,
  .site-header:not(.is-scrolled) .nav-links a:hover,
  .site-header:not(.is-scrolled) .nav-links a.active,
  .site-header.is-scrolled .nav-links a:hover,
  .site-header.is-scrolled .nav-links a.active {
    color: #071C33 !important;
    background: linear-gradient(135deg, #E3B066 0%, #C7892B 100%) !important;
    border-color: rgba(247, 241, 231, .16) !important;
    box-shadow: 0 12px 28px rgba(199, 137, 43, .18) !important;
  }
}

@media (max-width: 520px) {
  .nav-links {
    top: calc(100% + 10px) !important;
    width: 100% !important;
    max-height: calc(100svh - 96px) !important;
    overflow: auto !important;
    border-radius: 22px !important;
  }

  .nav-links a,
  .site-header:not(.is-scrolled) .nav-links a,
  .site-header.is-scrolled .nav-links a {
    font-size: 14px !important;
    line-height: 1.1 !important;
  }
}


/* Correção visual do botão do menu mobile */
@media (max-width: 1120px) {
  .menu-toggle {
    display: grid !important;
    place-items: center !important;
    position: relative !important;
    width: 44px !important;
    height: 44px !important;
    padding: 0 !important;
    border-radius: 16px !important;
    background: rgba(7, 28, 51, .44) !important;
    border: 1px solid rgba(247, 241, 231, .20) !important;
    color: #F7F1E7 !important;
    box-shadow: 0 14px 34px rgba(7, 28, 51, .18) !important;
    backdrop-filter: blur(14px) saturate(130%) !important;
    -webkit-backdrop-filter: blur(14px) saturate(130%) !important;
    transition: transform .22s ease, background .22s ease, border-color .22s ease, box-shadow .22s ease !important;
  }

  .menu-toggle:hover {
    transform: translateY(-1px) !important;
    background: rgba(7, 28, 51, .54) !important;
    border-color: rgba(228, 181, 103, .42) !important;
    box-shadow: 0 18px 38px rgba(7, 28, 51, .22) !important;
  }

  .menu-toggle span {
    position: absolute !important;
    left: 50% !important;
    width: 18px !important;
    height: 2.5px !important;
    margin: 0 !important;
    border-radius: 999px !important;
    background: currentColor !important;
    transform-origin: center !important;
    transition: transform .22s ease, opacity .18s ease, width .18s ease !important;
  }

  .menu-toggle span:nth-child(1) { top: 14px !important; transform: translateX(-50%) !important; }
  .menu-toggle span:nth-child(2) { top: 20px !important; transform: translateX(-50%) !important; }
  .menu-toggle span:nth-child(3) { top: 26px !important; transform: translateX(-50%) !important; }

  .menu-toggle.is-open span:nth-child(1) {
    top: 20px !important;
    transform: translateX(-50%) rotate(45deg) !important;
  }

  .menu-toggle.is-open span:nth-child(2) {
    opacity: 0 !important;
    transform: translateX(-50%) scaleX(.35) !important;
  }

  .menu-toggle.is-open span:nth-child(3) {
    top: 20px !important;
    transform: translateX(-50%) rotate(-45deg) !important;
  }

  .site-header.is-scrolled .menu-toggle {
    background: rgba(7, 28, 51, .10) !important;
    color: #071C33 !important;
    border-color: rgba(7, 28, 51, .12) !important;
    box-shadow: 0 12px 28px rgba(7, 28, 51, .08) !important;
  }

  .site-header.is-scrolled .menu-toggle:hover {
    background: rgba(7, 28, 51, .16) !important;
    border-color: rgba(199, 137, 43, .40) !important;
  }
}

@media (max-width: 520px) {
  .menu-toggle {
    width: 44px !important;
    height: 44px !important;
    border-radius: 15px !important;
  }
}


/* Ajuste de enquadramento da foto no hero mobile */
@media (max-width: 820px) {
  .hero {
    background:
      linear-gradient(180deg, rgba(7, 28, 51, .18) 0%, rgba(7, 28, 51, .42) 30%, rgba(7, 28, 51, .92) 100%),
      url('../img/hero.webp') center 12% / cover no-repeat !important;
  }
}

@media (max-width: 520px) {
  .hero {
    background:
      linear-gradient(180deg, rgba(7, 28, 51, .06) 0%, rgba(7, 28, 51, .28) 22%, rgba(7, 28, 51, .72) 54%, rgba(7, 28, 51, .96) 100%),
      url('../img/hero.webp') center 8% / cover no-repeat !important;
  }
}

@media (max-width: 390px) {
  .hero {
    background:
      linear-gradient(180deg, rgba(7, 28, 51, .04) 0%, rgba(7, 28, 51, .26) 20%, rgba(7, 28, 51, .72) 52%, rgba(7, 28, 51, .97) 100%),
      url('../img/hero.webp') center 6% / cover no-repeat !important;
  }
}


/* Ajuste extra do hero mobile: subir, expandir e escurecer mais a foto */
@media (max-width: 820px) {
  .hero {
    background:
      linear-gradient(180deg, rgba(7, 28, 51, .22) 0%, rgba(7, 28, 51, .50) 26%, rgba(7, 28, 51, .82) 52%, rgba(7, 28, 51, .96) 100%),
      url('../img/hero.webp') center 6% / cover no-repeat !important;
  }
}

@media (max-width: 520px) {
  .hero {
    background:
      linear-gradient(180deg, rgba(7, 28, 51, .18) 0%, rgba(7, 28, 51, .42) 20%, rgba(7, 28, 51, .78) 46%, rgba(7, 28, 51, .97) 100%),
      url('../img/hero.webp') center 2% / cover no-repeat !important;
  }

  .hero::before {
    opacity: .34 !important;
  }
}

@media (max-width: 390px) {
  .hero {
    background:
      linear-gradient(180deg, rgba(7, 28, 51, .16) 0%, rgba(7, 28, 51, .40) 18%, rgba(7, 28, 51, .78) 44%, rgba(7, 28, 51, .98) 100%),
      url('../img/hero.webp') center 0% / cover no-repeat !important;
  }
}
