:root {
  --blue-950: #052954;
  --blue-900: #073e82;
  --blue-800: #0753a6;
  --blue-700: #0d69c5;
  --blue-100: #eaf4ff;
  --orange-700: #d93612;
  --orange-600: #ef4b1d;
  --orange-500: #ff641f;
  --orange-100: #fff0e8;
  --yellow-500: #ffbd14;
  --green-600: #17a65b;
  --ink-900: #142033;
  --ink-700: #39465b;
  --ink-500: #647086;
  --line: #dfe6ef;
  --soft: #f5f8fc;
  --white: #ffffff;
  --shadow-sm: 0 8px 25px rgba(14, 39, 72, .08);
  --shadow-md: 0 18px 50px rgba(14, 39, 72, .14);
  --shadow-lg: 0 30px 80px rgba(5, 35, 74, .22);
  --radius-sm: 10px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink-900);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.skip-link { position: fixed; top: -80px; left: 20px; z-index: 9999; background: var(--ink-900); color: white; padding: 12px 18px; border-radius: 8px; }
.skip-link:focus { top: 20px; }

.topbar { background: var(--blue-950); color: rgba(255,255,255,.9); font-size: .84rem; }
.topbar__inner { min-height: 36px; display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.topbar__links { display: flex; gap: 20px; }
.topbar a:hover { color: var(--yellow-500); }

.header { position: sticky; top: 0; z-index: 1000; background: rgba(255,255,255,.96); backdrop-filter: blur(14px); border-bottom: 1px solid rgba(223,230,239,.8); transition: box-shadow .2s ease; }
.header.is-scrolled { box-shadow: var(--shadow-sm); }
.header__inner { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { width: 245px; flex: 0 0 auto; overflow: hidden; border-radius: 8px; }
.brand img { width: 100%; height: 76px; object-fit: cover; object-position: center; }
.nav { display: flex; align-items: center; gap: 20px; font-size: .94rem; font-weight: 700; color: var(--ink-700); }
.nav > a:not(.button) { position: relative; padding: 12px 0; }
.nav > a:not(.button)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 6px; height: 2px; background: var(--orange-600); transition: right .25s ease; }
.nav > a:not(.button):hover { color: var(--blue-900); }
.nav > a:not(.button):hover::after { right: 0; }
.menu-toggle { display: none; border: 0; background: transparent; width: 44px; height: 44px; align-items: center; justify-content: center; flex-direction: column; gap: 5px; }
.menu-toggle span { width: 26px; height: 3px; background: var(--blue-900); border-radius: 99px; transition: transform .25s ease, opacity .25s ease; }
.menu-toggle.is-active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle.is-active span:nth-child(2) { opacity: 0; }
.menu-toggle.is-active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 48px; padding: 12px 22px; border: 0; border-radius: 999px; font-weight: 800; line-height: 1.2; text-align: center; transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button--small { min-height: 42px; padding: 10px 18px; font-size: .9rem; }
.button--large { min-height: 56px; padding: 15px 28px; }
.button--primary { background: linear-gradient(135deg, var(--orange-600), var(--orange-500)); color: white; box-shadow: 0 10px 30px rgba(239,75,29,.28); }
.button--primary:hover { box-shadow: 0 15px 36px rgba(239,75,29,.36); }
.button--dark { background: var(--blue-950); color: white; }
.button--light { background: white; color: var(--blue-900); }
.button--outline { border: 2px solid var(--blue-900); color: var(--blue-900); background: transparent; }
.button--ghost { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.38); color: white; backdrop-filter: blur(8px); }
.button--ghost-light { border: 1px solid rgba(255,255,255,.4); color: white; padding: 12px 22px; border-radius: 999px; font-weight: 800; }
.button--ghost-light:hover { background: rgba(255,255,255,.1); }

.eyebrow { display: inline-block; margin-bottom: 12px; text-transform: uppercase; letter-spacing: .14em; font-weight: 900; font-size: .78rem; color: var(--yellow-500); }
.eyebrow--blue { color: var(--blue-700); }

