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

body {
    font-family: 'Nunito Sans', sans-serif;
    color: #333;
    overflow-x: hidden;
}

/* ==================== HEADER ==================== */
.header {
    background: #fff;
    padding: 16px 0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 36px;
    width: auto;
}

/* Steps */
.steps {
    display: flex;
    gap: 0;
    align-items: center;
}

.step {
    display: flex;
    align-items: center;
    gap: 8px;
}

.step-line {
    width: 40px;
    height: 2px;
    background: #ddd;
    margin: 0 8px;
}

.step-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #e0e0e0;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.step.active .step-number {
    background: linear-gradient(135deg, #00C853, #00A651);
    box-shadow: 0 3px 10px rgba(0, 166, 81, 0.35);
}

.step-label {
    font-size: 14px;
    color: #999;
    font-weight: 600;
    transition: color 0.3s;
}

.step.active .step-label {
    color: #333;
    font-weight: 700;
}

/* ==================== HERO ==================== */
.hero {
    background: linear-gradient(135deg, #0057B8 0%, #003D8F 50%, #0033A0 100%);
    min-height: 460px;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.05) 0%, transparent 60%);
    z-index: 1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
    min-height: 460px;
    position: relative;
    z-index: 2;
}

.hero-image {
    flex: 1.1;
    position: relative;
    overflow: hidden;
}

.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    right: -1px;
    width: 120px;
    height: 100%;
    background: linear-gradient(to right, transparent, #0057B8);
    z-index: 2;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-form-wrapper {
    flex: 0.9;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 30px;
}

.hero-form {
    background: #fff;
    border-radius: 24px;
    padding: 45px 40px;
    max-width: 400px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    position: relative;
}

.form-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #0057B8, #0033A0);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 6px 20px rgba(0, 87, 184, 0.3);
}

.form-icon i {
    font-size: 24px;
    color: #fff;
}

.hero-form h1 {
    font-size: 26px;
    color: #0033A0;
    font-weight: 800;
    margin-bottom: 8px;
    line-height: 1.3;
}

.form-subtitle {
    font-size: 15px;
    color: #777;
    margin-bottom: 24px;
    font-weight: 400;
}

.input-group {
    position: relative;
    margin-bottom: 6px;
}

.input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #bbb;
    font-size: 16px;
    transition: color 0.3s;
}

.input-group input {
    width: 100%;
    padding: 16px 45px 16px 46px;
    border: 2px solid #e8e8e8;
    border-radius: 14px;
    font-size: 17px;
    font-family: 'Nunito Sans', sans-serif;
    color: #333;
    outline: none;
    transition: all 0.3s ease;
    text-align: center;
    letter-spacing: 3px;
    font-weight: 700;
    background: #fafafa;
}

.input-group input::placeholder {
    color: #c0c0c0;
    letter-spacing: 1px;
    font-weight: 400;
}

.input-group input:focus {
    border-color: #0057B8;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(0, 87, 184, 0.1);
}

.input-group input:focus ~ .input-icon {
    color: #0057B8;
}

.input-group input.error {
    border-color: #e74c3c;
    box-shadow: 0 0 0 4px rgba(231, 76, 60, 0.1);
}

.clear-btn {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    background: #f0f0f0;
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #999;
    cursor: pointer;
    transition: all 0.2s;
}

.clear-btn:hover {
    background: #e74c3c;
    color: #fff;
}

.field-required {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: #e74c3c;
    font-size: 13px;
    margin-bottom: 8px;
    font-weight: 600;
}

.btn-cotizar {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #FFD100, #e6b800);
    color: #333;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 800;
    font-family: 'Nunito Sans', sans-serif;
    cursor: pointer;
    margin-top: 12px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(255, 209, 0, 0.4);
}

.btn-cotizar i {
    font-size: 14px;
    transition: transform 0.3s;
}

.btn-cotizar:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 209, 0, 0.5);
}

.btn-cotizar:hover i {
    transform: translateX(4px);
}

.btn-cotizar:active {
    transform: translateY(-1px);
}

/* Wave */
.hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    z-index: 3;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

/* ==================== BENEFITS ==================== */
.benefits {
    background: #0033A0;
    padding: 70px 20px 80px;
}

