:root {
    --blue-deep: #1c273b;
    --blue-mid: #14598d;
    --blue-brand: #0989c7;
    --blue-light: #4bb5eb;
    --blue-accent: #4bb5eb;
    --yellow: #f3e500;
    --yellow-hover: #d9cc00;
    --black: #1c273b;
    --white: #ffffff;
    --gray-100: #f4f6fb;
    --gray-200: #e8ecf4;
    --gray-400: #9aa5bc;
    --gray-600: #5a6480;
    --gray-800: #2a3148;
    --text: #1c273b;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
}

h1,
h2,
h3,
h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

/* ── TOPBAR ── */
.topbar {
    background: var(--blue-deep);
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 20px rgba(0, 0, 0, .4);
}

.topbar-logo {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 900;
    color: var(--white);
    letter-spacing: -0.5px;
}

.topbar-logo span {
    color: var(--yellow);
}

/* ── HERO ── */
.hero {
    padding: 70px 0 80px;
    background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue-mid) 55%, #0f3a80 100%);
    position: relative;
    overflow: hidden;
    color: white;
}

.hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(26, 95, 209, .35) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -60px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245, 200, 0, .08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 80%, rgba(16, 70, 178, .15) 0%, transparent 40%), radial-gradient(circle at 80% 20%, rgba(13, 45, 107, .3) 0%, transparent 40%);
    pointer-events: none;
}

.hero-inner {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245, 200, 0, .15);
    border: 1px solid rgba(245, 200, 0, .3);
    color: var(--yellow);
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.hero h1 {
    font-size: clamp(30px, 4.2vw, 50px);
    color: var(--white);
    margin-bottom: 14px;
    line-height: 1.1;
}

.hero h1 span {
    color: var(--yellow);
}

.hero-un-anio {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
}

.hero-un-anio-icon {
    font-size: 24px;
    line-height: 1;
    animation: icon-pulse 2.2s ease-in-out infinite;
    display: inline-block;
}

@keyframes icon-pulse {

    0%,
    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 0px rgba(245, 200, 0, 0))
    }

    50% {
        transform: scale(1.18);
        filter: drop-shadow(0 0 8px rgba(245, 200, 0, .7))
    }
}

.hero-un-anio-text {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(20px, 2.2vw, 26px);
    font-weight: 900;
    color: var(--white);
    line-height: 1;
}

.hero-un-anio-text span {
    color: var(--yellow);
    position: relative;
    padding-bottom: 3px;
}

.hero-un-anio-text span::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 100%;
    background: linear-gradient(90deg, transparent, var(--yellow), transparent);
    background-size: 200% 100%;
    animation: underline-sweep 2s ease-in-out infinite;
    border-radius: 2px;
}

@keyframes underline-sweep {
    0% {
        background-position: 100% 0;
        opacity: .4
    }

    50% {
        background-position: 0% 0;
        opacity: 1
    }

    100% {
        background-position: -100% 0;
        opacity: .4
    }
}

.hero-sub {
    font-size: 17px;
    color: rgba(255, 255, 255, .75);
    margin-bottom: 28px;
    max-width: 560px;
    font-weight: 300;
    line-height: 1.7;
}

.hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

@media (max-width: 900px) {
    .hero-pills {
        justify-content: center;
    }
}

.hero-pill {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .15);
    color: white;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

@media (max-width: 900px) {
    .hero-stats {
        text-align: center;
    }
}

.hero-stat strong {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: var(--yellow);
    line-height: 1;
}

.hero-stat span {
    font-size: 12px;
    color: rgba(255, 255, 255, .6);
}

/* Hero card */
.hero-card {
    background: var(--white);
    border-radius: 16px;
    padding: 32px 28px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .35);
    position: relative;
    z-index: 2;
}

.hero-card h3 {
    font-size: 20px;
    color: var(--blue-deep);
    margin-bottom: 6px;
}

.hero-card>p {
    font-size: 13px;
    color: var(--gray-600);
    margin-bottom: 22px;
}

.form-field {
    margin-bottom: 14px;
    margin-bottom: 15px;
}

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

.form-field label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-600);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: .4px;
}