.hero { position: relative; min-height: 690px; display: grid; align-items: center; overflow: hidden; background: var(--blue-950); }
.hero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: saturate(1.15) contrast(1.04); }
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(4,25,55,.95) 0%, rgba(5,43,87,.83) 47%, rgba(5,43,87,.30) 100%), linear-gradient(0deg, rgba(3,28,59,.65), transparent 55%); }
.hero__content { position: relative; z-index: 2; padding: 90px 0 110px; display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 70px; align-items: center; }
.hero__copy { max-width: 760px; color: white; }
.hero h1 { margin: 0 0 22px; font-size: clamp(2.7rem, 6vw, 5.1rem); line-height: .98; letter-spacing: -.055em; }
.hero h1 span { color: var(--yellow-500); }
.hero__copy > p { max-width: 680px; margin: 0 0 30px; font-size: clamp(1.05rem, 2vw, 1.3rem); color: rgba(255,255,255,.86); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__benefits { display: flex; flex-wrap: wrap; gap: 10px 22px; margin: 28px 0 0; padding: 0; list-style: none; color: rgba(255,255,255,.86); font-weight: 700; font-size: .92rem; }
.hero__benefits li::before { content: "✓"; color: var(--yellow-500); margin-right: 7px; }
.quick-card { padding: 30px; border-radius: var(--radius-lg); color: white; background: linear-gradient(145deg, rgba(255,255,255,.17), rgba(255,255,255,.08)); border: 1px solid rgba(255,255,255,.26); box-shadow: var(--shadow-lg); backdrop-filter: blur(15px); }
.quick-card__icon { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 18px; background: var(--yellow-500); color: var(--blue-950); font-size: 1.5rem; font-weight: 900; }
.quick-card h2 { margin: 20px 0 8px; font-size: 1.6rem; }
.quick-card p { color: rgba(255,255,255,.78); }
.quick-card a { display: block; margin-top: 22px; color: var(--yellow-500); font-weight: 900; }
.quick-card small { display: block; margin-top: 10px; color: rgba(255,255,255,.58); }
.hero__scroll { position: absolute; z-index: 3; left: 50%; bottom: 28px; transform: translateX(-50%); width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; color: white; animation: bounce 1.8s infinite; }
@keyframes bounce { 0%,100% { transform: translate(-50%,0); } 50% { transform: translate(-50%,8px); } }

.trust-strip { position: relative; z-index: 3; margin-top: -40px; }
.trust-strip__grid { display: grid; grid-template-columns: repeat(4,1fr); background: white; border-radius: var(--radius-md); box-shadow: var(--shadow-md); overflow: hidden; }
.trust-strip article { padding: 26px 24px; border-right: 1px solid var(--line); }
.trust-strip article:last-child { border-right: 0; }
.trust-strip strong, .trust-strip span { display: block; }
.trust-strip strong { color: var(--blue-900); margin-bottom: 5px; }
.trust-strip span { font-size: .9rem; color: var(--ink-500); }

.section { padding: 110px 0; }
.section--soft { background: var(--soft); }
.section--blue { color: white; background: radial-gradient(circle at 90% 10%, rgba(27,118,205,.55), transparent 30%), linear-gradient(135deg, var(--blue-950), var(--blue-900)); }
.section--orange { color: white; background: radial-gradient(circle at 0 100%, rgba(255,189,20,.35), transparent 35%), linear-gradient(135deg, var(--orange-700), var(--orange-500)); }
.section-heading { display: grid; grid-template-columns: 1.1fr .9fr; gap: 80px; align-items: end; margin-bottom: 50px; }
.section-heading h2, .center-heading h2, .process-intro h2, .quote-copy h2, .faq-intro h2, .instagram-header h2 { margin: 0; font-size: clamp(2.1rem, 4vw, 3.4rem); line-height: 1.08; letter-spacing: -.035em; }
.section-heading p, .center-heading p, .process-intro > p, .faq-intro > p, .instagram-header p { margin: 0; color: var(--ink-500); font-size: 1.05rem; }
.section-heading--light p { color: rgba(255,255,255,.75); }
.center-heading { max-width: 760px; margin: 0 auto 50px; text-align: center; }
.center-heading p { margin-top: 18px; }

.service-filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
.filter-button { border: 1px solid var(--line); background: white; color: var(--ink-700); padding: 9px 18px; border-radius: 999px; font-weight: 800; }
.filter-button:hover, .filter-button.is-active { background: var(--blue-900); border-color: var(--blue-900); color: white; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { position: relative; min-height: 310px; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius-md); background: white; box-shadow: 0 8px 30px rgba(14,39,72,.04); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; overflow: hidden; }
.service-card::before { content: ""; position: absolute; inset: 0 0 auto; height: 4px; background: linear-gradient(90deg,var(--blue-700),var(--orange-600),var(--yellow-500)); transform: scaleX(0); transform-origin: left; transition: transform .25s ease; }
.service-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-md); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-card.is-hidden { display: none; }
.service-card__number { color: var(--orange-600); font-size: .8rem; font-weight: 900; letter-spacing: .12em; }
.service-card h3 { margin: 12px 0 9px; font-size: 1.35rem; color: var(--blue-950); }
.service-card p { color: var(--ink-500); margin: 0 0 18px; }
.service-card ul { margin: 0; padding: 0; list-style: none; color: var(--ink-700); font-size: .9rem; }
.service-card li { padding: 4px 0 4px 20px; position: relative; }
.service-card li::before { content: "•"; position: absolute; left: 0; color: var(--orange-600); font-weight: 900; }
.services-cta { margin-top: 24px; padding: 28px 30px; display: flex; justify-content: space-between; align-items: center; gap: 24px; border-radius: var(--radius-md); background: var(--blue-100); }
.services-cta strong, .services-cta span { display: block; }
.services-cta strong { font-size: 1.15rem; color: var(--blue-950); }
.services-cta span { color: var(--ink-500); }