.benefits-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.benefit-card {
    text-align: center;
    padding: 35px 25px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-icon i {
    font-size: 24px;
    color: #FFD100;
}

.benefit-card h2 {
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 14px;
    font-style: italic;
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 15px;
    line-height: 1.7;
    font-weight: 400;
}

/* ==================== STEP COMPLETED ==================== */
.step.completed .step-number {
    background: linear-gradient(135deg, #0057B8, #0033A0);
    box-shadow: 0 3px 10px rgba(0, 51, 160, 0.3);
    font-size: 12px;
}

.step.completed .step-label {
    color: #0033A0;
    font-weight: 700;
}

.step-line.done {
    background: linear-gradient(to right, #0033A0, #00A651);
}

/* ==================== BLUE BAR ==================== */
.blue-bar {
    height: 6px;
    background: linear-gradient(to right, #0033A0, #0057B8, #0033A0);
}

/* ==================== DATOS PAGE ==================== */
.datos-main {
    background: #f8f9fb;
    min-height: 60vh;
    padding: 50px 20px 60px;
}

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

.datos-title {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a2e;
    text-align: center;
    margin-bottom: 30px;
}

/* Info box */
.info-box {
    background: linear-gradient(135deg, #e8f0fe, #dce8fc);
    border-radius: 16px;
    padding: 22px 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 35px;
    border-left: 4px solid #0057B8;
}

.info-icon {
    flex-shrink: 0;
}

.info-icon i {
    font-size: 28px;
    color: #0057B8;
}

.info-box p {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
}

/* Matricula question */
.matricula-question {
    text-align: center;
    margin-bottom: 30px;
}

.question-label {
    font-size: 16px;
    font-weight: 700;
    color: #0033A0;
    margin-bottom: 16px;
}

.radio-group {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 15px;
    color: #555;
    font-weight: 600;
}

.radio-option input[type="radio"] {
    display: none;
}

.radio-custom {
    width: 22px;
    height: 22px;
    border: 2px solid #ccc;
    border-radius: 50%;
    position: relative;
    transition: all 0.3s;
}

.radio-option input[type="radio"]:checked ~ .radio-custom {
    border-color: #0057B8;
}

.radio-option input[type="radio"]:checked ~ .radio-custom::after {
    content: '';
    width: 12px;
    height: 12px;
    background: #0057B8;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Form fields */
.datos-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-field {
    position: relative;
}

.form-field input,
.form-field select {
    width: 100%;
    padding: 16px 20px;
    border: 1.5px solid #ddd;
    border-radius: 12px;
    font-size: 15px;
    font-family: 'Nunito Sans', sans-serif;
    color: #333;
    background: #fff;
    outline: none;
    transition: all 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
}

.form-field input::placeholder {
    color: #aaa;
}

.form-field select {
    color: #aaa;
    cursor: pointer;
    padding-right: 45px;
}

.form-field select:valid {
    color: #333;
}

.form-field input:focus,
.form-field select:focus {
    border-color: #0057B8;
    box-shadow: 0 0 0 4px rgba(0, 87, 184, 0.08);
}

.select-arrow {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
    font-size: 13px;
    pointer-events: none;
}

/* Buttons */
.form-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 20px;
}

.btn-regresar {
    padding: 15px 40px;
    border: 2px solid #0033A0;
    border-radius: 50px;
    background: #fff;
    color: #0033A0;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Nunito Sans', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-regresar:hover {
    background: #f0f4ff;
    transform: translateY(-2px);
}

.btn-continuar {
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    background: linear-gradient(135deg, #FFD100, #e6b800);
    color: #333;
    font-size: 16px;
    font-weight: 800;
    font-family: 'Nunito Sans', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 209, 0, 0.4);
}

.btn-continuar:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 209, 0, 0.5);
}

/* ==================== MODALES ==================== */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.modal-overlay.active {
    display: flex;
}

.modal-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.25);
    animation: modalIn 0.3s ease;
}

@keyframes modalIn {
    from { opacity: 0; transform: scale(0.9) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

/* Modal Loading */
.modal-loading {
    padding: 50px 40px;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #e8e8e8;
    border-top-color: #0057B8;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.modal-loading p {
    font-size: 16px;
    color: #555;
    font-weight: 600;
}

/* Modal Compra */
.modal-compra h2 {
    font-size: 28px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 20px;
}

.modal-badge {
    display: inline-block;
    background: linear-gradient(135deg, #FFD100, #e6b800);
    color: #333;
    font-weight: 800;
    font-size: 14px;
    padding: 8px 24px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.modal-placa-box {
    border: 2px solid #0033A0;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 20px;
}

.placa-row {
    display: flex;
    align-items: center;
    overflow: hidden;
}

.placa-label {
    background: #0033A0;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    padding: 14px 20px;
    flex: 1;
}

.placa-value {
    font-size: 18px;
    font-weight: 800;
    color: #333;
    padding: 14px 20px;
    flex: 0.6;
    text-align: center;
    background: #f8f9fb;
}

.valor-soat-box {
    padding: 16px 20px;
    text-align: center;
    background: #f0f4ff;
}

.valor-label {
    display: block;
    font-size: 14px;
    color: #777;
    margin-bottom: 6px;
}

.valor-price {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: #0033A0;
}

.modal-nota {
    background: #e8e8e8;
    border-radius: 10px;
    padding: 12px 18px;
    margin-bottom: 24px;
}

.modal-nota p {
    font-size: 13px;
    color: #666;
    font-style: italic;
}

.modal-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.modal-buttons .btn-regresar,
.modal-buttons .btn-continuar {
    padding: 13px 28px;
    font-size: 14px;
}

/* ==================== VALIDACION PAGE ==================== */
.validacion-main {
    background: #f8f9fb;
    min-height: 70vh;
    padding: 40px 20px 60px;
}

.validacion-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 280px 1fr 280px;
    gap: 30px;
    align-items: start;
}

/* Info vehículo sidebar */
.vehiculo-info-card {
    position: sticky;
    top: 90px;
}

.vehiculo-fieldset {
    border: 1.5px solid #ccc;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 24px;
    background: #fff;
}

.vehiculo-fieldset legend {
    font-size: 13px;
    color: #777;
    font-weight: 600;
    padding: 0 8px;
}

.vehiculo-detail {
    display: flex;
    gap: 6px;
    margin-bottom: 8px;
    font-size: 13px;
    line-height: 1.5;
}

.detail-label {
    font-weight: 700;
    color: #333;
    white-space: nowrap;
}

.detail-value {
    color: #555;
}

.vigencia-field {
    margin-bottom: 20px;
}

.vigencia-field label {
    display: block;
    font-size: 13px;
    color: #0057B8;
    font-weight: 700;
    margin-bottom: 8px;
}

/* Tomador section */
.tomador-section {
    background: #fff;
    border-radius: 16px;
    padding: 35px 30px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.tomador-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

.tomador-header h1 {
    font-size: 24px;
    font-weight: 800;
    color: #1a1a2e;
}

.tomador-info-icon {
    font-size: 20px;
    color: #0057B8;
    cursor: pointer;
}

.tomador-section .datos-form {
    gap: 16px;
}

.tomador-section .matricula-question.compact {
    margin-bottom: 0;
    text-align: left;
}

.tomador-section .question-label.small {
    font-size: 14px;
    margin-bottom: 10px;
}

.tomador-section .info-box.compact {
    margin-bottom: 0;
    padding: 16px 18px;
    border-radius: 12px;
}

.floating-label {
    position: absolute;
    top: -8px;
    left: 16px;
    font-size: 11px;
    color: #0057B8;
    background: #fff;
    padding: 0 4px;
    font-weight: 600;
}

/* Pago sidebar */
.pago-sidebar {
    position: sticky;
    top: 90px;
}

.pago-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px 24px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid #e8e8e8;
}

.pago-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 12px;
}

.pago-label {
    font-size: 15px;
    font-weight: 700;
    color: #333;
}

.pago-valor {
    font-size: 22px;
    font-weight: 800;
    color: #0033A0;
}

.pago-nota {
    font-size: 12px;
    color: #e6a200;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
    text-decoration: underline;
}

.btn-comprar {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #FFD100, #e6b800);
    color: #333;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 800;
    font-family: 'Nunito Sans', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 209, 0, 0.4);
}

.btn-comprar:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 209, 0, 0.5);
}

