:root {
  --bg: #0d0d0f;
  --bg-soft: #181818;
  --bg-soft-2: #f5a800;
  --bg-soft-3: #ff6b6b;
  --bg-soft-3: #3b3b3b;
  --bg-card: rgba(255,255,255,.04);
  --bg-card-strong: rgba(255,255,255,.06);
  --line: rgba(255,255,255,.08);
  --line-strong: rgba(245,168,0,.22);
  --text: #f3efe8;
  --text-soft: #b4b0a8;
  --text-muted: #8c877d;
  --yellow: #f5a800;
  --yellow-2: #ffd166;
  --red: #ff6b6b;
  --green: #25d366;
  --brown: #432e00;
  --success: #0ccc36;
  --shadow: 0 24px 80px rgba(0,0,0,.35);
  --radius-xs: 12px;
  --radius-sm: 18px;
  --radius-md: 24px;
  --radius-lg: 32px;
  --container: 1200px;
  --nav-h: 82px;
  --ease: .28s cubic-bezier(.2,.8,.2,1);
  --font-head: 'Bebas Neue', 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background:
    radial-gradient(circle at top left, rgba(245,168,0,.07), transparent 26%),
    radial-gradient(circle at 85% 20%, rgba(245,168,0,.04), transparent 18%),
    var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select { font: inherit; }

.container { width: min(calc(100% - 40px), var(--container)); margin: 0 auto; }
.page-shell { padding-top: calc(var(--nav-h) + 16px); }
.section { padding: 88px 0; }
.section-lg { padding: 112px 0; }
.grid-2 { display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.stack-16 > * + * { margin-top: 16px; }
.stack-24 > * + * { margin-top: 24px; }
.stack-32 > * + * { margin-top: 32px; }
.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 14px; border-radius: 999px;
  border: 1px solid rgba(245,168,0,.18); background: rgba(245,168,0,.07);
  color: var(--yellow); font-size: 11px; text-transform: uppercase; letter-spacing: .16em;
}
.kicker::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--yellow); box-shadow: 0 0 0 6px rgba(245,168,0,.10); }
.kicker-red {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 14px; border-radius: 999px;
  border: 1px solid rgba(255, 107, 107,.18); background: rgb(255,107,107,.07);
  color: var(--red); font-size: 11px; text-transform: uppercase; letter-spacing: .16em;
}
.kicker-red::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 6px rgba(255, 107, 107, 0.192); }
.kicker-green {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 14px; border-radius: 999px;
  border: 1px solid rgba(37,211,102,.18); background: rgb(37,211,102,.07);
  color: var(--green); font-size: 11px; text-transform: uppercase; letter-spacing: .16em;
}
.kicker-green::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 6px rgba(37,211,102,0.192); }
.kicker-brown {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 14px; border-radius: 999px;
  border: 1px solid rgba(67, 46, 0,.18); background: rgb(67, 46, 0,.07);
  color: var(--brown); font-size: 11px; text-transform: uppercase; letter-spacing: .16em;
}
.kicker-brown::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--brown); box-shadow: 0 0 0 6px rgba(67, 46, 0, 0.192); }
.section-title {
  font-family: var(--font-head); text-transform: uppercase;
  line-height: .92; letter-spacing: .025em;
  font-size: clamp(48px, 6.6vw, 88px);
}
.section-title .accent { color: var(--yellow); }
.section-title .accent-red { color: var(--red); }
.section-title .accent-green { color: var(--green); }
.section-title .accent-brown { color: var(--brown); }
.lead { font-size: clamp(16px, 1.5vw, 19px); color: var(--text-soft); max-width: 700px; }
.muted { color: var(--text-muted); }
.text-soft { color: var(--text-soft); }

