:root {
  --blue: #123f91;
  --blue-2: #2368d8;
  --blue-dark: #0d2d6b;
  --blue-pale: #eaf2ff;
  --ink: #172033;
  --muted: #5e687b;
  --line: #dce3ef;
  --surface: #f5f7fb;
  --white: #fff;
  --whatsapp: #25d366;
  --whatsapp-dark: #16b958;
  --shadow-sm: 0 10px 28px rgba(21, 50, 102, 0.08);
  --shadow-lg: 0 24px 70px rgba(9, 39, 99, 0.16);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }

:focus-visible {
  outline: 3px solid #77a7ff;
  outline-offset: 3px;
}

.container {
  width: min(100% - 40px, 1160px);
  margin-inline: auto;
}

.section { padding: 100px 0; }
.section-anchor { scroll-margin-top: 82px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(220, 227, 239, 0.8);
  backdrop-filter: blur(16px);
}

.header-content {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand { display: inline-flex; align-items: center; gap: 10px; font-size: 17px; font-weight: 800; letter-spacing: -0.04em; white-space: nowrap; }
.brand-mark { display: grid; width: 31px; height: 31px; place-items: center; border-radius: 10px; background: var(--blue); color: var(--white); font-size: 18px; font-weight: 900; font-style: italic; letter-spacing: -0.12em; }
.brand-name strong { color: var(--blue-2); font-weight: 800; }

.desktop-nav { display: flex; align-items: center; gap: 28px; margin-left: auto; }
.desktop-nav a { color: #475269; font-size: 14px; font-weight: 700; transition: color 180ms ease; }
.desktop-nav a:hover { color: var(--blue); }
.header-actions { display: flex; align-items: center; gap: 12px; }

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button:active { transform: translateY(0); }
.button-compact { min-height: 42px; padding: 0 15px; border-radius: 11px; font-size: 13px; }
.button-whatsapp { background: var(--whatsapp); color: #062a16; box-shadow: 0 8px 20px rgba(37, 211, 102, 0.24); }
.button-whatsapp:hover { background: var(--whatsapp-dark); box-shadow: 0 12px 24px rgba(37, 211, 102, 0.3); }
.whatsapp-mark { width: 20px; height: 20px; display: grid; place-items: center; border: 2px solid currentColor; border-radius: 50%; font-size: 16px; font-weight: 900; line-height: 1; transform: rotate(-35deg); }
.button-arrow { margin-left: 4px; font-size: 19px; }
.button-secondary { background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.35); color: var(--white); }
.button-secondary:hover { background: rgba(255, 255, 255, 0.2); }

.menu-toggle { display: none; width: 42px; height: 42px; padding: 10px; border: 1px solid var(--line); border-radius: 10px; background: var(--white); cursor: pointer; }
.menu-toggle span { display: block; height: 2px; width: 100%; margin: 4px 0; border-radius: 20px; background: var(--blue-dark); transition: transform 180ms ease, opacity 180ms ease; }
.menu-toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.mobile-menu { display: none; }

.hero { position: relative; overflow: hidden; isolation: isolate; padding: 74px 0 84px; color: var(--white); background: linear-gradient(122deg, #0c2c6a 0%, #123f91 52%, #235fc0 100%); }
.hero::after { content: ""; position: absolute; z-index: -1; right: -14vw; bottom: -30vw; width: 68vw; height: 68vw; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; box-shadow: 0 0 0 60px rgba(255,255,255,.035), 0 0 0 140px rgba(255,255,255,.025); }
.hero-grid-pattern { position: absolute; z-index: -1; inset: 0; background-image: linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px); background-size: 56px 56px; mask-image: linear-gradient(90deg, black, transparent 80%); opacity: .55; }
.hero-layout { min-height: 490px; display: grid; grid-template-columns: minmax(0, 1.04fr) minmax(360px, .96fr); align-items: center; gap: 44px; }
.hero-copy { position: relative; z-index: 2; max-width: 640px; }
.eyebrow { margin: 0 0 16px; color: var(--blue-2); font-size: 12px; font-weight: 900; letter-spacing: .12em; line-height: 1.2; text-transform: uppercase; }
.eyebrow-light { color: #bbd4ff; }
.eyebrow span { color: #80b1ff; font-size: 11px; vertical-align: 1px; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { text-wrap: balance; }
h1 { max-width: 650px; margin-bottom: 22px; font-size: clamp(44px, 5.15vw, 73px); font-weight: 900; letter-spacing: -.065em; line-height: .98; }
h1 span { display: block; color: #b8d3ff; }
.hero-description { max-width: 590px; margin-bottom: 31px; color: #e5eeff; font-size: 18px; line-height: 1.58; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-note { display: flex; align-items: center; gap: 8px; margin: 24px 0 0; color: #d4e2fc; font-size: 13px; font-weight: 700; }
.hero-note span { display: grid; width: 18px; height: 18px; place-items: center; border-radius: 50%; background: rgba(255,255,255,.17); color: var(--white); font-size: 11px; }

.hero-visual { position: relative; width: min(100%, 430px); height: 480px; margin-left: auto; }
.visual-halo { position: absolute; border-radius: 50%; filter: blur(2px); }
.halo-one { top: 23px; right: 12px; width: 286px; height: 286px; background: #8fc0ff; opacity: .24; }
.halo-two { bottom: 36px; left: 1px; width: 205px; height: 205px; background: #25d366; opacity: .15; }
.phone-shell { position: absolute; z-index: 2; top: 14px; left: 50%; width: 265px; height: 455px; padding: 9px; overflow: hidden; border: 5px solid #f8fbff; border-radius: 34px; background: #f3f7ff; box-shadow: 0 28px 55px rgba(2,22,65,.32), inset 0 0 0 2px #b8c7e1; transform: translateX(-46%) rotate(4.5deg); }
.phone-top { height: 22px; display: flex; align-items: center; justify-content: space-between; padding: 0 8px; color: #182e58; font-size: 9px; font-weight: 900; }
.phone-signal { width: 14px; height: 7px; border-bottom: 2px solid #182e58; border-left: 2px solid #182e58; transform: skew(-22deg); }
.phone-battery { width: 15px; height: 8px; border: 1.5px solid #182e58; border-radius: 2px; }
.chat-header { display: flex; align-items: center; gap: 8px; padding: 10px 9px; border-radius: 12px 12px 0 0; background: #e2edff; color: #182e58; }
.chat-avatar { display: grid; width: 27px; height: 27px; place-items: center; border-radius: 9px; background: var(--blue); color: var(--white); font-size: 14px; font-weight: 900; font-style: italic; }
.chat-header strong, .chat-header small { display: block; }
.chat-header strong { font-size: 10px; }
.chat-header small { margin-top: 2px; color: #4f69a1; font-size: 8px; }
.chat-body { min-height: 338px; padding: 18px 9px 10px; background: #f7fbff; background-image: radial-gradient(#dceafd 1px, transparent 1px); background-size: 13px 13px; }
.message { width: fit-content; max-width: 85%; margin-bottom: 10px; padding: 8px 9px; border-radius: 9px; box-shadow: 0 2px 6px rgba(29,56,111,.08); font-size: 9px; font-weight: 600; line-height: 1.42; }
.message-in { border-radius: 2px 9px 9px; background: var(--white); color: #344155; }
.message-out { margin-left: auto; border-radius: 9px 2px 9px 9px; background: #d8fae7; color: #1d4630; }
.message-out small { display: block; margin-top: 2px; color: #31ae65; text-align: right; font-size: 7px; }
.message-short { max-width: 72%; }
.typing { display: flex; gap: 3px; width: 31px; padding: 8px; border-radius: 9px; background: var(--white); }
.typing span { width: 4px; height: 4px; border-radius: 50%; background: #9eaabe; animation: pulse 1.5s infinite ease-in-out; }
.typing span:nth-child(2) { animation-delay: .2s; }.typing span:nth-child(3) { animation-delay: .4s; }
.chat-input { display: flex; align-items: center; justify-content: space-between; gap: 5px; margin-top: 8px; padding: 7px 8px 7px 11px; border: 1px solid #d4e0f4; border-radius: 12px; background: var(--white); color: #8b97aa; font-size: 8px; }
.chat-input b { display: grid; width: 18px; height: 18px; place-items: center; border-radius: 50%; background: var(--blue); color: var(--white); font-size: 12px; }
.status-card { position: absolute; z-index: 3; display: flex; align-items: center; gap: 9px; min-width: 176px; padding: 11px; border: 1px solid rgba(255,255,255,.72); border-radius: 15px; background: rgba(255,255,255,.92); color: #17284a; box-shadow: 0 14px 25px rgba(4,25,67,.16); backdrop-filter: blur(8px); }
.status-card-top { top: 61px; left: 0; animation: float 4.5s ease-in-out infinite; }
.status-card-bottom { right: -4px; bottom: 34px; animation: float 4.5s .7s ease-in-out infinite; }
.status-icon { display: grid; width: 27px; height: 27px; place-items: center; border-radius: 9px; background: #d8fae7; color: #15944b; font-size: 16px; font-weight: 900; }.status-icon-blue { background: #e0edff; color: var(--blue-2); }
.status-card strong, .status-card small { display: block; }.status-card strong { font-size: 10px; }.status-card small { margin-top: 3px; color: #61708c; font-size: 8px; }

.trust-strip { border-bottom: 1px solid var(--line); background: var(--white); }
.trust-grid { min-height: 88px; display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; }
.trust-grid p { display: flex; align-items: center; justify-content: center; gap: 9px; margin: 0; border-right: 1px solid var(--line); color: #354258; font-size: 13px; font-weight: 800; text-align: center; }.trust-grid p:first-child { border-left: 1px solid var(--line); }.trust-grid span { display: grid; width: 20px; height: 20px; place-items: center; border-radius: 50%; background: var(--blue-pale); color: var(--blue-2); font-size: 12px; }

.benefits-section { background: var(--surface); }
.section-heading { margin-bottom: 45px; }.split-heading { display: flex; align-items: end; justify-content: space-between; gap: 42px; }.split-heading > div { max-width: 620px; }.section-heading h2, .how-intro h2, .faq-intro h2 { margin-bottom: 0; color: var(--blue-dark); font-size: clamp(31px, 4vw, 48px); font-weight: 900; letter-spacing: -.055em; line-height: 1.03; }.split-heading > p { max-width: 355px; margin: 0; color: var(--muted); font-size: 16px; line-height: 1.6; }
.benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }.benefit-card { min-height: 245px; display: flex; flex-direction: column; padding: 22px; border: 1px solid #e0e7f1; border-radius: 19px; background: var(--white); box-shadow: 0 3px 0 rgba(25,57,120,.02); transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease; }.benefit-card:hover { border-color: #bacef5; box-shadow: var(--shadow-sm); transform: translateY(-5px); }.card-topline { display: flex; align-items: center; justify-content: space-between; color: #7a8aa3; font-size: 11px; font-weight: 900; letter-spacing: .1em; }.card-arrow { display: grid; width: 31px; height: 31px; place-items: center; border-radius: 10px; background: var(--blue-pale); color: var(--blue); font-size: 17px; letter-spacing: 0; }.benefit-card h3 { margin: auto 0 10px; color: var(--blue-dark); font-size: 20px; letter-spacing: -.04em; }.benefit-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.56; }

.how-section { background: var(--white); }.how-layout { display: grid; grid-template-columns: .81fr 1.19fr; gap: 104px; align-items: center; }.how-intro h2 { margin-bottom: 21px; }.how-intro > p:not(.eyebrow) { max-width: 385px; margin-bottom: 27px; color: var(--muted); font-size: 16px; line-height: 1.6; }.process-list { position: relative; display: grid; gap: 8px; padding: 0; margin: 0; list-style: none; }.process-list::before { content: ""; position: absolute; top: 38px; bottom: 38px; left: 27px; border-left: 1px dashed #bdcbe0; }.process-step { position: relative; z-index: 1; display: grid; grid-template-columns: 56px 1fr; gap: 23px; padding: 17px 0; }.process-number { display: grid; width: 55px; height: 55px; place-items: center; border: 1px solid #c5d7f5; border-radius: 50%; background: var(--white); color: var(--blue); font-size: 13px; font-weight: 900; }.process-step h3 { margin-bottom: 8px; color: var(--blue-dark); font-size: 21px; letter-spacing: -.04em; }.process-step p { max-width: 530px; margin: 0; color: var(--muted); font-size: 15px; line-height: 1.6; }

.credit-section { overflow: hidden; background: var(--blue-pale); }.centered-heading { max-width: 740px; margin-inline: auto; text-align: center; }.centered-heading h2 { max-width: 650px; margin-inline: auto; color: var(--blue-dark); font-size: clamp(31px, 4vw, 47px); font-weight: 900; letter-spacing: -.055em; line-height: 1.04; }.centered-heading > p:last-child { max-width: 620px; margin: 18px auto 0; color: var(--muted); font-size: 16px; line-height: 1.6; }.credit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }.credit-card { min-height: 297px; display: flex; flex-direction: column; padding: 29px; overflow: hidden; border-radius: 21px; background: var(--white); box-shadow: var(--shadow-sm); }.credit-card-2 { background: var(--blue); color: var(--white); }.credit-card-3 { background: #dff5e9; }.credit-label { margin-bottom: 47px; color: var(--blue-2); font-size: 11px; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }.credit-card h3 { margin-bottom: 12px; color: var(--blue-dark); font-size: 24px; letter-spacing: -.045em; line-height: 1.08; }.credit-card > p:not(.credit-label) { margin-bottom: 22px; color: var(--muted); font-size: 14px; line-height: 1.58; }.credit-card-2 .credit-label { color: #b9d4ff; }.credit-card-2 h3 { color: var(--white); }.credit-card-2 > p:not(.credit-label) { color: #dce9ff; }.text-link { display: inline-flex; align-items: center; gap: 7px; width: fit-content; margin-top: auto; color: var(--blue); font-size: 14px; font-weight: 900; }.credit-card-2 .text-link { color: #9ee9b9; }.text-link span { font-size: 18px; transition: transform 180ms ease; }.text-link:hover span { transform: translateX(3px); }.evaluation-note { display: flex; align-items: center; justify-content: center; gap: 8px; margin: 25px 0 0; color: #60708a; font-size: 12px; font-weight: 700; text-align: center; }.evaluation-note span { display: grid; width: 16px; height: 16px; place-items: center; border: 1px solid #91a8cd; border-radius: 50%; color: var(--blue); font-family: Georgia, serif; font-size: 11px; }

.conversion-section { position: relative; overflow: hidden; background: linear-gradient(117deg, #0d2d6b, #1857bb); color: var(--white); text-align: center; }.conversion-content { position: relative; z-index: 1; max-width: 730px; }.conversion-content h2, .final-cta h2 { margin-bottom: 16px; font-size: clamp(33px, 4.3vw, 55px); font-weight: 900; letter-spacing: -.06em; line-height: 1.02; }.conversion-content > p:not(.eyebrow), .final-cta-content > p:not(.eyebrow) { max-width: 560px; margin: 0 auto 28px; color: #dce8ff; font-size: 17px; line-height: 1.55; }.button-on-blue { background: var(--white); color: var(--blue-dark); box-shadow: 0 11px 27px rgba(1,18,55,.2); }.button-on-blue:hover { background: #e7fff0; }.conversion-orb { position: absolute; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; }.conversion-orb-one { top: -230px; left: -80px; width: 440px; height: 440px; }.conversion-orb-two { right: -110px; bottom: -270px; width: 520px; height: 520px; box-shadow: 0 0 0 60px rgba(255,255,255,.03), 0 0 0 130px rgba(255,255,255,.03); }

.branches-section { background: var(--surface); }.branches-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }.branch-card { padding: 29px; border: 1px solid #dce5f2; border-radius: 20px; background: var(--white); box-shadow: 0 4px 0 rgba(15,45,107,.02); }.branch-header { display: flex; align-items: center; gap: 14px; }.branch-pin { display: grid; width: 42px; height: 42px; place-items: center; border-radius: 13px; background: var(--blue-pale); color: var(--blue); font-size: 25px; }.branch-header p { margin-bottom: 3px; color: #73819a; font-size: 11px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }.branch-header h3 { margin: 0; color: var(--blue-dark); font-size: 24px; letter-spacing: -.04em; }.branch-card address { margin: 24px 0 8px; color: #4d5b72; font-size: 16px; font-style: normal; line-height: 1.55; }.branch-contact { margin: 0 0 24px; color: #4d5b72; font-size: 14px; line-height: 1.55; }.branch-contact a { color: var(--blue); font-weight: 800; }.branch-contact a:hover { color: var(--blue-2); }.branch-actions { display: flex; flex-wrap: wrap; gap: 10px; }.button-map { border-color: #ccd9ea; background: var(--white); color: var(--blue-dark); }.button-map:hover { border-color: #9ab7ea; background: var(--blue-pale); }

.faq-section { background: var(--white); }.faq-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 105px; }.faq-intro h2 { margin-bottom: 20px; }.faq-intro > p:not(.eyebrow) { max-width: 370px; margin-bottom: 28px; color: var(--muted); font-size: 16px; line-height: 1.6; }.faq-list { border-top: 1px solid var(--line); }.faq-item { border-bottom: 1px solid var(--line); }.faq-item summary { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 21px 1px; color: var(--blue-dark); font-size: 16px; font-weight: 800; cursor: pointer; list-style: none; }.faq-item summary::-webkit-details-marker { display: none; }.faq-plus { display: grid; flex: none; width: 26px; height: 26px; place-items: center; border-radius: 50%; background: var(--blue-pale); color: var(--blue); font-size: 23px; font-weight: 400; transition: transform 200ms ease, background 200ms ease; }.faq-item[open] .faq-plus { background: var(--blue); color: var(--white); transform: rotate(45deg); }.faq-item p { max-width: 670px; margin: -4px 38px 21px 0; color: var(--muted); font-size: 15px; line-height: 1.62; }

.final-cta { position: relative; overflow: hidden; padding: 97px 0; background: linear-gradient(120deg, #0b2a64 0%, #123f91 57%, #266de0 140%); color: var(--white); text-align: center; }.final-cta::before, .final-cta::after { content: ""; position: absolute; border: 1px solid rgba(255,255,255,.13); border-radius: 50%; }.final-cta::before { width: 550px; height: 550px; top: -380px; left: -120px; }.final-cta::after { width: 460px; height: 460px; bottom: -340px; right: -80px; }.final-cta-content { position: relative; z-index: 1; max-width: 720px; }

.site-footer { background: #071e49; color: var(--white); }.footer-main { display: flex; justify-content: space-between; gap: 54px; padding: 57px 0 42px; }.footer-brand > p { margin: 17px 0; color: #b5c9ec; font-size: 14px; }.site-footer .brand-name strong { color: #a9cbff; }.site-footer .brand-mark { background: #2264cf; }.social-links { display: flex; flex-wrap: wrap; gap: 12px; }.social-links a { color: #d9e6ff; font-size: 13px; font-weight: 800; }.social-links a:hover, .footer-links a:hover { color: #8fc0ff; }.footer-links { display: flex; gap: 82px; }.footer-links div { display: grid; align-content: start; gap: 10px; }.footer-links h3 { margin: 0 0 5px; color: #85a9e2; font-size: 11px; letter-spacing: .11em; text-transform: uppercase; }.footer-links a { color: #e4edfd; font-size: 14px; transition: color 160ms ease; }.footer-bottom { display: flex; justify-content: space-between; gap: 25px; padding: 19px 0 23px; border-top: 1px solid rgba(176,205,250,.2); color: #9db5de; font-size: 11px; line-height: 1.5; }.footer-bottom p { margin: 0; }

.floating-whatsapp { position: fixed; z-index: 40; right: 16px; bottom: 16px; display: none; align-items: center; gap: 8px; min-height: 47px; padding: 0 15px; border-radius: 999px; background: var(--whatsapp); color: #062a16; box-shadow: 0 10px 26px rgba(22, 103, 54, .28); font-size: 13px; font-weight: 900; }.floating-whatsapp > span:first-child { display: grid; width: 22px; height: 22px; place-items: center; border: 2px solid currentColor; border-radius: 50%; font-size: 17px; font-weight: 900; transform: rotate(-35deg); }

.reveal { animation: reveal .65s both cubic-bezier(.2,.65,.25,1); }.reveal-delay { animation-delay: .15s; }.reveal-step-1 { animation-delay: .05s; }.reveal-step-2 { animation-delay: .13s; }.reveal-step-3 { animation-delay: .21s; }.reveal-step-4 { animation-delay: .29s; }
@keyframes reveal { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes pulse { 0%, 75%, 100% { opacity: .3; transform: translateY(0); } 35% { opacity: 1; transform: translateY(-2px); } }

@media (max-width: 940px) {
  .desktop-nav { gap: 18px; }.header-cta { font-size: 12px; }.hero-layout { grid-template-columns: 1fr .8fr; gap: 18px; }.hero-visual { width: 345px; transform: scale(.88); transform-origin: center right; }.benefits-grid { grid-template-columns: repeat(2, 1fr); }.how-layout, .faq-layout { gap: 58px; }.footer-links { gap: 43px; }
}

@media (max-width: 720px) {
  .container { width: min(100% - 32px, 560px); }.section { padding: 70px 0; }.section-anchor { scroll-margin-top: 68px; }.header-content { min-height: 64px; gap: 10px; }.brand { gap: 8px; font-size: 15px; }.brand-mark { width: 28px; height: 28px; border-radius: 9px; font-size: 16px; }.desktop-nav, .header-cta { display: none; }.menu-toggle { display: block; }.mobile-menu { display: block; max-height: 0; overflow: hidden; border-top: 0 solid var(--line); background: var(--white); opacity: 0; transition: max-height 250ms ease, opacity 200ms ease, border-width 200ms ease; }.mobile-menu.is-open { max-height: 370px; border-top-width: 1px; opacity: 1; }.mobile-menu nav { display: grid; gap: 0; padding: 12px 0 18px; }.mobile-menu nav > a { display: flex; align-items: center; justify-content: space-between; padding: 14px 2px; border-bottom: 1px solid #edf1f7; color: var(--blue-dark); font-size: 15px; font-weight: 800; }.mobile-menu-cta { width: 100%; margin-top: 16px; }.hero { padding: 53px 0 0; }.hero::after { right: -140px; bottom: -150px; width: 360px; height: 360px; }.hero-layout { min-height: 0; display: block; }.hero-copy { max-width: 100%; }.eyebrow { margin-bottom: 13px; font-size: 10px; }.hero h1 { margin-bottom: 18px; font-size: clamp(39px, 11.4vw, 51px); }.hero-description { margin-bottom: 25px; font-size: 16px; line-height: 1.53; }.hero-actions { display: grid; }.hero-actions .button { width: 100%; }.button { min-height: 54px; font-size: 14px; }.hero-note { margin-top: 20px; font-size: 12px; }.hero-visual { width: 326px; height: 378px; margin: -8px auto 0; transform: scale(.76); transform-origin: top center; }.trust-grid { grid-template-columns: repeat(2, 1fr); min-height: 0; padding: 10px 0; }.trust-grid p { justify-content: flex-start; min-height: 43px; padding: 0 8px; border: 0; font-size: 11px; text-align: left; }.trust-grid p:first-child { border: 0; }.trust-grid p:nth-child(odd) { border-right: 1px solid var(--line); }.trust-grid span { flex: none; width: 17px; height: 17px; font-size: 10px; }.split-heading { display: block; margin-bottom: 31px; }.section-heading h2, .how-intro h2, .faq-intro h2 { font-size: 34px; }.split-heading > p { margin-top: 16px; font-size: 15px; }.benefits-grid, .credit-grid, .branches-grid { grid-template-columns: 1fr; }.benefit-card { min-height: 194px; padding: 20px; }.benefit-card h3 { margin-top: 50px; }.how-layout, .faq-layout { display: block; }.how-intro { margin-bottom: 35px; }.how-intro > p:not(.eyebrow), .faq-intro > p:not(.eyebrow) { font-size: 15px; }.how-intro .button { width: 100%; }.process-step { grid-template-columns: 48px 1fr; gap: 17px; }.process-number { width: 48px; height: 48px; font-size: 12px; }.process-list::before { top: 32px; bottom: 31px; left: 23px; }.process-step h3 { font-size: 19px; }.process-step p { font-size: 14px; }.centered-heading { margin-bottom: 32px; }.centered-heading h2 { font-size: 34px; }.centered-heading > p:last-child { font-size: 15px; }.credit-card { min-height: 245px; padding: 24px; }.credit-label { margin-bottom: 32px; }.conversion-section, .final-cta { padding: 74px 0; }.conversion-content h2, .final-cta h2 { font-size: 36px; }.conversion-content > p:not(.eyebrow), .final-cta-content > p:not(.eyebrow) { font-size: 15px; }.branch-card { padding: 23px; }.branch-card address { min-height: auto; margin: 20px 0; font-size: 15px; }.branch-actions { display: grid; grid-template-columns: 1fr; }.branch-actions .button { width: 100%; }.faq-intro { margin-bottom: 35px; }.faq-item summary { padding: 18px 0; font-size: 14px; }.faq-item p { margin-right: 0; font-size: 14px; }.footer-main { display: block; padding: 45px 0 31px; }.footer-links { gap: 50px; margin-top: 36px; }.footer-bottom { display: block; padding: 17px 0; }.footer-bottom p + p { margin-top: 8px; }.floating-whatsapp { display: inline-flex; }
}

@media (max-width: 360px) {
  .container { width: min(100% - 26px, 560px); }.brand-name { font-size: 14px; }.hero h1 { font-size: 39px; }.trust-grid p { padding-inline: 4px; font-size: 10px; }.section-heading h2, .how-intro h2, .faq-intro h2, .centered-heading h2 { font-size: 31px; }.footer-links { gap: 26px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }.reveal, .status-card, .typing span { animation: none; }.button, .benefit-card, .text-link span { transition: none; }
}