.segments-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.segment-card { overflow: hidden; border: 1px solid rgba(255,255,255,.17); border-radius: var(--radius-md); background: rgba(255,255,255,.08); backdrop-filter: blur(10px); transition: transform .25s ease, background .25s ease; }
.segment-card:hover { transform: translateY(-7px); background: rgba(255,255,255,.12); }
.segment-card__image { height: 250px; overflow: hidden; }
.segment-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.segment-card:hover img { transform: scale(1.05); }
.segment-card__body { padding: 28px; }
.segment-card__body > span { color: var(--yellow-500); text-transform: uppercase; font-size: .76rem; font-weight: 900; letter-spacing: .12em; }
.segment-card h3 { margin: 8px 0 10px; font-size: 1.45rem; }
.segment-card p { color: rgba(255,255,255,.7); }
.segment-card a { display: inline-block; margin-top: 12px; color: var(--yellow-500); font-weight: 900; }

.process-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 90px; align-items: start; }
.process-intro { position: sticky; top: 130px; }
.process-intro > p { margin-top: 18px; }
.process-intro img { margin-top: 32px; height: 310px; width: 100%; object-fit: cover; border-radius: var(--radius-md); box-shadow: var(--shadow-md); }
.process-intro small { display: block; margin-top: 8px; color: var(--ink-500); }
.timeline { margin: 0; padding: 0; list-style: none; }
.timeline li { display: grid; grid-template-columns: 60px 1fr; gap: 24px; padding: 0 0 34px; position: relative; }
.timeline li::after { content: ""; position: absolute; left: 29px; top: 58px; bottom: 2px; width: 2px; background: var(--line); }
.timeline li:last-child::after { display: none; }
.timeline li > span { width: 60px; height: 60px; display: grid; place-items: center; border-radius: 20px; color: white; font-size: 1.15rem; font-weight: 900; background: linear-gradient(135deg,var(--blue-800),var(--blue-900)); box-shadow: 0 10px 25px rgba(7,62,130,.22); }
.timeline h3 { margin: 2px 0 7px; font-size: 1.25rem; color: var(--blue-950); }
.timeline p { margin: 0; color: var(--ink-500); }

.gallery { display: grid; grid-template-columns: repeat(3,1fr); grid-auto-rows: 310px; gap: 18px; }
.gallery__item { position: relative; margin: 0; border-radius: var(--radius-md); overflow: hidden; background: var(--blue-950); }
.gallery__item--wide { grid-column: span 2; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.gallery__item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg,rgba(5,31,65,.88),transparent 58%); }
.gallery__item:hover img { transform: scale(1.05); }
.gallery figcaption { position: absolute; z-index: 2; left: 24px; right: 24px; bottom: 22px; color: white; }
.gallery figcaption strong, .gallery figcaption span { display: block; }
.gallery figcaption strong { font-size: 1.15rem; }
.gallery figcaption span { color: rgba(255,255,255,.74); font-size: .9rem; }
.video-showcase { margin-top: 50px; display: grid; grid-template-columns: .8fr 1.2fr; gap: 45px; align-items: center; padding: 46px; border-radius: var(--radius-lg); background: white; box-shadow: var(--shadow-md); }
.video-showcase h3 { margin: 0 0 14px; font-size: 2rem; line-height: 1.15; color: var(--blue-950); }
.video-showcase p { color: var(--ink-500); margin-bottom: 24px; }
.video-showcase video { width: 100%; border-radius: var(--radius-md); background: var(--blue-950); box-shadow: var(--shadow-md); }

