:root {
    --yellow: #f2b705;
    --yellow-strong: #d99a00;
    --blue: #123f91;
    --blue-dark: #09265c;
    --ink: #1b2430;
    --muted: #657080;
    --line: #dfe5ed;
    --soft: #f4f7fb;
    --white: #ffffff;
    --success: #15803d;
    --danger: #b42318;
    --warning: #b7791f;
    --radius: 8px;
    --shadow: 0 18px 45px rgba(12, 28, 54, .14);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    background: var(--white);
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

.container {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}

.skip-link {
    position: absolute;
    left: 16px;
    top: -80px;
    z-index: 100;
    padding: 10px 14px;
    background: var(--blue);
    color: var(--white);
    border-radius: var(--radius);
}

.skip-link:focus {
    top: 16px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, .96);
    border-bottom: 1px solid rgba(18, 63, 145, .12);
    backdrop-filter: blur(12px);
}

.topbar {
    background: var(--blue-dark);
    color: var(--white);
    font-size: .9rem;
}

.topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 38px;
    flex-wrap: wrap;
}

.topbar a {
    color: var(--white);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 82px;
    gap: 24px;
}

.brand img {
    width: 220px;
    height: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-menu a {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: .94rem;
    color: var(--blue-dark);
}

.nav-menu a:hover,
.nav-menu a:focus,
.nav-menu .is-active {
    background: rgba(242, 183, 5, .22);
}

.nav-menu .nav-cta {
    background: var(--yellow);
    color: #121212;
    margin-left: 8px;
}

.nav-menu .nav-cta:hover,
.nav-menu .nav-cta:focus {
    background: var(--yellow-strong);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    background: var(--white);
    border-radius: var(--radius);
    padding: 10px;
}

.nav-toggle span:not(.sr-only) {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: var(--blue-dark);
}

.hero {
    position: relative;
    min-height: 620px;
    display: grid;
    align-items: center;
    color: var(--white);
    overflow: hidden;
}

.hero--compact {
    min-height: 390px;
}

.hero__media {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(90deg, rgba(9, 38, 92, .9) 0%, rgba(9, 38, 92, .72) 48%, rgba(9, 38, 92, .34) 100%);
}

.hero__content {
    max-width: 760px;
    padding: 80px 0;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--yellow);
    font-size: .83rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    margin-bottom: 18px;
    font-size: clamp(2.45rem, 6vw, 5rem);
    line-height: .98;
    letter-spacing: 0;
}

h2 {
    margin-bottom: 16px;
    color: var(--blue-dark);
    font-size: clamp(1.85rem, 4vw, 3rem);
    line-height: 1.08;
    letter-spacing: 0;
}

h3 {
    margin-bottom: 10px;
    color: var(--blue-dark);
    font-size: 1.22rem;
    line-height: 1.25;
}

.lead {
    max-width: 720px;
    color: inherit;
    font-size: 1.17rem;
}

.muted {
    color: var(--muted);
}

.hero .lead {
    color: rgba(255, 255, 255, .9);
}

.actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 28px;
}

.button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 18px;
    border: 0;
    border-radius: var(--radius);
    background: var(--yellow);
    color: #141414;
    font-weight: 800;
    cursor: pointer;
}

.button:hover,
.button:focus {
    background: var(--yellow-strong);
}

.button--secondary {
    background: var(--white);
    color: var(--blue-dark);
}

.button--secondary:hover,
.button--secondary:focus {
    background: #edf3ff;
}

.button--dark {
    background: var(--blue-dark);
    color: var(--white);
}

.button--dark:hover,
.button--dark:focus {
    background: var(--blue);
}

.section {
    padding: 86px 0;
}

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

.section__head {
    max-width: 780px;
    margin-bottom: 34px;
}

.grid {
    display: grid;
    gap: 22px;
}

.grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.card {
    min-width: 0;
    height: 100%;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 10px 28px rgba(12, 28, 54, .06);
}

.card--feature {
    border-top: 5px solid var(--yellow);
}

.card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    border-radius: var(--radius);
    margin-bottom: 18px;
}

.stat-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: -58px;
    position: relative;
    z-index: 3;
}

.stat {
    padding: 24px;
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
}

.stat strong {
    display: block;
    color: var(--blue);
    font-size: 2rem;
    line-height: 1;
}

.split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, .82fr);
    gap: 42px;
    align-items: center;
}

.split__image img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.check-list {
    display: grid;
    gap: 12px;
    padding: 0;
    margin: 22px 0 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 32px;
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .25em;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--yellow);
}

.check-list li::after {
    content: "";
    position: absolute;
    left: 7px;
    top: .48em;
    width: 6px;
    height: 10px;
    border-right: 2px solid #1b1b1b;
    border-bottom: 2px solid #1b1b1b;
    transform: rotate(45deg);
}

.steps {
    counter-reset: step;
    display: grid;
    gap: 16px;
}

.step {
    counter-increment: step;
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 16px;
    align-items: start;
    padding: 20px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.step::before {
    content: counter(step);
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: var(--radius);
    background: var(--blue);
    color: var(--white);
    font-weight: 900;
    font-size: 1.25rem;
}

.quote-card {
    border-left: 5px solid var(--yellow);
}

.blog-list {
    align-items: stretch;
}

.blog-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.blog-card h3 {
    margin: 0;
    font-size: 1.35rem;
}

.blog-card .button {
    margin-top: auto;
    align-self: flex-start;
}

.article-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
    gap: 44px;
    align-items: start;
}