.card {
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.03));
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}
.card-soft {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  min-height: 52px; padding: 0 24px; border-radius: 999px;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease), background var(--ease), color var(--ease);
  border: 1px solid transparent; font-weight: 500;
}
.btn:hover { transform: translateY(-3px); }
.btn-primary {
  background: var(--yellow);
  color: #161616; box-shadow: 0 16px 40px rgba(245,168,0,.24);
}
.btn-primary:hover { box-shadow: 0 22px 52px rgba(245,168,0,.34); }
.btn-ghost { border-color: rgba(255,255,255,.12); color: var(--text); background: rgba(255,255,255,.02); }
.btn-ghost:hover { border-color: rgba(255,255,255,.28); background: rgba(255,255,255,.05); }
.btn-ghost-2 { border-color: rgba(255,255,255,.12); color: var(--text); background: rgba(245, 168, 0, 1); }
.btn-ghost-2:hover { border-color: rgba(255,255,255,.28); background: rgb(187, 128, 0); }
.btn-whatsapp { background: var(--success); color: #fff; box-shadow: 0 18px 44px rgba(37,211,102,.22); }

.skip-link {
  position: absolute; left: -9999px; top: -9999px;
}
.skip-link:focus {
  left: 16px; top: 16px; z-index: 999;
  background: #fff; color: #111; padding: 12px 14px; border-radius: 12px;
}

.cursor {
  position: fixed; left: 0; top: 0; width: 12px; height: 12px; border-radius: 50%;
  background: var(--yellow); pointer-events: none; z-index: 200;
  transform: translate(-50%, -50%); transition: width .2s ease, height .2s ease, opacity .2s ease, background .2s ease;
}
.cursor.expand { width: 42px; height: 42px; background: rgba(245,168,0,.12); }
@media (pointer: coarse) { .cursor { display: none; } }

.nav {
  position: fixed; inset: 0 0 auto 0; height: var(--nav-h); z-index: 100;
  display: flex; align-items: center;
  transition: background var(--ease), border-color var(--ease), backdrop-filter var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(13,13,15,.82);
  backdrop-filter: blur(18px);
  border-color: rgba(255,255,255,.06);
}
.nav-inner {
  width: min(calc(100% - 40px), var(--container)); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}

a.brand {display: inline; width: 20%;}

.brand { display: inline-flex; align-items: center; gap: 14px; min-width: 0; }

.nav-links { list-style: none; display: flex; gap: 28px; align-items: center; }
.nav-links a {
  font-size: 12px; text-transform: uppercase; letter-spacing: .16em; color: var(--text-muted); position: relative;
  transition: color var(--ease);
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; right: 100%; bottom: -8px; height: 1px; background: var(--yellow); transition: right var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a:hover::after, .nav-links a.active::after { right: 0; }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-social { display: inline-flex; gap: 8px; }
.icon-btn {
  width: 42px; height: 42px; display: grid; place-items: center; border-radius: 14px;
  border: 1px solid var(--line); background: rgba(255,255,255,.03); color: var(--text-soft);
  transition: transform var(--ease), border-color var(--ease), background var(--ease), color var(--ease);
}
.icon-btn:hover { transform: translateY(-2px); border-color: rgba(245,168,0,.24); color: var(--yellow); background: rgba(245,168,0,.06); }
.hamburger { display: none; background: none; border: 0; color: var(--text); }
.hamburger-box { width: 28px; display: grid; gap: 5px; }
.hamburger-box span { height: 2px; background: currentColor; border-radius: 999px; transition: transform .25s ease, opacity .25s ease; }
.hamburger.open .hamburger-box span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.hamburger.open .hamburger-box span:nth-child(2){ opacity: 0; }
.hamburger.open .hamburger-box span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  position: fixed; inset: var(--nav-h) 0 0 0; z-index: 90; background: rgba(10,10,12,.98);
  transform: translateX(100%); transition: transform .35s ease; padding: 28px 20px 40px;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu nav { display: grid; gap: 14px; }
.mobile-menu a {
  padding: 16px 18px; border-radius: 18px; border: 1px solid var(--line);
  background: rgba(255,255,255,.03); font-size: 14px; letter-spacing: .12em; text-transform: uppercase;
}

.hero {
  position: relative; min-height: calc(100vh - 20px);
  display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 42px;
  padding: 42px 0 28px;
}
.hero::before {
  content: 'M51'; position: absolute; left: -8px; top: 10%; font-family: var(--font-head);
  font-size: clamp(150px, 22vw, 300px); color: rgba(245,168,0,.03); pointer-events: none; line-height: 1;
}
.hero-copy { position: relative; z-index: 2; }
.hero-title {
  font-family: var(--font-head); text-transform: uppercase; line-height: .88; letter-spacing: .02em;
  font-size: clamp(70px, 8.5vw, 132px); margin: 22px 0;
}
.hero-title .stroke { color: transparent; -webkit-text-stroke: 1.2px rgba(255,255,255,.18); }
.hero-text { max-width: 650px; font-size: clamp(16px, 1.6vw, 19px); color: var(--text-soft); }
.hero-aside {
  position: relative; min-height: 560px; display: grid; align-items: center;
}
/*.hero-aside img {
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-lg);
  box-shadow: #f5a800 0px 0px 10px -4px, #0ccc36 0px 0px 0px 0px inset;
}
.hero-aside img:hover {
  box-shadow: #f5a800 0px 0px 50px -4px, #0ccc36 0px 0px 0px 0px inset; transition: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.hero-aside::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: inset 0 0 150px 150px rgba(255, 255, 255, 0);
    pointer-events: none;
}*/
.hero-panel {
  position: relative; overflow: hidden; padding: 20px;
  border-radius: var(--radius-lg); border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02)),
    radial-gradient(circle at 80% 0%, rgba(245,168,0,.12), transparent 24%),
    #111215;
}
.hero-panel::after {
  content: ''; position: absolute; inset: auto -20% -25% auto; width: 240px; height: 240px;
  border-radius: 50%; background: radial-gradient(circle, rgba(245,168,0,.16), transparent 70%); filter: blur(10px);
}
.mock-browser {
  position: relative; z-index: 1; overflow: hidden; min-height: 500px;
  border-radius: 22px; border: 1px solid rgba(255,255,255,.08); background: #0f1012;
}
.browser-top {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 12px 16px; border-bottom: 1px solid rgba(255,255,255,.06); background: rgba(255,255,255,.02);
}
.browser-dots { display: flex; gap: 8px; }
.browser-dots span { width: 10px; height: 10px; border-radius: 50%; display: block; }
.browser-dots span:nth-child(1){ background:#ff5f57; }
.browser-dots span:nth-child(2){ background:#febc2e; }
.browser-dots span:nth-child(3){ background:#28c840; }
.browser-bar { height: 14px; width: min(56%, 260px); border-radius: 999px; background: rgba(255,255,255,.08); }
.browser-body { display: grid; gap: 18px; padding: 18px; }
.browser-hero {
  border-radius: 20px; min-height: 240px; overflow: hidden; position: relative;
  background: linear-gradient(135deg, #1b1d23, #28210e 140%);
  border: 1px solid rgba(255,255,255,.06);
}
.browser-hero img { width: 100%; height: 100%; object-fit: cover; opacity: .88; }
.browser-hero-copy {
  position: absolute; inset: auto 18px 18px 18px; display: grid; gap: 8px;
}
.ui-line { height: 10px; border-radius: 999px; background: rgba(255,255,255,.08); }
.ui-line.w-40 { width: 40%; } .ui-line.w-55 { width: 55%; } .ui-line.w-70 { width: 70%; } .ui-line.w-85 { width: 85%; }
.ui-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 14px; }
.ui-card { border-radius: 18px; border: 1px solid rgba(255,255,255,.06); background: rgba(255,255,255,.03); min-height: 120px; padding: 16px; }
.floating-stat {
  position: absolute; right: -14px; bottom: 24px; z-index: 2;
  min-width: 180px; padding: 16px 18px; border-radius: 20px;
  background: rgba(10,10,12,.82); backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: var(--shadow);
}
.floating-stat strong { display: block; font-family: var(--font-head); font-size: 42px; color: var(--yellow); line-height: .9; }
.floating-stat span { font-size: 11px; text-transform: uppercase; letter-spacing: .12em; color: var(--text-muted); }
.stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 26px; }
.stat-box { padding: 18px; border-radius: 20px; border: 1px solid var(--line); background: rgba(255,255,255,.025); }
.stat-box strong { display: block; font-family: var(--font-head); font-size: 42px; color: var(--yellow); line-height: .9; }
.stat-box strong.red { display: block; font-family: var(--font-head); font-size: 42px; color: var(--red); line-height: .9; }
.stat-box strong.green { display: block; font-family: var(--font-head); font-size: 42px; color: var(--green); line-height: .9; }
.stat-box span { display: block; margin-top: 6px; font-size: 12px; text-transform: uppercase; letter-spacing: .12em; color: var(--text-muted); }

.ribbon {
  margin-top: 18px; overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.ribbon-track {
  display: flex; gap: 36px; white-space: nowrap; padding: 16px 0; animation: marquee 18s linear infinite;
}
.ribbon-track span { text-transform: uppercase; letter-spacing: .18em; color: var(--text-muted); font-size: 12px; }
.ribbon-track .dot { color: var(--yellow); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.about-grid { display: grid; grid-template-columns: .98fr 1.02fr; gap: 28px; align-items: stretch; }
.about-copy, .about-panel { padding: 28px; }
.about-copy p { color: var(--text-soft); }
.about-copy strong { color: var(--text); }
.tag-list { display: flex; flex-wrap: wrap; gap: 10px; }
.tag {
  padding: 10px 14px; border-radius: 999px; font-size: 12px; border: 1px solid var(--line); color: var(--text-soft);
  background: rgba(255,255,255,.02);
}
.about-panel { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.metric-card {
  min-height: 170px; padding: 22px; border-radius: 24px; background: rgba(255,255,255,.03); border: 1px solid var(--line);
}
.metric-card strong { display: block; font-family: var(--font-head); font-size: 58px; line-height: .92; color: var(--yellow); }
.metric-card span { color: var(--text-muted); text-transform: uppercase; letter-spacing: .12em; font-size: 11px; }
.metric-card p { color: var(--text-soft); font-size: 14px; margin-top: 10px; }

.services-grid .service-card,
.process-grid .process-card,
.testimonials-grid .testimonial-card,
.portfolio-grid .portfolio-card,
.models-grid .model-card,
.social-proof .proof-card,
.contact-cards .contact-card {
  transition: transform var(--ease), border-color var(--ease), background var(--ease), box-shadow var(--ease);
}
.model-card-modelo { transition: transform var(--ease); border-color: var(--ease); background: var(--ease); box-shadow: 1px 1px 30px rgba(0, 0, 0, 0.02); }
.service-card:hover,
.process-card:hover,
.testimonial-card:hover,
.portfolio-card:hover,
.model-card:hover,
.proof-card:hover,
.contact-card:hover { transform: translateY(-6px); border-color: var(--line-strong); }
.model-card-modelo:hover{ transform: translateY(-6px); border-color: var(--line-strong); box-shadow: 1px 1px 30px rgba(0, 0, 0, 0.05); }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { padding: 28px; border-radius: 26px; border: 1px solid var(--line); background: var(--bg-card); }
.service-top { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 18px; }
.service-index { font-family: var(--font-head); font-size: 14px; letter-spacing: .18em; color: var(--yellow); }
.service-icon {
  width: 52px; height: 52px; border-radius: 16px; display: grid; place-items: center;
  background: rgba(245,168,0,.08); border: 1px solid rgba(245,168,0,.18);
}
.service-icon svg { width: 22px; height: 22px; stroke: var(--yellow); fill: none; stroke-width: 1.8; }
.service-card h3 { font-family: var(--font-head); text-transform: uppercase; letter-spacing: .03em; font-size: 30px; line-height: .95; margin-bottom: 12px; }
.service-card p { color: var(--text-soft); font-size: 15px; }
.price-row { display: flex; align-items: end; gap: 8px; margin-top: 22px; }
.price-row strong { font-family: var(--font-head); font-size: 42px; line-height: .92; color: var(--yellow); }
.price-row span { color: var(--text-muted); font-size: 12px; text-transform: uppercase; letter-spacing: .12em; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.chip { font-size: 11px; text-transform: uppercase; letter-spacing: .1em; border: 1px solid var(--line); padding: 7px 10px; border-radius: 999px; color: var(--text-muted); }

.section-head {
  display: flex; justify-content: space-between; align-items: end; gap: 20px; margin-bottom: 28px;
}
.section-head .actions { display: flex; flex-wrap: wrap; gap: 10px; }

.portfolio-grid, .models-grid, .testimonials-grid, .contact-cards, .social-proof {
  display: grid; gap: 18px;
}
.portfolio-grid { grid-template-columns: repeat(3, 1fr); }
.models-grid { grid-template-columns: repeat(3, 1fr); }
.testimonials-grid { grid-template-columns: repeat(3, 1fr); }
.social-proof { grid-template-columns: repeat(4, 1fr); }
.contact-cards { grid-template-columns: repeat(4, 1fr); }

.portfolio-card, .model-card, .model-card-modelo {
  overflow: hidden; border-radius: 26px; border: 1px solid var(--line); background: rgba(255,255,255,.03);
}
.card-cover-link { display: block; }
.card-cover {
  aspect-ratio: 16 / 10; overflow: hidden; position: relative; background: linear-gradient(135deg, #17191f, #231b0b);
}
.card-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease, opacity var(--ease); }
.portfolio-card:hover .card-cover img,
.model-card:hover .card-cover img, .model-card-modelo:hover .card-cover img { transform: scale(1.06); }
.card-overlay {
  position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,.46));
  display: flex; align-items: end; justify-content: space-between; padding: 16px;
}
.badge {
  display: inline-flex; align-items: center; min-height: 32px; padding: 0 12px; border-radius: 999px;
  font-size: 11px; text-transform: uppercase; letter-spacing: .12em;
  background: rgba(0,0,0,.45); border: 1px solid rgba(255,255,255,.12);
}
.view-icon {
  width: 40px; height: 40px; display: grid; place-items: center; border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.06); backdrop-filter: blur(8px);
}
.card-body { padding: 22px; }
.card-body h3 { font-family: var(--font-head); font-size: 28px; letter-spacing: .03em; text-transform: uppercase; line-height: .94; margin-bottom: 10px; }
.card-body p { color: var(--text-soft); font-size: 14px; }
.meta-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.meta-pill {
  padding: 8px 10px; border-radius: 999px; border: 1px solid var(--line); color: var(--text-muted);
  text-transform: uppercase; letter-spacing: .1em; font-size: 10px;
}

.filter-bar {
  display: flex; gap: 10px; flex-wrap: wrap; align-items: center; margin-bottom: 24px;
}
.filter-btn {
  border: 1px solid var(--line); background: rgba(255,255,255,.02); color: var(--text-soft);
  min-height: 42px; padding: 0 16px; border-radius: 999px; cursor: pointer;
  text-transform: uppercase; letter-spacing: .12em; font-size: 11px; transition: all var(--ease);
}
.filter-btn.active,
.filter-btn:hover { background: rgba(245,168,0,.09); border-color: rgba(245,168,0,.22); color: var(--yellow); }
.model-card[hidden], .model-card-modelo[hidden] { display: none !important; }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.process-card { padding: 26px; border-radius: 24px; border: 1px solid var(--line); background: var(--bg-card); position: relative; }
.process-step { font-family: var(--font-head); font-size: 14px; letter-spacing: .18em; color: var(--yellow); margin-bottom: 16px; }
.process-card h3 { font-family: var(--font-head); font-size: 26px; text-transform: uppercase; line-height: .95; margin: 14px 0 8px; }
.process-card p { color: var(--text-soft); font-size: 14px; }
.process-icon { width: 52px; height: 52px; border-radius: 16px; display: grid; place-items: center; background: rgba(245,168,0,.08); border: 1px solid rgba(245,168,0,.18); }
.process-icon svg { width: 22px; height: 22px; stroke: var(--yellow); fill: none; stroke-width: 1.8; }

.testimonial-card, .proof-card, .contact-card {
  padding: 24px; border-radius: 24px; border: 1px solid var(--line); background: var(--bg-card);
}
.rating { display: flex; gap: 4px; color: var(--yellow); margin-bottom: 14px; }
.testimonial-card blockquote { color: var(--text); opacity: .9; font-size: 15px; }
.author { margin-top: 16px; display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; background: rgba(245,168,0,.12); color: var(--yellow);
  font-family: var(--font-head); font-size: 20px; border: 1px solid rgba(245,168,0,.2);
}
.author strong { display: block; }
.author span { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: .1em; }

.proof-card strong, .contact-card strong { display: block; font-family: var(--font-head); font-size: 28px; text-transform: uppercase; letter-spacing: .03em; line-height: .95; margin: 14px 0 10px; }
.proof-card p, .contact-card p { color: var(--text-soft); font-size: 14px; }
.contact-card a.link-inline,
.proof-card a.link-inline { color: var(--yellow); }

.cta-panel {
    overflow: hidden;
    position: relative;
    padding: 34px;
    border-radius: 32px;
    border: 1px solid rgb(37 211 102 / 21%);
    background: radial-gradient(circle at top right, rgb(0 255 90 / 25%), #00000000 26%), linear-gradient(180deg, rgb(255 255 255 / 0%), rgb(255 255 255 / 0%));
}
.cta-panel::after {
  content: ''; position: absolute; inset: auto -60px -80px auto; width: 240px; height: 240px; border-radius: 50%;
  background: radial-gradient(circle, rgba(57, 245, 0, 0.18), transparent 72%); opacity: .7;
}
.cta-panel > * { position: relative; z-index: 1; }

.page-hero {
  padding: 36px 0 12px;
}
.page-hero .page-card {
  padding: 30px; border-radius: 30px; border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.03));
}
.breadcrumb { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 16px; color: var(--text-muted); font-size: 12px; text-transform: uppercase; letter-spacing: .1em; }
.breadcrumb a:hover { color: var(--yellow); }

.footer {
  margin-top: 30px; border-top: 1px solid var(--line); padding: 28px 0 40px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.2fr .8fr .8fr .9fr; gap: 18px; align-items: start;
}
.footer h4 { font-family: var(--font-head); font-size: 24px; text-transform: uppercase; letter-spacing: .03em; margin-bottom: 12px; }
.footer p, .footer li, .footer a { color: var(--text-soft); font-size: 14px; }
.footer ul { list-style: none; display: grid; gap: 8px; }
.footer .mini { color: var(--text-muted); font-size: 12px; margin-top: 12px; }
.footer-bottom {
  margin-top: 24px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.05);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; color: var(--text-muted); font-size: 12px;
}

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }
.delay-4 { transition-delay: .32s; }