/* ==================== MODAL PSE ==================== */
.modal-pse {
    max-width: 480px;
    padding: 35px 32px;
    text-align: left;
}

.pse-header {
    text-align: center;
    margin-bottom: 28px;
}

.pse-logo {
    height: 40px;
    margin-bottom: 14px;
}

.pse-header h2 {
    font-size: 22px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 6px;
}

.pse-subtitle {
    font-size: 14px;
    color: #777;
}

.pse-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pse-resumen {
    background: #f0f4ff;
    border-radius: 12px;
    padding: 16px 20px;
    border: 1px solid #d0dcf0;
}

.pse-resumen-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pse-resumen-row span:first-child {
    font-size: 15px;
    font-weight: 600;
    color: #555;
}

.pse-total {
    font-size: 22px;
    font-weight: 800;
    color: #0033A0;
}

.pse-form .modal-buttons {
    margin-top: 8px;
}

.pse-form .btn-continuar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.pse-powered {
    text-align: center;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.pse-powered span {
    font-size: 11px;
    color: #aaa;
}

.kushki-text {
    font-size: 14px;
    font-weight: 800;
    color: #1a1a2e;
    letter-spacing: 1px;
    opacity: 0.45;
}

.loading-nota {
    font-size: 13px;
    color: #999;
    margin-top: 8px;
    font-style: italic;
}

/* ==================== FOOTER ==================== */
.footer {
    background: #002266;
    padding: 30px 20px;
}

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

.footer p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 12px;
    line-height: 1.8;
    text-align: center;
}