.article-body {
    max-width: 760px;
}

.article-body section + section {
    margin-top: 34px;
}

.article-body h2 {
    margin-bottom: 12px;
    font-size: 1.65rem;
}

.article-body p {
    color: var(--text);
    font-size: 1.05rem;
    line-height: 1.75;
}

.article-aside {
    position: sticky;
    top: 110px;
}

.placeholder {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 4px 8px;
    border-radius: 999px;
    background: #fff7db;
    color: #6b4d00;
    font-size: .82rem;
    font-weight: 800;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.form-field {
    display: grid;
    gap: 7px;
}

.form-field--full {
    grid-column: 1 / -1;
}

.honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-field label {
    font-weight: 800;
    color: var(--blue-dark);
}

.fieldset {
    gap: 10px;
    padding: 0;
    margin: 0;
    border: 0;
}

.fieldset legend {
    font-weight: 800;
    color: var(--blue-dark);
}

.field-hint {
    margin: -2px 0 2px;
    color: var(--muted);
    font-size: .92rem;
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}

.checkbox-option {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 38px;
    padding: 7px 10px;
    border: 1px solid #b9c4d3;
    border-radius: var(--radius);
    background: #f8fafc;
    color: var(--text);
    font-size: .92rem;
    font-weight: 700;
}

.form-field .checkbox-option input {
    width: 15px;
    min-height: 15px;
    padding: 0;
    border: 0;
    flex: 0 0 15px;
    accent-color: var(--blue);
}

.other-field {
    display: grid;
    gap: 7px;
    margin-top: 2px;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    min-height: 48px;
    padding: 11px 13px;
    border: 1px solid #b9c4d3;
    border-radius: var(--radius);
    background: var(--white);
}

.form-field textarea {
    min-height: 140px;
    resize: vertical;
}

.alert {
    padding: 14px 16px;
    border-radius: var(--radius);
    margin-bottom: 18px;
    font-weight: 700;
}

.alert--success {
    background: #e9f8ef;
    color: var(--success);
}

.contact-panel {
    display: grid;
    gap: 16px;
}

.contact-item {
    padding: 18px;
    border-radius: var(--radius);
    background: var(--soft);
}

.map {
    width: 100%;
    min-height: 340px;
    border: 0;
    border-radius: var(--radius);
}

.cta-band {
    background: var(--yellow);
    color: #151515;
}

.cta-band__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 42px 0;
}

.cta-band h2 {
    color: #151515;
    margin-bottom: 8px;
}

.cta-band .eyebrow {
    color: var(--blue-dark);
}

.site-footer {
    background: var(--blue-dark);
    color: rgba(255, 255, 255, .86);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr 1fr 1fr;
    gap: 30px;
    padding: 54px 0 34px;
}

.footer-logo {
    width: 220px;
    height: auto;
    margin-bottom: 18px;
    border-radius: 4px;
}

.site-footer h2 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 14px;
}

.site-footer a,
.site-footer address {
    display: block;
    color: rgba(255, 255, 255, .86);
    margin-bottom: 9px;
    font-style: normal;
}

.site-footer a:hover,
.site-footer a:focus {
    color: var(--yellow);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, .16);
    color: rgba(255, 255, 255, .72);
    font-size: .92rem;
}

.whatsapp-float {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 60;
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border-radius: 999px;
    background: #18a957;
    color: var(--white);
    font-weight: 900;
    box-shadow: var(--shadow);
}

.whatsapp-float:hover,
.whatsapp-float:focus {
    background: #128246;
}

.table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: var(--radius);
}

.table th,
.table td {
    padding: 14px;
    border: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
}

.table th {
    background: var(--blue);
    color: var(--white);
}

@media (max-width: 900px) {
    .topbar__inner {
        justify-content: center;
        padding: 8px 0;
    }

    .nav-toggle {
        display: block;
    }

    .nav-menu {
        position: absolute;
        left: 16px;
        right: 16px;
        top: calc(100% + 8px);
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 12px;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        background: var(--white);
        box-shadow: var(--shadow);
    }

    .nav-menu.is-open {
        display: flex;
    }

    .nav-menu .nav-cta {
        margin-left: 0;
    }

    .hero {
        min-height: 560px;
    }

    .hero::after {
        background: rgba(9, 38, 92, .82);
    }

    .grid--3,
    .grid--2,
    .split,
    .stat-row,
    .footer-grid,
    .form-grid,
    .checkbox-grid {
        grid-template-columns: 1fr;
    }

    .stat-row {
        margin-top: 24px;
    }

    .section {
        padding: 64px 0;
    }

    .cta-band__inner,
    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .article-layout {
        grid-template-columns: 1fr;
    }

    .article-aside {
        position: static;
    }
}

@media (max-width: 560px) {
    .container {
        width: min(100% - 24px, 1120px);
    }

    .topbar {
        display: none;
    }

    .nav {
        min-height: 72px;
    }

    .brand img {
        width: 178px;
    }

    .hero,
    .hero--compact {
        min-height: 500px;
    }

    .hero__content {
        padding: 54px 0;
    }

    h1 {
        font-size: 2.42rem;
    }

    .actions,
    .button {
        width: 100%;
    }

    .button {
        text-align: center;
    }
}