@media (max-width: 1180px) {
  .hero { grid-template-columns: 1fr; }
  .hero-aside { min-height: auto; }
  .social-proof, .contact-cards { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid, .models-grid, .services-grid, .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 920px) {
  :root { --nav-h: 76px; }
  a.brand {display: inline; width: 50%}
  .nav-links, .nav-social, .nav-cta-wrap { display: none; }
  .hamburger { display: inline-flex; }
  .stats-row { grid-template-columns: 1fr; }
  .about-grid, .grid-2 { grid-template-columns: 1fr; }
  .about-panel { grid-template-columns: 1fr 1fr; }
  .hero-title { font-size: clamp(58px, 12vw, 96px); }
}

@media (max-width: 720px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 72px 0; }
  .section-lg { padding: 88px 0; }
  .section-head { flex-direction: column; align-items: start; }
  .portfolio-grid, .models-grid, .services-grid, .testimonials-grid, .social-proof, .contact-cards, .process-grid, .footer-grid, .about-panel { grid-template-columns: 1fr; }
  .hero-panel { padding: 14px; }
  .mock-browser { min-height: 380px; }
  .floating-stat { position: static; margin-top: 16px; }
  .page-hero .page-card,
  .about-copy,
  .about-panel,
  .cta-panel,
  .service-card,
  .process-card,
  .testimonial-card,
  .proof-card,
  .contact-card,
  .card-body { padding-left: 20px; padding-right: 20px; }
  .btn-row { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
}

@media (max-width: 460px) {
  .brand-text span { display: none; }
  .kicker { font-size: 10px; letter-spacing: .14em; }
  .section-title { font-size: clamp(38px, 13vw, 64px); }
  .hero-title { font-size: clamp(46px, 16vw, 78px); }
  .metric-card strong { font-size: 48px; }
  .price-row strong, .stat-box strong { font-size: 36px; }
}

/* =========================================
   SECTION ALT — contraste entre seções
   ========================================= */
.section-alt {
  background: var(--bg-soft);
}

.section-alt-2 {
  background: var(--bg-soft-2);
}

.section-alt-3 {
  background: #fff;
  color: var(--bg-soft-3);
}

/* =========================================
   FLOATING WHATSAPP + BACK TO TOP
   ========================================= */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 120;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 8px 32px rgba(37,211,102,.38);
  transition: transform var(--ease), box-shadow var(--ease);
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 12px 44px rgba(37,211,102,.54); }
.wa-float svg { width: 28px; height: 28px; }

