@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/lato-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('assets/fonts/lato-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('assets/fonts/lato-900.woff2') format('woff2');
}

:root {
  --blue: #0193e8;
  --blue-dark: #0277b8;
  --blue-deep: #075d91;
  --green: #21aa57;
  --green-dark: #168745;
  --ink: #16323f;
  --muted: #526a76;
  --line: rgba(255, 255, 255, .72);
  --glass: rgba(255, 255, 255, .54);
  --glass-strong: rgba(255, 255, 255, .72);
  --shadow: 0 22px 60px rgba(3, 95, 145, .13);
  --shadow-soft: 0 12px 34px rgba(3, 95, 145, .10);
  --radius: 28px;
  --radius-small: 20px;
  --container: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 112px; }
body { margin: 0; color: var(--ink); background: #e7f4fc; font-family: "Lato", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; -webkit-font-smoothing: antialiased; }
body:has(dialog[open]) { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { text-wrap: balance; }
p { text-wrap: pretty; }

.skip-link { position: fixed; top: 8px; left: 8px; z-index: 200; padding: 12px 18px; color: #fff; background: var(--ink); border-radius: 12px; transform: translateY(-160%); transition: transform .2s ease; }
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid #ffbf47; outline-offset: 3px; }

.page-shell { position: relative; min-height: 100vh; overflow: clip; background: radial-gradient(900px 620px at 8% 2%, rgba(52,169,237,.48), transparent 62%), radial-gradient(900px 740px at 96% 8%, rgba(146,236,229,.56), transparent 62%), radial-gradient(980px 860px at 70% 96%, rgba(1,147,232,.30), transparent 62%), linear-gradient(180deg,#eaf7ff 0%,#def1f6 45%,#e8f5fc 100%); }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { position: relative; padding: 86px 0; }
.section-compact { padding: 34px 0 72px; }

.orb { position: absolute; border-radius: 50%; filter: blur(10px); pointer-events: none; animation: drift 12s ease-in-out infinite; }
.orb-one { top: 360px; left: -110px; width: 300px; height: 300px; background: radial-gradient(circle at 35% 30%, rgba(255,255,255,.8), rgba(52,169,237,.24)); }
.orb-two { top: 1680px; right: -100px; width: 270px; height: 270px; background: radial-gradient(circle at 35% 30%, rgba(255,255,255,.78), rgba(150,235,225,.25)); animation-delay: -5s; }
@keyframes drift { 0%,100% { transform: translate3d(0,0,0); } 50% { transform: translate3d(0,-18px,0); } }

.glass-panel, .glass-chip { position: relative; overflow: hidden; background: var(--glass); border: 1px solid var(--line); box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255,255,255,.86); backdrop-filter: blur(22px) saturate(165%); -webkit-backdrop-filter: blur(22px) saturate(165%); }
.glass-panel::after { content: ""; position: absolute; top: 0; left: -140%; width: 60%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,.24), transparent); transform: skewX(-20deg); pointer-events: none; transition: left .75s ease; }
.glass-panel:hover::after { left: 140%; }

.site-header { position: sticky; top: 0; z-index: 80; padding: 14px 20px 0; }
.header-inner { width: min(100%, 1240px); min-height: 66px; margin: 0 auto; padding: 10px 12px 10px 20px; display: flex; align-items: center; gap: 28px; border-radius: 999px; background: rgba(255,255,255,.68); box-shadow: 0 12px 34px rgba(1,109,180,.14), inset 0 1px 0 #fff; }
.brand { display: inline-flex; align-items: baseline; gap: 7px; flex: 0 0 auto; font-size: 20px; line-height: 1; font-weight: 700; letter-spacing: -.02em; }
.brand-primary { color: var(--blue); font-weight: 900; }
.brand-secondary { color: var(--ink); }
.desktop-nav { display: flex; align-items: center; justify-content: center; gap: 26px; margin-left: auto; }
.desktop-nav a { color: #35505e; font-size: 14px; font-weight: 700; transition: color .2s ease; }
.desktop-nav a:hover { color: var(--blue-dark); }
.header-actions { display: flex; align-items: center; gap: 15px; }
.header-phone { font-size: 14px; font-weight: 900; white-space: nowrap; }

.button { min-height: 46px; padding: 12px 22px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid transparent; border-radius: 999px; font-weight: 900; line-height: 1.15; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: #fff; background: linear-gradient(180deg,#2ecb6d,var(--green)); box-shadow: 0 10px 24px rgba(24,145,72,.30), inset 0 1px 0 rgba(255,255,255,.4); }
.button-primary:hover { background: linear-gradient(180deg,#28bd64,var(--green-dark)); box-shadow: 0 14px 30px rgba(24,145,72,.34); }
.button-secondary { color: var(--blue-dark); background: rgba(255,255,255,.68); border-color: rgba(255,255,255,.85); box-shadow: 0 8px 22px rgba(1,109,180,.12), inset 0 1px 0 #fff; }
.button-light { color: var(--blue-dark); background: #fff; box-shadow: 0 10px 26px rgba(7,54,83,.18); }
.button-small { min-height: 42px; padding: 11px 19px; font-size: 14px; }
.button-large { min-height: 54px; padding: 15px 27px; font-size: 16px; }

.hero { padding-top: 64px; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(380px, .98fr); gap: clamp(42px, 6vw, 78px); align-items: center; }
.eyebrow { width: fit-content; margin-bottom: 22px; padding: 9px 15px; border-radius: 999px; color: var(--blue-deep); font-size: 13px; font-weight: 900; }
.hero h1 { max-width: 690px; margin-bottom: 22px; font-size: clamp(40px, 5vw, 65px); line-height: .99; letter-spacing: -.045em; font-weight: 900; }
.hero-lead { max-width: 620px; margin-bottom: 30px; color: var(--muted); font-size: clamp(17px, 1.8vw, 20px); line-height: 1.6; }
.hero-actions, .cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.trust-list { margin: 27px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 11px 20px; list-style: none; color: #35515f; font-size: 14px; font-weight: 900; }
.trust-list li { position: relative; padding-left: 19px; }
.trust-list li::before { content: ""; position: absolute; left: 1px; top: .38em; width: 9px; height: 5px; border-left: 2px solid var(--green); border-bottom: 2px solid var(--green); transform: rotate(-45deg); }
.hero-media { position: relative; padding-bottom: 40px; }
.image-frame { padding: 11px; background: rgba(255,255,255,.48); border: 1px solid rgba(255,255,255,.76); border-radius: 32px; box-shadow: var(--shadow), inset 0 1px 0 #fff; backdrop-filter: blur(18px); }
.hero-frame img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 22px; }
.hero-proof { position: absolute; right: -18px; bottom: 0; max-width: 265px; padding: 17px 19px; display: grid; gap: 4px; border-radius: 18px; }
.hero-proof strong { font-size: 15px; }
.hero-proof span { color: var(--muted); font-size: 13px; line-height: 1.45; }

.section-heading { max-width: 650px; margin-bottom: 34px; }
.section-heading .kicker, .kicker { margin-bottom: 10px; color: var(--blue-dark); font-size: 12px; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.section-heading h2, .why-intro h2, .cta-panel h2 { margin-bottom: 14px; font-size: clamp(30px, 3.5vw, 44px); line-height: 1.08; letter-spacing: -.035em; font-weight: 900; }
.section-heading > p:last-child, .why-intro > p:last-child { margin-bottom: 0; color: var(--muted); font-size: 17px; line-height: 1.6; }

.service-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.service-card { grid-column: span 4; min-height: 280px; padding: 27px; display: flex; flex-direction: column; border-radius: var(--radius-small); transition: transform .25s ease, box-shadow .25s ease, background .25s ease; }
.service-card:hover { transform: translateY(-6px); background: rgba(255,255,255,.66); box-shadow: var(--shadow); }
.service-card-featured { grid-column: span 8; min-height: 240px; background: linear-gradient(125deg, rgba(255,255,255,.64), rgba(205,242,250,.48)); }
.service-number { width: 42px; height: 32px; margin-bottom: 30px; display: grid; place-items: center; color: var(--blue-dark); background: rgba(255,255,255,.62); border: 1px solid rgba(255,255,255,.76); border-radius: 999px; font-size: 12px; font-weight: 900; }
.service-card h3 { margin-bottom: 11px; font-size: 21px; }
.service-card p { margin-bottom: 22px; color: var(--muted); font-size: 15px; line-height: 1.6; }
.service-card a { width: fit-content; margin-top: auto; color: var(--blue-dark); font-size: 14px; font-weight: 900; border-bottom: 1px solid rgba(2,119,184,.32); }

.why-panel { padding: clamp(30px, 5vw, 56px); display: grid; grid-template-columns: .8fr 1.2fr; gap: 52px; border-radius: var(--radius); }
.why-intro h2 { font-size: clamp(29px, 3.2vw, 40px); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px 34px; }
.why-grid article > span { width: 34px; height: 34px; margin-bottom: 15px; display: grid; place-items: center; color: var(--blue-dark); background: rgba(255,255,255,.6); border-radius: 10px; font-size: 11px; font-weight: 900; }
.why-grid h3 { margin-bottom: 7px; font-size: 17px; }
.why-grid p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.55; }

.portfolio-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
.portfolio-card { grid-column: span 4; position: relative; min-height: 310px; margin: 0; padding: 9px; overflow: hidden; background: rgba(255,255,255,.50); border: 1px solid rgba(255,255,255,.74); border-radius: 24px; box-shadow: var(--shadow-soft), inset 0 1px 0 #fff; }
.portfolio-card:nth-child(1), .portfolio-card:nth-child(4) { grid-column: span 5; }
.portfolio-card:nth-child(2), .portfolio-card:nth-child(3) { grid-column: span 7; }
.portfolio-card img { width: 100%; height: 300px; object-fit: cover; border-radius: 17px; transition: transform .55s cubic-bezier(.2,.8,.2,1); }
.portfolio-card:hover img { transform: scale(1.035); }
.portfolio-card figcaption { position: absolute; left: 22px; bottom: 22px; padding: 9px 13px; color: var(--ink); background: rgba(255,255,255,.82); border: 1px solid rgba(255,255,255,.9); border-radius: 999px; box-shadow: 0 8px 24px rgba(11,48,68,.15); backdrop-filter: blur(12px); font-size: 13px; font-weight: 900; }

.process-panel { padding: clamp(30px, 5vw, 54px); background: linear-gradient(135deg, rgba(5,115,178,.93), rgba(1,147,232,.76)); border: 1px solid rgba(255,255,255,.38); border-radius: var(--radius); box-shadow: 0 24px 58px rgba(1,109,180,.25), inset 0 1px 0 rgba(255,255,255,.42); color: #fff; }
.process-panel .kicker { color: #d8f4ff; }
.process-panel .section-heading { margin-bottom: 32px; }
.process-grid { margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; list-style: none; }
.process-grid li { padding: 22px; display: flex; gap: 15px; background: rgba(255,255,255,.11); border: 1px solid rgba(255,255,255,.22); border-radius: 18px; }
.process-grid li > span { flex: 0 0 36px; height: 36px; display: grid; place-items: center; color: var(--blue-deep); background: #fff; border-radius: 50%; font-weight: 900; }
.process-grid h3 { margin-bottom: 7px; font-size: 17px; }
.process-grid p { margin: 0; color: #dceffc; font-size: 14px; line-height: 1.5; }

.regions-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 62px; align-items: center; }
.regions-layout .section-heading { margin-bottom: 0; }
.region-list { margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; list-style: none; }
.region-list li { padding: 11px 16px; color: var(--blue-dark); background: rgba(255,255,255,.58); border: 1px solid rgba(255,255,255,.78); border-radius: 999px; box-shadow: inset 0 1px 0 #fff; font-size: 14px; font-weight: 900; }

.faq-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: start; }
.faq-layout .section-heading { margin-bottom: 0; }
.faq-list { display: grid; gap: 12px; }
.faq-list details { padding: 0 20px; background: rgba(255,255,255,.5); border: 1px solid rgba(255,255,255,.74); border-radius: 18px; box-shadow: var(--shadow-soft); transition: background .2s ease; }
.faq-list details[open] { background: rgba(255,255,255,.75); }
.faq-list summary { position: relative; padding: 20px 34px 20px 0; cursor: pointer; list-style: none; font-weight: 900; transition: color .2s ease; }
.faq-list details[open] summary { color: var(--blue-dark); }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; top: 17px; right: 0; color: var(--blue-dark); font-size: 23px; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { margin: -2px 0 20px; color: var(--muted); line-height: 1.6; animation: faqFadeIn .25s ease; }
@keyframes faqFadeIn { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: translateY(0); } }

.final-cta { padding-top: 54px; }
.cta-panel { padding: clamp(42px, 7vw, 74px) 30px; text-align: center; color: #fff; background: linear-gradient(135deg, rgba(1,147,232,.93), rgba(2,105,167,.96)); border: 1px solid rgba(255,255,255,.35); border-radius: 32px; box-shadow: 0 26px 62px rgba(1,109,180,.3), inset 0 1px 0 rgba(255,255,255,.45); }
.kicker-light { color: #d8f4ff; }
.cta-panel h2 { margin-bottom: 13px; font-size: clamp(36px, 4.5vw, 54px); }
.cta-panel > p:not(.kicker) { max-width: 590px; margin: 0 auto 28px; color: #e1f3ff; font-size: 18px; line-height: 1.6; }
.cta-actions { justify-content: center; }
.cta-trust-note { margin: 10px 0 0; color: var(--muted); font-size: 13px; font-weight: 700; }
.cta-trust-note-light { color: #d8f4ff; margin-top: 14px; }
.section-deferred { content-visibility: auto; contain-intrinsic-size: 1px 650px; }

.site-footer { position: relative; padding: 0 0 24px; }
.footer-inner { padding: 28px 30px; display: grid; grid-template-columns: 1fr auto; gap: 20px 40px; align-items: center; color: #c7d5dc; background: rgba(17,37,48,.9); border: 1px solid rgba(255,255,255,.12); border-radius: 24px; }
.brand-footer { margin-bottom: 8px; color: #fff; }
.footer-inner p { margin: 0; font-size: 14px; }
.footer-contact { display: flex; align-items: center; gap: 20px; }
.footer-inner small { color: #8ea4af; font-size: 13px; }
.footer-bottom { grid-column: 1 / -1; display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 12px; border-top: 1px solid rgba(255,255,255,.1); padding-top: 18px; margin-top: 6px; }
.footer-credit a { color: #d8f4ff; font-weight: 700; text-decoration: underline; text-underline-offset: 3px; transition: color .2s ease; }
.footer-credit a:hover { color: #fff; }

@keyframes pulse-subtle {
  0%, 100% { transform: translateY(0) scale(1); box-shadow: 0 14px 34px rgba(24,145,72,.36); }
  50% { transform: translateY(-2px) scale(1.04); box-shadow: 0 18px 40px rgba(24,145,72,.5); }
}
.floating-whatsapp { position: fixed; right: 20px; bottom: 20px; z-index: 70; min-height: 50px; padding: 14px 22px; color: #fff; background: linear-gradient(180deg,#2ecb6d,var(--green)); border: 1px solid rgba(255,255,255,.35); border-radius: 999px; box-shadow: 0 14px 34px rgba(24,145,72,.36); font-weight: 900; transform: translateY(100px); opacity: 0; pointer-events: none; transition: transform .3s ease, opacity .3s ease; }
.floating-whatsapp.is-visible { transform: translateY(0); opacity: 1; pointer-events: auto; animation: pulse-subtle 4s infinite ease-in-out; }

.consent-banner { position: fixed; left: 50%; bottom: 18px; z-index: 100; width: min(calc(100% - 32px), 780px); padding: 18px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-radius: 22px; transform: translateX(-50%); background: rgba(249,253,255,.92); }
.consent-banner[hidden] { display: none; }
.consent-banner strong { display: block; margin-bottom: 4px; }
.consent-banner p { max-width: 480px; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.45; }
.consent-actions { display: flex; gap: 8px; flex: 0 0 auto; }

.privacy-dialog { width: min(calc(100% - 32px), 620px); padding: 34px; color: var(--ink); background: #f3fbff; border: 1px solid rgba(255,255,255,.9); border-radius: 24px; box-shadow: 0 34px 90px rgba(13,45,61,.28); }
.privacy-dialog::backdrop { background: rgba(15,35,45,.48); backdrop-filter: blur(6px); }
.privacy-dialog h2 { margin: 6px 0 16px; font-size: 30px; }
.privacy-dialog p { color: var(--muted); line-height: 1.65; }
.dialog-close { position: absolute; top: 16px; right: 18px; padding: 6px; color: var(--muted); background: none; border: 0; cursor: pointer; }
.dialog-actions { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 10px; }
.noscript-note { padding: 12px; color: #fff; background: var(--ink); text-align: center; font-size: 13px; }

.js [data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.js [data-reveal].is-revealed { opacity: 1; transform: none; }

@media (max-width: 1000px) {
  .desktop-nav { display: none; }
  .header-actions { margin-left: auto; }
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 38px; }
  .service-card { grid-column: span 6; }
  .service-card-featured { grid-column: span 12; }
  .why-panel, .faq-layout { grid-template-columns: 1fr; gap: 38px; }
}

@media (max-width: 760px) {
  h1, h2, h3, p { text-wrap: normal; }
  html { scroll-padding-top: 84px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 64px 0; }
  .section-compact { padding: 20px 0 58px; }
  .site-header { padding: 9px 10px 0; }
  .header-inner { min-height: 58px; padding: 8px 9px 8px 15px; gap: 12px; }
  .brand { font-size: 16px; gap: 5px; }
  .header-phone { display: none; }
  .header-actions .button { min-height: 40px; padding-inline: 15px; font-size: 12px; }
  .hero { padding-top: 48px; }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero h1 { margin-bottom: 18px; font-size: clamp(38px, 11.5vw, 52px); line-height: 1.01; }
  .hero-lead { font-size: 17px; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .trust-list { display: grid; gap: 10px; }
  .hero-media { padding-bottom: 42px; }
  .hero-proof { right: 10px; max-width: min(270px, 82%); }
  .section-heading { margin-bottom: 28px; }
  .section-heading h2, .why-intro h2 { font-size: 32px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card, .service-card-featured { grid-column: auto; min-height: 0; padding: 24px; }
  .service-number { margin-bottom: 22px; }
  .why-panel { padding: 28px 22px; }
  .why-grid { grid-template-columns: 1fr; gap: 24px; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .portfolio-card, .portfolio-card:nth-child(n) { grid-column: auto; min-height: 240px; border-radius: 19px; }
  .portfolio-card img { height: 225px; border-radius: 13px; }
  .portfolio-card figcaption { left: 16px; right: 16px; bottom: 16px; width: fit-content; max-width: calc(100% - 32px); font-size: 11px; white-space: normal; }
  .process-panel { padding: 30px 22px; }
  .process-grid { grid-template-columns: 1fr; }
  .regions-layout { grid-template-columns: 1fr; gap: 28px; }
  .faq-layout { gap: 24px; }
  .cta-panel { padding: 46px 20px; }
  .cta-actions { display: grid; }
  .footer-inner { grid-template-columns: 1fr; padding: 25px 22px; }
  .footer-contact { align-items: flex-start; flex-direction: column; gap: 10px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
  .floating-whatsapp { right: 12px; bottom: max(12px, env(safe-area-inset-bottom)); min-height: 46px; padding: 12px 18px; font-size: 14px; }
  .consent-banner { align-items: stretch; flex-direction: column; }
  .consent-actions { display: grid; grid-template-columns: 1fr 1fr; }
}

@media (max-width: 430px) {
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-card, .portfolio-card:nth-child(n) { min-height: 290px; }
  .portfolio-card img { height: 275px; }
  .privacy-dialog { padding: 28px 22px; }
  .dialog-actions { display: grid; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .js [data-reveal] { opacity: 1; transform: none; }
  .floating-whatsapp.is-visible { animation: none; }
  .glass-panel::after { display: none; }
}

@media (prefers-reduced-transparency: reduce) {
  .glass-panel, .glass-chip { background: rgba(255,255,255,.94); backdrop-filter: none; }
}
