/* RESET & BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #F4F7FC;
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    min-height: 100vh;
}

.app-wrapper {
    max-width: 540px;
    margin: 0 auto;
    background: #ffffff;
    min-height: 100vh;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
    overflow-x: hidden;
}


.top-header-white {
    background: #FFFFFF;
    width: 100%;
    padding: 0;
    margin: 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.03);
}

.header-container-white {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    min-height: 68px;
}

.header-left-white {
    display: flex;
    align-items: center;
}

.logo-wrapper-white {
    display: flex;
    align-items: center;
}

.header-logo-img-white {
    max-height: 59px;
    width: auto;
    display: block;
}

.logo-text-fallback-white {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.8px;
    background: linear-gradient(135deg, #0A2540 0%, #1F6E8C 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    display: none;
}

.header-logo-img-white:not([src]), 
.header-logo-img-white[src=""],
.header-logo-img-white[src="#"] {
    display: none;
}

.header-logo-img-white:not([src]) + .logo-text-fallback-white,
.header-logo-img-white[src=""] + .logo-text-fallback-white,
.header-logo-img-white[src="#"] + .logo-text-fallback-white {
    display: block;
}

.header-right-white {
    display: flex;
    align-items: center;
}

.elige-ganar-badge-white {
    background: #F0F7FC;
    padding: 8px 18px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 600;
    color: #1F6E8C;
    letter-spacing: -0.2px;
    border: 1px solid #E2EEF7;
    transition: all 0.2s;
}

.elige-ganar-badge-white:hover {
    background: #E8F3FA;
    transform: translateY(-1px);
}

/* MAIN CONTENT */
.main-content {
    padding: 24px 20px 32px 20px;
    background: #FFFFFF;
}

/* Banner de descargas */
.download-banner {
    background: #F8FBFE;
    border-radius: 60px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    color: #1F6E8C;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    justify-content: center;
    margin-bottom: 32px;
    border: 1px solid #E9F0F5;
}

.download-banner i {
    font-size: 14px;
    color: #00A86B;
}


.inputs-directos {
    margin-bottom: 32px;
}

.form-header {
    text-align: center;
    margin-bottom: 28px;
}

.form-header i {
    font-size: 42px;
    color: #1F6E8C;
    background: #EFF7FF;
    padding: 12px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.form-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: #0A2540;
    margin-bottom: 6px;
}

.form-header p {
    font-size: 14px;
    color: #6F8AAC;
}

.form-directo {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.field-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.field-group label {
    font-size: 14px;
    font-weight: 600;
    color: #2C4C6E;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ======================= */
/* INPUTS MODIFICADOS - Más cortos, cuadrados, gorditos, con sombra */
/* ======================= */
.field-group input {
    width: 100%;
    padding: 19px 16px;  /* Más corto (antes 15px 18px) */
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    border: 2px solid #E2EAF2;  /* Más gordito (antes 1.5px) */
    border-radius: 16px;  /* Más cuadrado (antes 28px) */
    background: #FFFFFF;
    transition: all 0.2s;
    outline: none;
    font-weight: 500;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);  /* Sombra ligera */
}

.field-group input:focus {
    border-color: #1F6E8C;
    box-shadow: 0 0 0 3px rgba(31, 110, 140, 0.1), 0 2px 8px rgba(0, 0, 0, 0.08);
}

.password-wrapper-directo {
    position: relative;
    width: 100%;
}

.password-wrapper-directo input {
    width: 100%;
    padding: 19px 48px 19px 16px;  /* Más corto y consistente */
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    border: 2px solid #E2EAF2;  /* Más gordito */
    border-radius: 16px;  /* Más cuadrado */
    background: #FFFFFF;
    transition: all 0.2s;
    outline: none;
    font-weight: 500;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);  /* Sombra ligera */
}

.password-wrapper-directo input:focus {
    border-color: #1F6E8C;
    box-shadow: 0 0 0 3px rgba(31, 110, 140, 0.1), 0 2px 8px rgba(0, 0, 0, 0.08);
}

.toggle-pwd-directo {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #8FA3BC;
    font-size: 18px;
    transition: color 0.2s;
}

.toggle-pwd-directo:hover {
    color: #1F6E8C;
}

.form-options-directo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin: 4px 0 4px;
}

.checkbox-directo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #4C6F8F;
    cursor: pointer;
    font-weight: 500;
}