.back-to-top {
  position: fixed; bottom: 100px; right: 28px; z-index: 120;
  width: 48px; height: 48px; border-radius: 14px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  color: var(--text); display: grid; place-items: center; cursor: pointer;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity var(--ease), visibility var(--ease), transform var(--ease), background var(--ease), border-color var(--ease), color var(--ease);
  backdrop-filter: blur(12px);
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: rgba(245,168,0,.12); border-color: rgba(245,168,0,.28); color: var(--yellow); }

/* =========================================
   PROBLEMA SECTION
   ========================================= */
.problem-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 32px;
}
.problem-card {
  padding: 28px; border-radius: 24px; border: 1px solid var(--line); background: var(--bg-card);
  transition: transform var(--ease), border-color var(--ease);
}
.problem-card:hover { transform: translateY(-6px); border-color: rgba(255,100,100,.22); }
.problem-icon {
  width: 52px; height: 52px; border-radius: 16px; display: grid; place-items: center;
  background: rgba(255,100,100,.08); border: 1px solid rgba(255,100,100,.18); margin-bottom: 18px;
}
.problem-icon svg { width: 22px; height: 22px; stroke: #ff6b6b; fill: none; stroke-width: 1.8; }
.problem-card h3 { font-family: var(--font-head); font-size: 24px; text-transform: uppercase; line-height: .95; margin-bottom: 10px; }
.problem-card p { color: var(--text-soft); font-size: 14px; }

/* =========================================
   SOLUÇÃO SECTION
   ========================================= */
.solution-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 32px;
}
.solution-item {
  display: flex; gap: 18px; padding: 24px; border-radius: 22px;
  border: 1px solid var(--line); background: var(--bg-card); align-items: flex-start;
  transition: transform var(--ease), border-color var(--ease);
}
.solution-item:hover { transform: translateY(-4px); border-color: rgba(37,211,102,.22); }
.solution-check {
  width: 44px; height: 44px; min-width: 44px; border-radius: 14px;
  display: grid; place-items: center;
  background: rgba(37,211,102,.1); border: 1px solid rgba(37,211,102,.2);
}
.solution-check svg { width: 20px; height: 20px; stroke: var(--success); fill: none; stroke-width: 2.2; }
.solution-item h4 { font-size: 15px; font-weight: 600; margin-bottom: 6px; }
.solution-item p { color: var(--text-soft); font-size: 14px; }