.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.feature-card { padding: 30px; border-radius: var(--radius-md); background: var(--soft); border: 1px solid transparent; transition: border-color .25s ease, background .25s ease, transform .25s ease; }
.feature-card:hover { transform: translateY(-5px); border-color: var(--blue-100); background: white; box-shadow: var(--shadow-sm); }
.feature-card span { display: inline-grid; place-items: center; width: 42px; height: 42px; border-radius: 14px; background: var(--blue-900); color: white; font-weight: 900; }
.feature-card h3 { margin: 18px 0 9px; color: var(--blue-950); }
.feature-card p { margin: 0; color: var(--ink-500); }

.instagram-section { background: linear-gradient(135deg,#5c2ab5,#c02c8a 50%,#ef4b1d); color: white; }
.instagram-header { display: flex; justify-content: space-between; gap: 50px; align-items: end; margin-bottom: 42px; }
.instagram-header > div:first-child { max-width: 720px; }
.instagram-header p { color: rgba(255,255,255,.75); margin-top: 16px; }
.instagram-profiles { display: flex; flex-wrap: wrap; gap: 10px; }
.instagram-profiles a { padding: 10px 17px; border: 1px solid rgba(255,255,255,.45); border-radius: 999px; font-weight: 900; }
.instagram-profiles a:hover { background: white; color: #7b2ab5; }
.instagram-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 10px; }
.instagram-grid a { position: relative; aspect-ratio: 1; overflow: hidden; border-radius: 15px; background: white; }
.instagram-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease, filter .35s ease; }
.instagram-grid span { position: absolute; inset: auto 10px 10px; padding: 7px 10px; border-radius: 999px; background: rgba(0,0,0,.72); color: white; font-size: .72rem; font-weight: 800; opacity: 0; transform: translateY(8px); transition: .25s ease; text-align: center; }
.instagram-grid a:hover img { transform: scale(1.08); filter: brightness(.72); }
.instagram-grid a:hover span { opacity: 1; transform: translateY(0); }

.quote-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 80px; align-items: start; }
.quote-copy h2 { color: white; }
.quote-copy > p { color: rgba(255,255,255,.8); font-size: 1.05rem; }
.quote-copy > ul { margin: 28px 0; padding: 0; list-style: none; }
.quote-copy > ul li { position: relative; padding: 8px 0 8px 30px; color: rgba(255,255,255,.88); }
.quote-copy > ul li::before { content: "✓"; position: absolute; left: 0; color: var(--yellow-500); font-weight: 900; }
.quote-contact { display: grid; gap: 12px; margin-top: 32px; }
.quote-contact a { padding: 16px 18px; border: 1px solid rgba(255,255,255,.25); border-radius: 14px; background: rgba(255,255,255,.07); }
.quote-contact span, .quote-contact strong { display: block; }
.quote-contact span { font-size: .8rem; color: rgba(255,255,255,.65); }
.quote-contact strong { color: white; }
.quote-form { padding: 36px; border-radius: var(--radius-lg); background: white; color: var(--ink-900); box-shadow: var(--shadow-lg); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.quote-form label { display: block; margin-bottom: 16px; color: var(--ink-700); font-size: .9rem; font-weight: 800; }
.quote-form input, .quote-form select, .quote-form textarea { width: 100%; margin-top: 7px; border: 1px solid var(--line); border-radius: 12px; background: #fbfcfe; color: var(--ink-900); padding: 13px 14px; outline: none; transition: border-color .2s ease, box-shadow .2s ease; }
.quote-form textarea { resize: vertical; }
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus { border-color: var(--blue-700); box-shadow: 0 0 0 4px rgba(13,105,197,.12); }
.quote-form .is-invalid { border-color: #c9302c; box-shadow: 0 0 0 4px rgba(201,48,44,.09); }
.consent { display: flex !important; align-items: flex-start; gap: 10px; font-weight: 500 !important; }
.consent input { width: 18px; height: 18px; margin: 3px 0 0; flex: 0 0 auto; }
.quote-form .button { width: 100%; }
.form-status { min-height: 24px; margin: 12px 0 0; font-size: .88rem; font-weight: 700; color: #b3261e; }

.faq-layout { display: grid; grid-template-columns: .7fr 1.3fr; gap: 80px; align-items: start; }
.faq-intro { position: sticky; top: 130px; }
.faq-intro > p { margin: 18px 0 25px; }
.accordion { display: grid; gap: 12px; }
.accordion details { border: 1px solid var(--line); border-radius: 16px; padding: 0 22px; background: white; }
.accordion summary { padding: 20px 35px 20px 0; font-weight: 900; color: var(--blue-950); cursor: pointer; list-style: none; position: relative; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after { content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%); width: 28px; height: 28px; display: grid; place-items: center; border-radius: 9px; background: var(--blue-100); color: var(--blue-900); font-size: 1.25rem; }
.accordion details[open] summary::after { content: "−"; }
.accordion details p { margin: 0; padding: 0 0 20px; color: var(--ink-500); }

.contact-band { padding: 70px 0; color: white; background: linear-gradient(135deg,var(--blue-950),var(--blue-800)); }
.contact-band__inner { display: flex; justify-content: space-between; align-items: center; gap: 50px; }
.contact-band h2 { margin: 0; font-size: clamp(2rem,4vw,3.2rem); line-height: 1.08; }
.contact-band p { margin: 10px 0 0; color: rgba(255,255,255,.7); }
.contact-band__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; justify-content: flex-end; }

.footer { padding: 70px 0 0; background: #071d38; color: rgba(255,255,255,.72); }
.footer__grid { display: grid; grid-template-columns: 1.5fr repeat(3,1fr); gap: 55px; }
.footer__brand img { width: 280px; height: 92px; object-fit: cover; object-position: center; border-radius: 10px; background: white; }
.footer__brand p { max-width: 380px; }
.footer__brand strong { color: var(--yellow-500); }
.footer h3 { color: white; font-size: 1rem; margin: 0 0 18px; }
.footer__grid > div:not(.footer__brand) a { display: block; padding: 5px 0; font-size: .92rem; }
.footer a:hover { color: var(--yellow-500); }
.footer__bottom { margin-top: 55px; padding: 22px 0; display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.12); font-size: .78rem; }

.whatsapp-float { position: fixed; right: 22px; bottom: 22px; z-index: 999; display: flex; align-items: center; gap: 9px; padding: 8px 14px 8px 8px; border-radius: 999px; background: var(--green-600); color: white; font-weight: 900; box-shadow: 0 15px 35px rgba(16,120,65,.35); }
.whatsapp-float__icon { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; background: white; color: var(--green-600); font-weight: 1000; }
.whatsapp-float:hover { transform: translateY(-3px); }
.back-to-top { position: fixed; right: 22px; bottom: 88px; z-index: 998; width: 44px; height: 44px; border: 0; border-radius: 50%; background: var(--blue-950); color: white; opacity: 0; visibility: hidden; transform: translateY(10px); transition: .2s ease; box-shadow: var(--shadow-sm); }
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }

.reveal { opacity: 0; transform: translateY(25px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* Internal pages */
.legal-page { background: var(--soft); }
.legal-hero { padding: 85px 0 55px; color: white; background: linear-gradient(135deg,var(--blue-950),var(--blue-800)); }
.legal-hero h1 { margin: 0; font-size: clamp(2.3rem,5vw,4rem); }
.legal-hero p { max-width: 760px; color: rgba(255,255,255,.75); }
.legal-content { max-width: 880px; margin: 60px auto 100px; padding: 46px; background: white; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.legal-content h2 { margin-top: 35px; color: var(--blue-950); }
.legal-content h2:first-child { margin-top: 0; }
.legal-content a { color: var(--blue-700); text-decoration: underline; }

@media (max-width: 1100px) {
  .nav { gap: 14px; font-size: .88rem; }
  .brand { width: 210px; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .instagram-grid { grid-template-columns: repeat(3,1fr); }
  .hero__content { grid-template-columns: 1fr 300px; gap: 35px; }
}

@media (max-width: 900px) {
  .topbar__inner > span { display: none; }
  .topbar__links { width: 100%; justify-content: center; }
  .menu-toggle { display: flex; }
  .header__inner { min-height: 76px; }
  .brand { width: 210px; }
  .nav { position: fixed; left: 20px; right: 20px; top: 116px; display: grid; gap: 4px; padding: 18px; border-radius: 18px; background: white; box-shadow: var(--shadow-lg); transform: translateY(-12px); opacity: 0; visibility: hidden; transition: .25s ease; }
  .nav.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
  .nav > a:not(.button) { padding: 10px 8px; }
  .hero { min-height: 760px; }
  .hero__content { grid-template-columns: 1fr; }
  .quick-card { display: none; }
  .trust-strip__grid { grid-template-columns: repeat(2,1fr); }
  .trust-strip article:nth-child(2) { border-right: 0; }
  .trust-strip article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .section-heading { grid-template-columns: 1fr; gap: 20px; }
  .segments-grid { grid-template-columns: 1fr; }
  .segment-card { display: grid; grid-template-columns: .9fr 1.1fr; }
  .segment-card__image { height: 100%; min-height: 280px; }
  .process-layout, .quote-layout, .faq-layout { grid-template-columns: 1fr; gap: 45px; }
  .process-intro, .faq-intro { position: static; }
  .gallery { grid-template-columns: repeat(2,1fr); }
  .gallery__item--wide { grid-column: span 1; }
  .video-showcase { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: repeat(2,1fr); }
  .instagram-header { display: block; }
  .instagram-profiles { margin-top: 22px; }
  .contact-band__inner { display: block; }
  .contact-band__actions { margin-top: 28px; justify-content: flex-start; }
  .footer__grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .topbar { display: none; }
  .nav { top: 86px; }
  .header__inner { min-height: 72px; }
  .brand { width: 180px; }
  .brand img { height: 62px; }
  .hero { min-height: 720px; }
  .hero__overlay { background: linear-gradient(0deg,rgba(4,25,55,.96),rgba(5,43,87,.72)); }
  .hero__content { padding: 80px 0 100px; }
  .hero h1 { font-size: 2.65rem; }
  .hero__actions .button { width: 100%; }
  .hero__benefits { display: grid; }
  .trust-strip { margin-top: -28px; }
  .trust-strip__grid { grid-template-columns: 1fr; }
  .trust-strip article { border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-strip article:last-child { border-bottom: 0; }
  .section { padding: 78px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .services-cta { display: block; }
  .services-cta .button { margin-top: 18px; width: 100%; }
  .segment-card { display: block; }
  .segment-card__image { height: 230px; min-height: 0; }
  .timeline li { grid-template-columns: 48px 1fr; gap: 16px; }
  .timeline li > span { width: 48px; height: 48px; border-radius: 15px; }
  .timeline li::after { left: 23px; top: 47px; }
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 270px; }
  .video-showcase { padding: 25px; }
  .features-grid { grid-template-columns: 1fr; }
  .instagram-grid { grid-template-columns: repeat(2,1fr); }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .quote-form { padding: 24px; }
  .contact-band__actions .button, .contact-band__actions .button--ghost-light { width: 100%; }
  .footer__grid { grid-template-columns: 1fr; gap: 35px; }
  .footer__bottom { display: block; }
  .footer__bottom span { display: block; margin-top: 8px; }
  .whatsapp-float__text { display: none; }
  .whatsapp-float { padding: 8px; }
}

@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; }
}

html { scroll-padding-top: 110px; }
body.menu-open { overflow: hidden; }

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 2000;
  height: 4px;
  background: rgba(255,255,255,.08);
  pointer-events: none;
}
.scroll-progress span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--yellow-500), var(--orange-500), var(--blue-700));
  box-shadow: 0 0 18px rgba(255,100,31,.45);
}

.nav > a.is-current {
  color: var(--blue-900);
}
.nav > a.is-current::after {
  right: 0;
}

.hero {
  isolation: isolate;
}
.hero__decor {
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  pointer-events: none;
  opacity: .5;
  filter: blur(10px);
  transition: transform .35s ease;
}
.hero__decor--1 {
  top: 4%;
  right: -120px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(255,189,20,.72) 0%, rgba(255,189,20,.08) 62%, transparent 74%);
  animation: floatBlob 10s ease-in-out infinite;
}
.hero__decor--2 {
  left: -120px;
  bottom: 8%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(13,105,197,.55) 0%, rgba(13,105,197,.12) 62%, transparent 75%);
  animation: floatBlob 12s ease-in-out infinite reverse;
}
.hero__decor--3 {
  right: 22%;
  bottom: 16%;
  width: 170px;
  height: 170px;
  background: radial-gradient(circle, rgba(255,255,255,.28) 0%, rgba(255,255,255,.08) 56%, transparent 74%);
  animation: floatBlob 8s ease-in-out infinite;
}
.hero__side {
  display: grid;
  gap: 16px;
  align-self: center;
}
.hero-badges {
  display: grid;
  gap: 12px;
}
.hero-badge {
  padding: 15px 18px;
  border-radius: 18px;
  color: white;
  background: linear-gradient(145deg, rgba(255,255,255,.18), rgba(255,255,255,.08));
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgba(2, 19, 43, .25);
  animation: badgeFloat 5s ease-in-out infinite;
}
.hero-badge:nth-child(2) { animation-delay: .7s; }
.hero-badge:nth-child(3) { animation-delay: 1.4s; }
.hero-badge strong, .hero-badge span { display: block; }
.hero-badge strong { font-size: .96rem; }
.hero-badge span { color: rgba(255,255,255,.76); font-size: .84rem; margin-top: 4px; }
.quick-card, .service-card, .segment-card, .feature-card, .gallery__item, .quote-form, .instagram-grid a {
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease, background .28s ease, filter .28s ease;
}