.checkbox-directo input {
    width: 16px;
    height: 16px;
    accent-color: #1F6E8C;
    cursor: pointer;
}

.forgot-link-directo {
    font-size: 13px;
    color: #1F6E8C;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.forgot-link-directo:hover {
    text-decoration: underline;
    color: #0A2540;
}


.btn-login-directo {
   background: linear-gradient(135deg, #0e915f 0%, #00b86f 100%);
    color: white;
    border: none;
    padding: 19px 20px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.25s;
    margin-top: 8px;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 4px 12px rgba(0, 209, 128, 0.3);
}

.btn-login-directo:hover {
    background: #00b86f;
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(0, 209, 128, 0.4);
}

.btn-login-directo:active {
    transform: translateY(1px);
}

.register-directo {
    text-align: center;
    margin-top: 24px;
    font-size: 14px;
    color: #5B7C9C;
    padding-top: 16px;
    border-top: 1px solid #EEF3F8;
}

.register-directo a {
    color: #1F6E8C;
    text-decoration: none;
    font-weight: 700;
}

.register-directo a:hover {
    text-decoration: underline;
}


.foto-estatica {
    margin-bottom: 32px;
    text-align: center;
}

.stori-png {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 0;
}

/* BENEFICIOS */
.benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.benefit-card {
    background: #F9FCFE;
    border-radius: 24px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.2s ease;
    border: 1px solid #EDF3F8;
}

.benefit-card:hover {
    transform: translateX(5px);
    border-color: #D4E2ED;
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.card-icon {
    width: 44px;
    height: 44px;
    background: #EFF7FF;
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #1F6E8C;
    flex-shrink: 0;
}

.card-text {
    font-size: 14px;
    line-height: 1.4;
    color: #1E2F3F;
    font-weight: 500;
    flex: 1;
}

.card-text strong {
    font-weight: 800;
    color: #0F2C3F;
}

.green-highlight {
    background: #E3F5EC;
    color: #0A6E4A;
    padding: 3px 8px;
    border-radius: 30px;
    font-size: 13px;
    display: inline-block;
}

.no-annual {
    color: #1F6E8C;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 480px) {
    .header-container-white {
        padding: 12px 16px;
        min-height: 60px;
    }
    
    .header-logo-img-white {
        max-height: 36px;
    }
    
    .logo-text-fallback-white {
        font-size: 22px;
    }
    
    .elige-ganar-badge-white {
        padding: 6px 14px;
        font-size: 12px;
    }
    
    .main-content {
        padding: 20px 16px 28px;
    }
    
    /* Inputs responsivos */
    .field-group input,
    .password-wrapper-directo input {
        padding: 10px 14px;
        border-radius: 18px;
    }
    
    .password-wrapper-directo input {
        padding-right: 44px;
    }
}

#imagenee {
    width: 120px;
    height: auto;
    display: block;
    margin: 0 auto 16px auto;
    object-fit: contain;
}


@media (max-width: 480px) {
    #imagenee {
        width: 60px;
    }
}

/* ======================= */
/* SECCIÓN SIMPLIFICADA - SOLO TÍTULO Y MONTO */
/* ======================= */
.credit-boost-simple {
    background: linear-gradient(135deg, #035737 0%, #1A4A6F 100%);
    border-radius: 24px;
    padding: 20px;
    margin-bottom: 28px;
    text-align: center;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.boost-content i {
    font-size: 32px;
    color: #00d180;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.boost-badge-simple {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}

.boost-amount-simple {
    font-size: 24px;
    font-weight: 800;
    color: #00d180;
    margin: 0;
    letter-spacing: -0.5px;
}

/* Responsive */
@media (max-width: 480px) {
    .credit-boost-simple {
        padding: 16px;
    }
    
    .boost-content i {
        font-size: 28px;
    }
    
    .boost-badge-simple {
        font-size: 16px;
    }
    
    .boost-amount-simple {
        font-size: 20px;
    }
}

/* Estilos para términos y condiciones */
.terms-link {
    color: #1F6E8C;
    text-decoration: none;
    font-weight: 700;
}

.terms-link:hover {
    text-decoration: underline;
    color: #0A2540;
}

.checkbox-directo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #4C6F8F;
    cursor: pointer;
    font-weight: 500;
}

.checkbox-directo a {
    display: inline-block;
}