/* =========================================
   SERVICE FEATURED
   ========================================= */
.service-featured {
  border-color: rgba(245,168,0,.28);
  background: linear-gradient(180deg, rgba(245,168,0,.07), rgba(245,168,0,.03));
  position: relative;
}
.service-badge-top {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px; border-radius: 999px; margin-bottom: 18px;
  background: rgba(245,168,0,.15); border: 1px solid rgba(245,168,0,.28);
  color: var(--yellow); font-size: 11px; text-transform: uppercase; letter-spacing: .14em; font-weight: 600;
}
.services-note {
  text-align: center; color: var(--text-muted); font-size: 13px;
  margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--line);
}

/* =========================================
   DIFERENCIAIS
   ========================================= */
.diff-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 32px;
}
.diff-card {
  padding: 28px; border-radius: 24px; border: 1px solid var(--line);
  background: var(--bg-card); text-align: center;
  transition: transform var(--ease), border-color var(--ease);
}
.diff-card-brown {
  padding: 28px; border-radius: 24px; border: 1px solid var(--line);
  background: var(--brown); text-align: center;
  transition: transform var(--ease), border-color var(--ease);
}
.diff-card:hover { transform: translateY(-6px); border-color: var(--line-strong); }
.diff-icon {
  width: 58px; height: 58px; border-radius: 18px; display: grid; place-items: center;
  background: rgba(245,168,0,.08); border: 1px solid rgba(245,168,0,.18); margin: 0 auto 18px;
}
.diff-icon svg { width: 24px; height: 24px; stroke: var(--yellow); fill: none; stroke-width: 1.8; }
.diff-card h3 { font-family: var(--font-head); font-size: 26px; text-transform: uppercase; line-height: .95; margin-bottom: 10px; }
.diff-card p { color: var(--text-soft); font-size: 14px; }

