:root {
  --ink: #0b0d12;
  --ink-2: #151922;
  --paper: #f5f3ee;
  --white: #ffffff;
  --muted: #777b84;
  --line: rgba(11, 13, 18, 0.12);
  --gold: #d8a95d;
  --gold-light: #f4cf8a;
  --cyan: #11b9d6;
  --pink: #ed1758;
  --green: #55b522;
  --yellow: #f7c900;
  --radius: 24px;
  --shadow: 0 22px 70px rgba(5, 7, 12, 0.16);
  --container: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.container { width: var(--container); margin-inline: auto; }
.section-dark { color: var(--white); background: var(--ink); }
.section-light { background: var(--paper); }
.skip-link { position: fixed; left: 12px; top: -80px; z-index: 9999; background: white; color: black; padding: 12px 16px; border-radius: 8px; }
.skip-link:focus { top: 12px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  transition: background .3s ease, box-shadow .3s ease, transform .3s ease;
}
.site-header.scrolled { background: rgba(11, 13, 18, .88); backdrop-filter: blur(16px); box-shadow: 0 8px 30px rgba(0,0,0,.18); }
.nav-wrap { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand { display: flex; align-items: center; gap: 12px; color: white; font-family: "Oswald", sans-serif; font-size: 20px; letter-spacing: .06em; text-transform: uppercase; }
.brand img { width: 54px; height: 54px; object-fit: cover; border-radius: 15px; }
.brand small { display: block; font-family: "DM Sans", sans-serif; font-size: 9px; letter-spacing: .2em; font-weight: 500; color: var(--gold-light); }
.main-nav { display: flex; align-items: center; gap: 28px; color: rgba(255,255,255,.78); font-size: 14px; font-weight: 600; }
.main-nav > a:not(.nav-cta) { position: relative; }
.main-nav > a:not(.nav-cta)::after { content: ""; position: absolute; height: 2px; left: 0; right: 100%; bottom: -7px; background: var(--gold); transition: right .25s ease; }
.main-nav > a:hover::after { right: 0; }
.nav-cta { color: var(--ink); background: var(--gold-light); padding: 12px 18px; border-radius: 999px; transition: transform .25s ease, background .25s ease; }
.nav-cta:hover { transform: translateY(-2px); background: white; }
.menu-toggle { display: none; border: 0; background: transparent; padding: 8px; }
.menu-toggle span { display: block; width: 26px; height: 2px; margin: 5px 0; background: white; transition: .25s ease; }

.hero { position: relative; min-height: 920px; padding: 160px 0 96px; overflow: hidden; background-image: linear-gradient(rgba(11,13,18,.93), rgba(11,13,18,.98)), url("assets/MOTIVO-BACKGROUND.png"); background-size: auto, 1100px auto; }
.hero::after { content: ""; position: absolute; inset: auto 0 0; height: 150px; background: linear-gradient(transparent, rgba(0,0,0,.3)); pointer-events: none; }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .24; pointer-events: none; }
.hero-glow-one { width: 420px; height: 420px; background: var(--gold); right: 6%; top: 15%; }
.hero-glow-two { width: 300px; height: 300px; background: var(--cyan); left: -110px; top: 42%; }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.06fr .94fr; align-items: center; gap: 72px; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; color: var(--gold-light); text-transform: uppercase; letter-spacing: .18em; font-size: 12px; font-weight: 700; }
.eyebrow span { width: 34px; height: 1px; background: var(--gold); }
.hero h1 { margin: 25px 0 24px; font-family: "Oswald", sans-serif; font-size: clamp(58px, 6.4vw, 96px); line-height: .95; letter-spacing: -.035em; text-transform: uppercase; }
.hero h1 em { color: var(--gold-light); font-style: normal; }
.hero-lead { max-width: 680px; color: rgba(255,255,255,.68); font-size: 19px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 12px; min-height: 54px; padding: 0 24px; border: 1px solid transparent; border-radius: 999px; font-weight: 700; cursor: pointer; transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease; }
.btn:hover { transform: translateY(-3px); }
.btn-primary { background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: #1d160b; box-shadow: 0 14px 35px rgba(216,169,93,.22); }
.btn-primary:hover { box-shadow: 0 18px 44px rgba(216,169,93,.35); }
.btn-ghost { color: white; border-color: rgba(255,255,255,.22); background: rgba(255,255,255,.04); }
.btn-ghost:hover { background: white; color: var(--ink); }
.btn-dark { background: var(--ink); color: white; }
.btn-outline { width: 100%; border-color: var(--ink); color: var(--ink); background: transparent; }
.btn-outline:hover { background: var(--ink); color: white; }
.btn-full { width: 100%; border: none; }
.hero-proof { display: flex; gap: 34px; margin-top: 48px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.12); }
.hero-proof div { display: grid; gap: 2px; }
.hero-proof strong { font-family: "Oswald", sans-serif; font-size: 31px; color: white; }
.hero-proof span { color: rgba(255,255,255,.5); font-size: 12px; }
.hero-visual { position: relative; min-height: 610px; display: grid; place-items: center; }
.visual-frame { position: relative; width: min(100%, 520px); aspect-ratio: 4/5; overflow: hidden; border: 1px solid rgba(255,255,255,.14); border-radius: 42px 42px 140px 42px; box-shadow: 0 35px 100px rgba(0,0,0,.5); transform-style: preserve-3d; transition: transform .15s ease; }
.visual-frame::before { content: ""; position: absolute; z-index: 2; inset: 16px; border: 1px solid rgba(244,207,138,.42); border-radius: 30px 30px 125px 30px; pointer-events: none; }
.visual-main { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.visual-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(5,6,9,.85)); }
.visual-caption { position: absolute; z-index: 2; left: 44px; bottom: 38px; display: grid; }
.visual-caption span { color: var(--gold-light); font-size: 12px; letter-spacing: .18em; text-transform: uppercase; }
.visual-caption strong { font-family: "Oswald", sans-serif; font-size: 34px; text-transform: uppercase; }
.float-card { position: absolute; z-index: 4; min-width: 178px; padding: 16px 20px; border-radius: 18px; background: rgba(255,255,255,.92); color: var(--ink); box-shadow: var(--shadow); backdrop-filter: blur(10px); animation: float 4s ease-in-out infinite; }
.float-card b, .float-card span { display: block; }
.float-card b { font-family: "Oswald", sans-serif; text-transform: uppercase; font-size: 19px; }
.float-card span { color: var(--muted); font-size: 12px; }
.float-card-one { left: -30px; top: 115px; border-left: 4px solid var(--cyan); }
.float-card-two { right: -40px; bottom: 130px; border-left: 4px solid var(--pink); animation-delay: -2s; }
.stamp { position: absolute; z-index: 4; right: 8px; top: 24px; width: 138px; aspect-ratio: 1; display: grid; place-content: center; text-align: center; border: 1px solid rgba(244,207,138,.42); border-radius: 50%; transform: rotate(9deg); }
.stamp::before { content: ""; position: absolute; inset: 8px; border: 1px dashed rgba(244,207,138,.35); border-radius: 50%; }
.stamp span { font-size: 8px; letter-spacing: .12em; color: var(--gold-light); }
.stamp strong { font-family: "Pacifico", cursive; font-size: 17px; color: white; font-weight: 400; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.marquee { position: absolute; z-index: 3; left: 0; right: 0; bottom: 0; overflow: hidden; border-top: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.03); }
.marquee-track { width: max-content; display: flex; align-items: center; gap: 22px; padding: 18px 0; color: rgba(255,255,255,.66); font-family: "Oswald", sans-serif; font-size: 16px; text-transform: uppercase; letter-spacing: .12em; animation: marquee 26s linear infinite; }
.marquee-track i { color: var(--gold); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

.services { padding: 120px 0; }
.section-heading { display: grid; grid-template-columns: 1.1fr .9fr; align-items: end; gap: 70px; margin-bottom: 54px; }
.section-kicker { display: block; margin-bottom: 12px; color: #9a6c23; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .18em; }
.section-heading h2, .value-copy h2, .process-intro h2, .faq-heading h2, .contact-copy h2 { margin: 0; font-family: "Oswald", sans-serif; font-size: clamp(43px, 5vw, 68px); line-height: 1.03; text-transform: uppercase; letter-spacing: -.025em; }
.section-heading p, .value-copy > p, .process-intro > p, .faq-heading p { margin: 0; color: #666b75; font-size: 17px; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { position: relative; min-height: 380px; padding: 32px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.65); overflow: hidden; transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: transparent; }
.service-card::after { content: ""; position: absolute; right: -70px; bottom: -70px; width: 180px; height: 180px; border-radius: 50%; background: rgba(216,169,93,.08); transition: transform .4s ease; }
.service-card:hover::after { transform: scale(1.25); }
.service-number { color: #a2a5ac; font-family: "Oswald", sans-serif; font-size: 13px; letter-spacing: .12em; }
.service-icon { width: 76px; height: 76px; margin: 44px 0 24px; display: grid; place-items: center; border-radius: 22px; }
.service-icon img { width: 62px; height: 62px; object-fit: contain; }
.service-icon.cyan { background: rgba(17,185,214,.14); }
.service-icon.pink { background: rgba(237,23,88,.12); }
.service-icon.gold { background: rgba(247,201,0,.15); }
.service-icon.green { background: rgba(85,181,34,.12); }
.service-icon.black { background: rgba(11,13,18,.08); }
.service-icon.red { background: rgba(190,0,55,.11); }
.service-card h3 { margin: 0 0 10px; font-family: "Oswald", sans-serif; font-size: 27px; text-transform: uppercase; }
.service-card p { color: #6d717a; margin: 0 0 26px; }
.service-card a { position: absolute; z-index: 2; left: 32px; bottom: 28px; font-weight: 700; font-size: 14px; }
.service-card a span { display: inline-block; margin-left: 6px; transition: transform .25s ease; }
.service-card:hover a span { transform: translateX(6px); }
.service-card-featured { color: white; background: var(--ink); border-color: var(--ink); }
.service-card-featured p { color: rgba(255,255,255,.62); }
.service-card-featured::after { background: rgba(216,169,93,.14); }

.value-section { padding: 120px 0; background: white; }
.value-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 90px; }
.value-copy > p { margin: 24px 0 32px; }
.check-list { list-style: none; padding: 0; margin: 0 0 30px; display: grid; gap: 18px; }
.check-list li { display: flex; gap: 14px; align-items: flex-start; }
.check-list li > span { flex: 0 0 28px; width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; background: var(--ink); color: var(--gold-light); font-size: 13px; }
.check-list strong, .check-list small { display: block; }
.check-list strong { font-size: 16px; }
.check-list small { color: #7b7f87; }
.text-link { font-weight: 800; border-bottom: 1px solid var(--ink); padding-bottom: 4px; }
.text-link span { display: inline-block; margin-left: 8px; }
.benefit-stack { display: grid; gap: 16px; }
.benefit-card { display: grid; grid-template-columns: 190px 1fr; align-items: center; min-height: 205px; border-radius: 28px; overflow: hidden; }
.benefit-card img { width: 190px; height: 205px; object-fit: cover; }
.benefit-card > div { padding: 26px 32px; }
.benefit-card span { font-family: "Oswald", sans-serif; font-size: 13px; opacity: .6; }
.benefit-card h3 { margin: 4px 0 6px; font-family: "Oswald", sans-serif; font-size: 31px; text-transform: uppercase; }
.benefit-card p { margin: 0; max-width: 340px; }
.benefit-cyan { background: #bbecf4; }
.benefit-gold { background: #f5d988; }
.benefit-pink { background: #f4c0d2; }

.portfolio { padding: 120px 0; background-image: linear-gradient(rgba(11,13,18,.96), rgba(11,13,18,.98)), url("assets/MOTIVO-BACKGROUND.png"); background-size: auto, 900px auto; }
.section-heading-dark .section-kicker { color: var(--gold-light); }
.section-heading-dark p { color: rgba(255,255,255,.58); }
.portfolio-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 255px; gap: 16px; }
.project-card { position: relative; grid-column: span 4; border-radius: 24px; overflow: hidden; isolation: isolate; }
.project-large { grid-column: span 8; grid-row: span 2; }
.project-wide { grid-column: span 8; }
.project-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.8,.2,1), filter .4s ease; }
.project-card:hover img { transform: scale(1.06); filter: saturate(1.08); }
.project-gradient { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 35%, rgba(5,6,9,.94)); }
.project-info { position: absolute; inset: auto 26px 24px; z-index: 2; }
.project-info span { color: var(--gold-light); font-size: 11px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.project-info h3 { max-width: 640px; margin: 5px 0 10px; font-family: "Oswald", sans-serif; font-size: clamp(24px, 3vw, 42px); line-height: 1; text-transform: uppercase; }
.project-info a { color: rgba(255,255,255,.72); font-size: 13px; font-weight: 700; }

.process { padding: 120px 0; }
.process-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; }
.process-intro { position: sticky; top: 130px; align-self: start; }
.process-intro p { margin: 24px 0 30px; }
.process-list { display: grid; }
.process-step { display: grid; grid-template-columns: 92px 1fr; gap: 28px; padding: 38px 0; border-top: 1px solid var(--line); }
.process-step:last-child { border-bottom: 1px solid var(--line); }
.process-step > span { font-family: "Oswald", sans-serif; color: #9b6b22; font-size: 22px; }
.process-step h3 { margin: 0 0 8px; font-family: "Oswald", sans-serif; font-size: 36px; text-transform: uppercase; }
.process-step p { margin: 0; color: #727680; font-size: 17px; }

.solutions { padding: 120px 0; background: #ebe8e1; }
.solution-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; align-items: stretch; }
.solution-card { position: relative; display: flex; flex-direction: column; padding: 38px; border: 1px solid var(--line); border-radius: 28px; background: rgba(255,255,255,.72); }
.solution-card h3 { margin: 8px 0 12px; font-family: "Oswald", sans-serif; font-size: 34px; text-transform: uppercase; }
.solution-card > p { color: #6f737b; min-height: 78px; }
.solution-label { color: #9a6c23; font-size: 11px; text-transform: uppercase; letter-spacing: .16em; font-weight: 800; }
.solution-card ul { list-style: none; padding: 0; margin: 22px 0 34px; display: grid; gap: 11px; }
.solution-card li { position: relative; padding-left: 24px; }
.solution-card li::before { content: "✓"; position: absolute; left: 0; color: #9a6c23; font-weight: 800; }
.solution-card .btn { margin-top: auto; }
.solution-featured { transform: translateY(-14px); color: white; background: var(--ink); border-color: var(--ink); box-shadow: 0 25px 70px rgba(11,13,18,.22); }
.solution-featured > p { color: rgba(255,255,255,.6); }
.solution-featured .solution-label, .solution-featured li::before { color: var(--gold-light); }
.popular-badge { position: absolute; top: 18px; right: 18px; padding: 7px 12px; border-radius: 999px; background: var(--gold-light); color: var(--ink); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }

.numbers { padding: 72px 0; }
.numbers-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 18px; }
.number-item { text-align: center; padding: 20px; border-right: 1px solid rgba(255,255,255,.12); }
.number-item:last-child { border-right: 0; }
.number-item strong { display: block; color: var(--gold-light); font-family: "Oswald", sans-serif; font-size: 52px; line-height: 1; }
.number-item strong::after { content: "+"; font-size: .55em; vertical-align: top; }
.number-item:nth-child(4) strong::after { content: "%"; }
.number-item:nth-child(5) strong::after { content: ""; }
.number-item span { color: rgba(255,255,255,.55); font-size: 13px; }

.faq { padding: 120px 0; }
.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; }
.faq-heading p { margin-top: 22px; }
.accordion details { border-top: 1px solid var(--line); }
.accordion details:last-child { border-bottom: 1px solid var(--line); }
.accordion summary { list-style: none; cursor: pointer; padding: 26px 50px 26px 0; font-family: "Oswald", sans-serif; font-size: 26px; text-transform: uppercase; position: relative; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after { content: "+"; position: absolute; right: 10px; top: 50%; transform: translateY(-50%); font-family: "DM Sans", sans-serif; font-size: 28px; }
.accordion details[open] summary::after { content: "–"; }
.accordion details p { margin: -4px 0 28px; color: #70747d; max-width: 750px; }

.contact { position: relative; padding: 120px 0; overflow: hidden; background-image: linear-gradient(rgba(11,13,18,.95), rgba(11,13,18,.98)), url("assets/MOTIVO-BACKGROUND.png"); background-size: auto, 900px auto; }
.contact-orb { position: absolute; width: 520px; height: 520px; border-radius: 50%; background: var(--gold); filter: blur(150px); opacity: .13; left: -180px; bottom: -240px; }
.contact-grid { position: relative; display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: center; }
.contact-copy .section-kicker { color: var(--gold-light); }
.contact-copy p { color: rgba(255,255,255,.62); font-size: 18px; }
.contact-points { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.contact-points div { display: flex; align-items: center; gap: 8px; padding: 9px 13px; border: 1px solid rgba(255,255,255,.12); border-radius: 999px; }
.contact-points span { color: var(--gold-light); font-size: 10px; }
.contact-points p { margin: 0; font-size: 12px; color: rgba(255,255,255,.7); }
.lead-form { padding: 34px; border-radius: 28px; background: rgba(255,255,255,.95); color: var(--ink); box-shadow: 0 35px 100px rgba(0,0,0,.35); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.lead-form label { display: grid; gap: 7px; margin-bottom: 14px; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.lead-form input, .lead-form select, .lead-form textarea { width: 100%; border: 1px solid #d9d7d1; background: #f7f5f1; border-radius: 13px; padding: 14px 15px; color: var(--ink); text-transform: none; letter-spacing: 0; outline: none; transition: border .2s ease, box-shadow .2s ease; }
.lead-form textarea { resize: vertical; min-height: 130px; }
.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(216,169,93,.16); }
.form-note { margin: 12px 0 0; color: #777b84; font-size: 11px; text-align: center; }
.form-note.error { color: #b61942; font-weight: 700; }

.site-footer { background: #07080b; color: white; padding: 38px 0 20px; }
.footer-grid { display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 40px; padding-bottom: 28px; border-bottom: 1px solid rgba(255,255,255,.09); }
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand img { width: 54px; height: 54px; border-radius: 15px; }
.footer-brand strong, .footer-brand span { display: block; }
.footer-brand strong { font-family: "Oswald", sans-serif; text-transform: uppercase; }
.footer-brand span { color: rgba(255,255,255,.48); font-size: 12px; }
.footer-nav { display: flex; gap: 22px; color: rgba(255,255,255,.62); font-size: 13px; }
.back-top { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; padding-top: 18px; color: rgba(255,255,255,.35); font-size: 11px; }
.whatsapp-fab { position: fixed; z-index: 900; right: 22px; bottom: 22px; width: 58px; height: 58px; display: grid; place-items: center; border-radius: 50%; background: #23d366; box-shadow: 0 12px 34px rgba(35,211,102,.35); transition: transform .25s ease; }
.whatsapp-fab:hover { transform: translateY(-4px) scale(1.04); }
.whatsapp-fab svg { width: 31px; fill: white; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.8,.2,1); transition-delay: var(--delay, 0ms); }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1050px) {
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 850px; }
  .hero-visual { min-height: 560px; }
  .visual-frame { height: 540px; aspect-ratio: auto; }
  .section-heading, .value-grid, .process-layout, .faq-grid, .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .section-heading { align-items: start; }
  .service-grid, .solution-grid { grid-template-columns: repeat(2,1fr); }
  .process-intro { position: static; }
  .portfolio-grid { grid-auto-rows: 240px; }
  .project-card { grid-column: span 6; }
  .project-large, .project-wide { grid-column: span 12; }
  .numbers-grid { grid-template-columns: repeat(3,1fr); }
  .number-item { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.1); }
}

@media (max-width: 760px) {
  :root { --container: min(100% - 28px, 1180px); --radius: 20px; }
  .nav-wrap { min-height: 70px; }
  .brand img { width: 46px; height: 46px; }
  .brand span { display: none; }
  .menu-toggle { display: block; position: relative; z-index: 2; }
  .menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle.active span:nth-child(2) { opacity: 0; }
  .menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .main-nav { position: fixed; inset: 0; display: grid; place-content: center; gap: 24px; text-align: center; background: rgba(7,8,11,.98); font-size: 22px; transform: translateX(100%); transition: transform .3s ease; }
  .main-nav.open { transform: translateX(0); }
  .nav-cta { margin-top: 12px; }
  .hero { padding: 130px 0 84px; }
  .hero h1 { font-size: clamp(48px, 15vw, 70px); }
  .hero-lead { font-size: 17px; }
  .hero-proof { gap: 20px; justify-content: space-between; }
  .hero-proof strong { font-size: 27px; }
  .hero-proof span { max-width: 90px; }
  .hero-visual { min-height: 500px; }
  .visual-frame { height: 460px; border-radius: 30px 30px 95px 30px; }
  .visual-caption { left: 30px; bottom: 28px; }
  .float-card { min-width: 150px; padding: 12px 15px; }
  .float-card-one { left: -4px; top: 110px; }
  .float-card-two { right: -5px; bottom: 92px; }
  .stamp { width: 110px; top: 6px; right: 0; }
  .services, .value-section, .portfolio, .process, .solutions, .faq, .contact { padding: 84px 0; }
  .section-heading { margin-bottom: 36px; }
  .section-heading h2, .value-copy h2, .process-intro h2, .faq-heading h2, .contact-copy h2 { font-size: 43px; }
  .service-grid, .solution-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 360px; }
  .benefit-card { grid-template-columns: 125px 1fr; min-height: 170px; }
  .benefit-card img { width: 125px; height: 170px; }
  .benefit-card > div { padding: 20px; }
  .benefit-card h3 { font-size: 25px; }
  .portfolio-grid { grid-template-columns: 1fr; grid-auto-rows: 360px; }
  .project-card, .project-large, .project-wide { grid-column: 1; grid-row: auto; }
  .process-step { grid-template-columns: 58px 1fr; gap: 14px; }
  .solution-featured { transform: none; }
  .numbers-grid { grid-template-columns: repeat(2,1fr); }
  .number-item:last-child { grid-column: 1/-1; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .lead-form { padding: 24px; }
  .footer-grid { grid-template-columns: 1fr auto; }
  .footer-nav { grid-column: 1/-1; flex-wrap: wrap; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 460px) {
  .hero-actions .btn { width: 100%; }
  .hero-proof { display: grid; grid-template-columns: repeat(3,1fr); }
  .hero-proof span { font-size: 10px; }
  .hero-visual { min-height: 430px; }
  .visual-frame { height: 410px; }
  .float-card { display: none; }
  .stamp { width: 95px; }
  .benefit-card { grid-template-columns: 1fr; }
  .benefit-card img { width: 100%; height: 210px; }
  .numbers-grid { grid-template-columns: 1fr 1fr; }
  .contact-points { display: grid; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}


/* =========================================================
   AJUSTES RESPONSIVE Y VISUALIZACIÓN COMPLETA DE IMÁGENES
   Evita recortes en escritorio y mejora el comportamiento
   entre pantallas grandes, tablets y móviles.
   ========================================================= */

.hero-grid > *,
.section-heading > *,
.value-grid > *,
.process-layout > *,
.faq-grid > *,
.contact-grid > *,
.form-row > * {
  min-width: 0;
}

.hero {
  min-height: auto;
  padding-bottom: 122px;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, .96fr);
  gap: clamp(38px, 5vw, 72px);
}

.hero-visual {
  width: 100%;
  min-height: 0;
  padding: 68px 0 58px;
}

.visual-frame {
  width: 100%;
  max-width: 620px;
  height: auto;
  aspect-ratio: 1000 / 628;
  border-radius: 38px 38px 104px 38px;
  background: #090b0f;
}

.visual-frame::before {
  inset: 12px;
  border-radius: 28px 28px 90px 28px;
}

.visual-main {
  object-fit: contain;
  object-position: center;
  background: #090b0f;
}

.visual-overlay {
  background: linear-gradient(180deg, transparent 45%, rgba(5, 6, 9, .88));
}

.visual-caption {
  left: 34px;
  bottom: 28px;
}

.visual-caption strong {
  font-size: clamp(22px, 2.15vw, 31px);
  max-width: calc(100% - 36px);
  line-height: 1.05;
}

.float-card-one {
  left: -12px;
  top: 88px;
}

.float-card-two {
  right: -12px;
  bottom: 82px;
}

.stamp {
  right: 2px;
  top: 30px;
  width: 124px;
}

.benefit-card img {
  object-fit: contain;
  object-position: center;
}

.benefit-cyan img { background: #bbecf4; }
.benefit-gold img { background: #f5d988; }
.benefit-pink img { background: #f4c0d2; }

.portfolio-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: auto;
  gap: 22px;
}

.project-card {
  grid-column: auto;
  grid-row: auto;
  min-height: 0;
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(255, 255, 255, .1);
  background:
    radial-gradient(circle at 78% 18%, rgba(216, 169, 93, .16), transparent 35%),
    #10131a;
}

.project-large {
  grid-column: 1 / -1;
  grid-row: auto;
  aspect-ratio: 1000 / 628;
}

.project-wide {
  grid-column: 1 / -1;
  aspect-ratio: 2 / 1;
}

.project-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: transparent;
  transform: none;
}

.project-card:hover img {
  transform: none;
  filter: saturate(1.08) brightness(1.03);
}

.project-wide img {
  left: auto;
  right: 0;
  width: 61%;
  object-position: right center;
}

.project-wide .project-gradient {
  background: linear-gradient(90deg, rgba(5, 6, 9, .98) 0%, rgba(5, 6, 9, .92) 38%, rgba(5, 6, 9, .18) 72%, transparent 100%);
}

.project-wide .project-info {
  inset: 50% auto auto 34px;
  width: 42%;
  transform: translateY(-50%);
}

.project-info {
  max-width: calc(100% - 52px);
}

.project-info h3 {
  overflow-wrap: anywhere;
}

@media (min-width: 1400px) {
  :root { --container: min(1280px, calc(100% - 72px)); }
  .visual-frame { max-width: 680px; }
  .hero-grid { grid-template-columns: minmax(0, 1.02fr) minmax(520px, .98fr); }
}

@media (max-width: 1120px) {
  .main-nav { gap: 20px; }
  .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(390px, .9fr); gap: 38px; }
  .hero h1 { font-size: clamp(54px, 6.2vw, 78px); }
  .float-card-one { left: 0; }
  .float-card-two { right: 0; }
}

@media (max-width: 1050px) {
  .hero {
    padding-top: 142px;
    padding-bottom: 116px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 880px;
  }

  .hero-visual {
    width: min(100%, 820px);
    min-height: 0;
    margin-inline: auto;
    padding: 24px 0 42px;
  }

  .visual-frame {
    max-width: 780px;
    height: auto;
    aspect-ratio: 1000 / 628;
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: auto;
  }

  .project-card {
    grid-column: auto;
  }

  .project-large,
  .project-wide {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  .hero-proof {
    width: 100%;
    justify-content: space-between;
  }

  .project-info h3 {
    font-size: clamp(22px, 4.7vw, 34px);
  }
}

@media (max-width: 760px) {
  .hero {
    padding: 116px 0 102px;
  }

  .hero h1 {
    font-size: clamp(45px, 14vw, 66px);
  }

  .hero-visual {
    min-height: 0;
    padding: 22px 0 24px;
  }

  .visual-frame {
    width: 100%;
    height: auto;
    aspect-ratio: 1000 / 628;
    border-radius: 26px 26px 68px 26px;
  }

  .visual-frame::before {
    inset: 8px;
    border-radius: 20px 20px 58px 20px;
  }

  .visual-caption {
    left: 22px;
    bottom: 20px;
  }

  .visual-caption span {
    font-size: 10px;
  }

  .float-card {
    min-width: 142px;
    padding: 10px 13px;
  }

  .float-card b {
    font-size: 16px;
  }

  .float-card-one {
    left: 4px;
    top: 36px;
  }

  .float-card-two {
    right: 4px;
    bottom: 32px;
  }

  .stamp {
    top: 2px;
    right: 0;
    width: 92px;
  }

  .benefit-card img {
    object-fit: contain;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 18px;
  }

  .project-card,
  .project-large,
  .project-wide {
    grid-column: 1;
    grid-row: auto;
  }

  .project-card {
    aspect-ratio: 1 / 1;
  }

  .project-large {
    aspect-ratio: 1000 / 628;
  }

  .project-wide {
    aspect-ratio: 1 / 1;
  }

  .project-wide img {
    left: 0;
    right: auto;
    width: 100%;
    object-position: center;
  }

  .project-wide .project-gradient {
    background: linear-gradient(180deg, transparent 34%, rgba(5, 6, 9, .95));
  }

  .project-wide .project-info {
    inset: auto 22px 22px;
    width: auto;
    transform: none;
  }

  .project-info {
    inset: auto 22px 22px;
    max-width: calc(100% - 44px);
  }
}

@media (max-width: 560px) {
  .hero-proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }

  .hero-proof span {
    max-width: none;
    line-height: 1.35;
  }

  .float-card {
    display: none;
  }

  .stamp {
    width: 82px;
  }

  .visual-caption strong {
    font-size: 21px;
  }

  .project-info span {
    font-size: 9px;
  }

  .project-info h3 {
    font-size: clamp(21px, 7vw, 29px);
  }

  .project-info a {
    font-size: 12px;
  }
}

@media (max-width: 390px) {
  :root { --container: min(100% - 22px, 1180px); }
  .hero h1 { font-size: clamp(41px, 13.2vw, 55px); }
  .hero-proof strong { font-size: 23px; }
  .hero-proof span { font-size: 9px; }
  .visual-caption span { display: none; }
  .stamp { display: none; }
  .project-info { inset: auto 18px 18px; max-width: calc(100% - 36px); }
  .project-wide .project-info { inset: auto 18px 18px; }
}