.marquee-strip {
  position: relative;
  z-index: 2;
  overflow: hidden;
  color: white;
  background: linear-gradient(90deg, rgba(7,62,130,.98), rgba(13,105,197,.95), rgba(239,75,29,.95));
  border-top: 1px solid rgba(255,255,255,.12);
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.marquee {
  display: flex;
  overflow: hidden;
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  padding: 14px 0;
  font-size: .84rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  white-space: nowrap;
  animation: marqueeMove 30s linear infinite;
}
.marquee__track span {
  display: inline-flex;
  align-items: center;
}
.marquee__track span::after {
  content: '•';
  margin: 0 18px;
  color: var(--yellow-500);
}

.process-intro img {
  object-fit: contain;
  padding: 18px;
  background: linear-gradient(135deg, #ffffff, #f0f6ff);
}

.tilt-card {
  transform-style: preserve-3d;
  will-change: transform;
}

.whatsapp-float {
  animation: pulseFloat 2.6s ease-in-out infinite;
}
.whatsapp-float:hover {
  animation-play-state: paused;
}

@keyframes floatBlob {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(0, -16px, 0) scale(1.04); }
}
@keyframes badgeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
@keyframes marqueeMove {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes pulseFloat {
  0%, 100% { transform: translateY(0) scale(1); box-shadow: 0 15px 35px rgba(16,120,65,.35); }
  50% { transform: translateY(-3px) scale(1.03); box-shadow: 0 20px 42px rgba(16,120,65,.42); }
}

@media (max-width: 1100px) {
  .hero__content { grid-template-columns: 1fr 320px; }
}

@media (max-width: 900px) {
  html { scroll-padding-top: 90px; }
  .hero__side { gap: 12px; }
  .hero-badges { grid-template-columns: repeat(3, 1fr); }
  .marquee__track { font-size: .76rem; }
}

@media (max-width: 640px) {
  html { scroll-padding-top: 82px; }
  .scroll-progress { height: 3px; }
  .hero__decor--1 { width: 220px; height: 220px; right: -80px; }
  .hero__decor--2 { width: 190px; height: 190px; left: -90px; }
  .hero__decor--3 { display: none; }
  .hero-badges { grid-template-columns: 1fr; }
  .hero-badge { padding: 14px 15px; }
  .marquee__track { padding: 11px 0; font-size: .7rem; }
  .process-intro img { padding: 14px; height: auto; }
}

@media (prefers-reduced-motion: reduce) {
  .marquee__track,
  .hero__decor,
  .hero-badge,
  .whatsapp-float {
    animation: none !important;
  }
}