/* =========================================
   DEPOIMENTOS — star rating
   ========================================= */
.rating { display: flex; gap: 3px; margin-bottom: 18px; }
.rating svg { width: 16px; height: 16px; fill: var(--yellow); stroke: none; }

/* author-info wrapper */
.author-info strong { display: block; font-size: 14px; font-weight: 600; }
.author-info span { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: .1em; }

/* =========================================
   MOBILE WA LINK (menu mobile)
   ========================================= */
.mobile-wa-link {
  background: rgba(37,211,102,.12) !important;
  border-color: rgba(37,211,102,.22) !important;
  color: #25d366 !important;
}

/* =========================================
   FOOTER SOCIAL ICONS
   ========================================= */
.footer-social {
  display: flex; gap: 10px; margin-top: 16px;
}
.footer-social a {
  width: 38px; height: 38px; display: grid; place-items: center; border-radius: 12px;
  border: 1px solid var(--line); background: rgba(255,255,255,.03); color: var(--text-soft);
  transition: transform var(--ease), border-color var(--ease), color var(--ease);
}
.footer-social a:hover { transform: translateY(-2px); border-color: rgba(245,168,0,.24); color: var(--yellow); }

/* =========================================
   RESPONSIVE — novas seções
   ========================================= */
@media (max-width: 1180px) {
  .problem-grid, .diff-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .problem-grid, .solution-grid, .diff-grid { grid-template-columns: 1fr; }
  .problem-card, .diff-card { padding: 22px; }
  .solution-item { padding: 20px; }
  .wa-float { bottom: 20px; right: 20px; width: 54px; height: 54px; }
  .back-to-top { bottom: 86px; right: 20px; }
}