/* ==================== RESPONSIVE ==================== */

/* Tablet grande */
@media (max-width: 1024px) {
    .header-container {
        flex-direction: column;
        gap: 16px;
    }

    .hero-container {
        flex-direction: column;
        min-height: auto;
    }

    .hero-image {
        height: 300px;
    }

    .hero-image::after {
        display: none;
    }

    .hero-form-wrapper {
        padding: 30px 20px 80px;
    }

    .hero-form {
        max-width: 440px;
    }

    .benefits-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .validacion-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .vehiculo-info-card,
    .pago-sidebar {
        position: static;
    }

    .pago-sidebar {
        order: -1;
    }

    .pago-card {
        display: flex;
        align-items: center;
        gap: 20px;
        flex-wrap: wrap;
    }

    .pago-header {
        margin-bottom: 0;
    }

    .pago-nota {
        margin-bottom: 0;
        flex: 1;
    }

    .btn-comprar {
        width: auto;
        padding: 14px 40px;
    }
}

/* Tablet */
@media (max-width: 768px) {
    .step-line {
        width: 20px;
    }

    .step-label {
        font-size: 12px;
    }

    .hero-image {
        height: 250px;
    }

    .benefits-container {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .benefit-card:last-child {
        grid-column: 1 / -1;
        max-width: 360px;
        margin: 0 auto;
    }

    .datos-main {
        padding: 35px 16px 50px;
    }

    .datos-title {
        font-size: 26px;
    }

    .footer p {
        font-size: 11px;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .header {
        padding: 12px 0;
    }

    .header-container {
        padding: 0 15px;
    }

    .logo-brand {
        font-size: 24px;
    }

    .steps {
        gap: 0;
    }

    .step-line {
        width: 14px;
        margin: 0 4px;
    }

    .step-number {
        width: 26px;
        height: 26px;
        font-size: 12px;
    }

    .step-label {
        font-size: 11px;
    }

    .hero {
        min-height: auto;
    }

    .hero-image {
        height: 200px;
    }

    .hero-form-wrapper {
        padding: 20px 16px 70px;
    }

    .hero-form {
        padding: 30px 24px;
        border-radius: 20px;
    }

    .form-icon {
        width: 48px;
        height: 48px;
        border-radius: 14px;
    }

    .form-icon i {
        font-size: 20px;
    }

    .hero-form h1 {
        font-size: 21px;
    }

    .form-subtitle {
        font-size: 14px;
    }

    .input-group input {
        padding: 14px 40px 14px 42px;
        font-size: 15px;
        border-radius: 12px;
    }

    .btn-cotizar {
        padding: 14px;
        font-size: 16px;
    }

    .hero-wave svg {
        height: 50px;
    }

    .benefits {
        padding: 50px 16px 60px;
    }

    .benefits-container {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .benefit-card:last-child {
        grid-column: auto;
        max-width: none;
    }

    .benefit-card {
        padding: 28px 20px;
        border-radius: 16px;
    }

    .benefit-card h2 {
        font-size: 18px;
    }

    .footer {
        padding: 24px 16px;
    }

    .footer p {
        font-size: 10px;
        line-height: 1.7;
    }

    .datos-main {
        padding: 30px 14px 40px;
    }

    .datos-title {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .info-box {
        padding: 16px 18px;
        border-radius: 12px;
        gap: 12px;
    }

    .info-box p {
        font-size: 13px;
    }

    .form-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .btn-regresar,
    .btn-continuar {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .modal-card {
        padding: 30px 20px;
        border-radius: 20px;
    }

    .modal-compra h2 {
        font-size: 22px;
    }

    .valor-price {
        font-size: 26px;
    }

    .modal-buttons {
        flex-direction: column;
    }

    .modal-buttons .btn-regresar,
    .modal-buttons .btn-continuar {
        width: 100%;
    }

    .modal-pse {
        padding: 28px 20px;
    }

    .pse-header h2 {
        font-size: 19px;
    }

    .pse-total {
        font-size: 20px;
    }

    .tomador-section {
        padding: 24px 18px;
    }

    .tomador-header h1 {
        font-size: 20px;
    }

    .pago-card {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-comprar {
        width: 100%;
    }
}

/* Mobile pequeño */
@media (max-width: 400px) {
    .steps {
        flex-wrap: wrap;
        justify-content: center;
        gap: 6px;
    }

    .step-line {
        display: none;
    }

    .hero-image {
        height: 170px;
    }

    .hero-form h1 {
        font-size: 19px;
    }

    .hero-form {
        padding: 25px 18px;
    }
}