.form-field input,
.form-field select {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid var(--gray-200);
    border-radius: 8px;
    font-size: 14px;
    color: var(--text);
    font-family: 'Inter', sans-serif;
    background: var(--gray-100);
    transition: all .2s;
    outline: none;
    appearance: none;
}

.form-field input:focus,
.form-field select:focus {
    border-color: var(--blue-brand);
    background: var(--white);
}

.form-submit {
    width: 100%;
    background: var(--blue-brand);
    color: var(--white);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 15px;
    padding: 15px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    margin-top: 6px;
    transition: all .2s;
}

.form-submit:hover {
    background: var(--blue-light);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(45, 122, 71, .3);
}

.form-submit-yellow {
    background: var(--yellow) !important;
    color: var(--blue-deep) !important;
}

.form-submit-yellow:hover {
    background: var(--yellow-hover) !important;
    box-shadow: 0 8px 24px rgba(245, 200, 0, .35) !important;
}

.form-legal {
    font-size: 11px;
    color: var(--gray-400);
    text-align: center;
    margin-top: 10px;
}

/* ── SECTIONS ── */
.section {
    padding: 80px 24px;
}

.section-light {
    background: var(--gray-100);
}

.section-dark {
    background: var(--blue-deep);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
}

.section-label {
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--blue-brand);
    margin-bottom: 12px;
    display: block;
}

.section-title {
    font-size: clamp(26px, 3vw, 40px);
    color: var(--blue-deep);
    margin-bottom: 16px;
}

.section-title.white {
    color: var(--white);
}

.section-desc {
    font-size: 16px;
    color: var(--gray-600);
    max-width: 700px;
    line-height: 1.7;
}

.section-desc.white {
    color: rgba(255, 255, 255, .7);
}

.title-accent {
    color: var(--blue-brand);
}

.title-accent-yellow {
    color: var(--yellow);
}

.btn-primary {
    background: var(--yellow);
    color: var(--blue-deep);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 16px;
    padding: 15px 32px;
    border-radius: 8px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all .2s;
    display: inline-block;
}

.btn-primary:hover {
    background: var(--yellow-hover);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(245, 200, 0, .35);
}

/* ── ANCHOR NAV ── */
.anchor-nav-wrapper {
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    position: sticky;
    top: 59px;
    z-index: 90;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.8);
}

.anchor-tag {
    background: var(--gray-100);
    color: var(--blue-mid);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--gray-200);
    display: inline-block;
}

.anchor-tag:hover {
    background: var(--blue-brand);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(9, 137, 199, 0.2);
    border-color: var(--blue-brand);
}

.anchor-nav-container::-webkit-scrollbar {
    display: none;
}

@media (max-width: 768px) {
    .anchor-nav-container {
        justify-content: flex-start !important;
        overflow-x: auto;
        padding: 10px 15px;
        white-space: nowrap;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
}

/* ── SALIDAS / CARDS ── */
.salida-item {
    background: var(--white);
    border-radius: 14px;
    padding: 28px 24px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .06);
    border: 1.5px solid var(--gray-200);
    transition: all .2s;
}

.salida-item:hover {
    border-color: var(--blue-brand);
    box-shadow: 0 8px 32px rgba(45, 122, 71, .12);
    transform: translateY(-2px);
}

.salida-icon {
    font-size: 34px;
    margin-bottom: 14px;
    display: block;
}

/* ── COMPARATIVA ── */
.comparativa-section {
    padding: 80px 24px;
    background: var(--gray-100);
}

.comp-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 0, 0, .1);
    transition: transform .2s, box-shadow .2s;
    display: flex;
    flex-direction: column;
}

.comp-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 56px rgba(0, 0, 0, .15);
}

.comp-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.comp-header {
    padding: 32px 32px 24px;
    flex-shrink: 0;
}