@media (max-width: 460px) {
  .service-featured .service-badge-top { font-size: 10px; }
}

/* =========================================
   SERVIÇOS EXTRAS (servicos.html)
   ========================================= */
.extra-services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 32px;
}
.extra-service-card {
  display: flex; gap: 20px; padding: 28px; border-radius: 24px;
  border: 1px solid var(--line); background: var(--bg-card);
  align-items: flex-start;
  transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
}
.extra-service-card:hover { transform: translateY(-6px); border-color: var(--line-strong); box-shadow: var(--shadow); }
.extra-service-icon {
  width: 52px; height: 52px; min-width: 52px; border-radius: 16px;
  display: grid; place-items: center;
  background: rgba(245,168,0,.08); border: 1px solid rgba(245,168,0,.18);
}
.extra-service-icon svg { width: 22px; height: 22px; stroke: var(--yellow); fill: none; stroke-width: 1.8; }
.extra-service-body h3 { font-family: var(--font-head); font-size: 26px; text-transform: uppercase; line-height: .95; margin-bottom: 10px; }
.extra-service-body p { color: var(--text-soft); font-size: 14px; line-height: 1.6; }

@media (max-width: 1180px) {
  .extra-services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .extra-services-grid { grid-template-columns: 1fr; }
  .extra-service-card { flex-direction: column; gap: 16px; padding: 22px; }
}