.comp-header-auton {
    background: linear-gradient(135deg, #0d2d6b, #0f3a80);
}

.comp-header-estado {
    background: linear-gradient(135deg, #091e4a, #0d2d6b);
}

.comp-tag {
    display: inline-block;
    align-self: flex-start;
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.comp-tag-auton {
    background: rgba(26, 95, 209, 0.9);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.comp-tag-estado {
    background: rgba(245, 200, 0, 0.9);
    color: #0a1628;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.comp-header h3 {
    font-size: 22px;
    color: var(--white);
    margin-bottom: 8px;
}

.comp-header p {
    font-size: 14px;
    color: rgba(255, 255, 255, .7);
    line-height: 1.6;
}

.comp-body {
    background: var(--white);
    padding: 28px 32px;
    flex: 1;
}

.comp-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-200);
    font-size: 14px;
    color: var(--text);
}

.comp-row:last-child {
    border-bottom: none;
}

.comp-row-label {
    font-weight: 600;
    color: var(--gray-800);
    min-width: 120px;
    font-size: 13px;
    flex-shrink: 0;
}

.comp-row-val {
    color: var(--gray-600);
    flex: 1;
}

.comp-cta {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: all .2s;
    text-decoration: none;
    flex-shrink: 0;
}

.comp-cta-auton {
    background: var(--blue-brand);
    color: var(--white);
}

.comp-cta-auton:hover {
    background: var(--blue-light);
}

.comp-cta-estado {
    background: #f5c800;
    color: #0a1628;
}

.comp-cta-estado:hover {
    background: #e0b600;
}

.comp-salary strong {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 800;
}

.comp-salary-auton strong {
    color: var(--blue-brand);
}

.comp-salary-estado strong {
    color: var(--yellow-hover);
}

/* ── TEMARIO ── */
.temario-card {
    background: var(--white);
    border-radius: 16px;
    padding: 32px 24px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, .07);
    border: 1.5px solid var(--gray-200);
    border-top: 4px solid var(--blue-brand);
}

.temario-card h3 {
    font-size: 18px;
    color: var(--blue-deep);
    margin-bottom: 16px;
}

.temario-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.temario-list li {
    font-size: 14px;
    color: var(--gray-600);
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.temario-list li::before {
    content: '•';
    color: var(--blue-brand);
    font-weight: 900;
}

.requisito-icon, .temario-area-icon {
    flex-shrink: 0;
    font-size: 32px;
}

/* ── METODOLOGÍA ── */
.meto-carousel-wrap {
    margin-top: 52px;
    position: relative;
}

.meto-carousel {
    position: relative;
    min-height: 260px;
}

.meto-slide {
    display: none;
    background: linear-gradient(135deg, rgba(255, 255, 255, .07) 0%, rgba(255, 255, 255, .03) 100%);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 24px;
    padding: 48px 64px;
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}

.meto-slide.active {
    display: block;
    animation: slideIn .35s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.meto-slide-num {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--yellow);
    text-transform: uppercase;
    margin-bottom: 18px;
}

.meto-slide-icon {
    font-size: 52px;
    margin-bottom: 18px;
    display: block;
}

.meto-slide-title {
    font-size: 26px;
    color: var(--white);
    margin-bottom: 12px;
}

.meto-slide-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, .65);
    line-height: 1.7;
    max-width: 480px;
    margin: 0 auto;
}

.meto-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 32px;
}

.meto-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, .25);
    background: rgba(255, 255, 255, .08);
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: all .2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.meto-btn:hover {
    background: var(--yellow);
    border-color: var(--yellow);
    color: var(--blue-deep);
}

.meto-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .25);
    cursor: pointer;
    transition: all .2s;
}

.meto-dot.active {
    background: var(--yellow);
    transform: scale(1.3);
}

.meto-progress-bar {
    width: 100%;
    max-width: 680px;
    margin: 22px auto 0;
    height: 4px;
    background: rgba(255, 255, 255, .1);
    border-radius: 2px;
}

.meto-progress-fill {
    height: 100%;
    background: var(--yellow);
    border-radius: 2px;
    transition: width .4s ease;
}

/* ── GARANTÍA ── */
.garantia-box {
    background: linear-gradient(135deg, var(--blue-brand), #0d3ba0);
    border-radius: 20px;
    padding: 32px;
    margin-top: 48px;
    display: flex;
    align-items: center;
    gap: 32px;
    box-shadow: 0 16px 48px rgba(16, 70, 178, .3);
    color: white;
}

.garantia-icon {
    font-size: 64px;
    line-height: 1;
    flex-shrink: 0;
}

.garantia-box h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.garantia-box p {
    font-size: 15px;
    color: rgba(255, 255, 255, .8);
    line-height: 1.7;
}

/* ── REQUISITOS ── */
.req-card {
    background: var(--white);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .07);
    border: 1.5px solid var(--gray-200);
}

.req-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--gray-200);
}

.req-tag {
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
}

.req-tag-auton {
    background: #e8f0ff;
    color: var(--blue-brand);
}

.req-tag-estado {
    background: #fff8e0;
    color: #b38a00;
}

.req-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.req-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--text);
}

.req-dot-auton,
.req-dot-estado {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 6px;
}

.req-dot-auton {
    background: var(--blue-brand);
}

.req-dot-estado {
    background: var(--yellow-hover);
}

.req-disclaimer {
    font-size: 12px;
    color: var(--gray-400);
    margin-top: 16px;
    font-style: italic;
}

/* ── OPINIONES ── */
.opinion-card {
    background: var(--white);
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, .07);
    border: 1.5px solid var(--gray-200);
}

.opinion-stars {
    color: var(--yellow);
    font-size: 18px;
    margin-bottom: 14px;
}

.opinion-text {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
}

.opinion-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.opinion-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue-brand), var(--blue-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    flex-shrink: 0;
}

/* ── FAQ ── */
.faq-item {
    background: var(--white);
    border-radius: 12px;
    border: 1.5px solid var(--gray-200);
    overflow: hidden;
    margin-bottom: 14px;
}

.faq-header {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-header h3 {
    font-size: 16px;
    margin: 0;
    color: var(--blue-deep);
}

.faq-toggle {
    background: var(--blue-brand);
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: transform .3s;
    flex-shrink: 0;
    margin-left: 15px;
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 24px;
}

.faq-item.open .faq-body {
    max-height: 500px;
    padding-bottom: 20px;
}

.faq-item.open .faq-toggle {
    transform: rotate(45deg);
}

/* ── SALARY BANNER ── */
.salary-banner {
    background: linear-gradient(90deg, var(--blue-deep), var(--blue-mid));
    padding: 24px 0;
    overflow: hidden;
    width: 100%;
}

.salary-track {
    display: flex;
    width: max-content;
    will-change: transform;
}

.salary-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    padding: 4px 30px;
}

.salary-inner:last-child {
    display: none;
}

.salary-item .amount {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 900;
    color: var(--yellow);
    line-height: 1;
}

.salary-item .label {
    font-size: 13px;
    color: rgba(255, 255, 255, .6);
}

.salary-divider {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, .15);
}

@keyframes scrollBanner {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (min-width: 901px) {
    .salary-track {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 900px) {
    .salary-inner:last-child {
        display: flex;
    }

    .salary-track {
        animation: scrollBanner 30s linear infinite;
    }

    .salary-divider {
        display: block !important;
    }

    .salary-inner {
        gap: 60px;
        padding-right: 30px;
    }
}

@media (max-width: 500px) {
    .salary-item .amount {
        font-size: 24px;
    }
    .salary-inner {
        gap: 40px;
    }
}

/* ── CTA FINAL ── */
.cta-final {
    background: linear-gradient(135deg, var(--blue-brand), #0d3ba0);
    padding: 80px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-final::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245, 200, 0, .12) 0%, transparent 70%);
    pointer-events: none;
}

.cta-final h2 {
    font-size: clamp(28px, 3.5vw, 44px);
    color: var(--white);
    margin-bottom: 14px;
}

.cta-final p {
    font-size: 17px;
    color: rgba(255, 255, 255, .75);
    margin-bottom: 36px;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

/* ── FOOTER ── */
footer {
    background: var(--blue-deep);
}

@media (max-width: 900px) {
    .garantia-box {
        flex-direction: column;
        text-align: center;
        gap: 16px;
        padding: 24px;
    }
}
.requisito-note {
    text-align: center;
    margin-top: 25px;
    font-size: 14px;
    color: var(--gray-400);
    line-height: 1.5;
}
