:root {
    --ICO-Blanco: #FFF;
    --ICO-Azul: #0B4460;
    --ICO-Celeste: #459CD6;
    --ICO-Texto-negro: #141414;
    --ICO-texto-mate: #343737;
    --ICO-Gris-transparente: #EAEAEA;
    --Gray-00: #FFF;
}

body {
    font-family: 'Avenir Next LT Pro', sans-serif;
    background-color: var(--ICO-Blanco);
}

.metodo-entrada-wrapper {
    max-width: 1184px;
    width: 100%;
    margin: 0 auto;
    padding: 32px 24px 48px;
    box-sizing: border-box;
}

.entry-title {
    color: var(--ICO-Azul, #0B4460);
    font-family: "Avenir Next LT Pro", sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 0 0 12px 0;
}

.entry-subtitle {
    color: var(--ICO-Texto-negro, #141414);
    font-family: "Avenir Next LT Pro", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    margin: 0 0 32px 0;
}

.entry-cards-grid {
    display: flex;
    flex-direction: row;
    gap: 24px;
    justify-content: space-between;
    width: 100%;
}

.entry-card {
    display: flex;
    width: 555px;
    height: 275px;
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    border-radius: 10px;
    border: 1px solid var(--ICO-Gris-transparente, #EAEAEA);
    background: #FFF;
    box-shadow: 0 0 9px 1px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}

.entry-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 6px;
}

.card-title {
    color: var(--ICO-texto-mate, #343737);
    font-family: "Avenir Next LT Pro", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 0;
}

.card-description {
    color: var(--ICO-Texto-negro, #141414);
    font-family: "Avenir Next LT Pro", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    margin: 0;
}

.card-description strong {
    font-weight: 700;
    color: var(--ICO-Texto-negro, #141414);
}

.btn-entry {
    display: inline-flex;
    width: 200px;
    height: 40px;
    padding: 0 24px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 26px;
    background: var(--ICO-Celeste, #459CD6);
    color: var(--Gray-00, #FFF);
    font-family: "Avenir Next LT Pro", sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.144px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    margin-top: auto;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.btn-entry:hover {
    background: var(--ICO-Azul, #0B4460);
}

.btn-entry:active {
    transform: scale(0.98);
}

.btn-icon {
    width: 20px;
    height: 20px;
}

@media (max-width: 1184px) {
    .entry-cards-grid {
        justify-content: center;
        gap: 24px;
    }

    .entry-card {
        width: calc(50% - 10px);
        max-width: 555px;
    }
}

@media (max-width: 1024px) {
    .entry-cards-grid {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .entry-card {
        width: 100%;
        max-width: 555px;
        height: auto;
        min-height: 275px;
    }
}

@media (max-width: 768px) {
    .metodo-entrada-wrapper {
        padding: 24px 24px 40px;
    }
}

/* ICO B2B fixes */
.ico-b2b-auth-page a.btn-entry,
.ico-b2b-auth-page a.btn-entry:visited,
.ico-b2b-auth-page .btn-entry,
.ico-b2b-auth-page .btn-entry:visited,
.ico-b2b-auth-page .login-submit-btn.active,
.ico-b2b-auth-page .login-submit-btn.active:visited,
.ico-b2b-auth-page .recover-submit-btn.active,
.ico-b2b-auth-page .reset-submit-btn.active,
.ico-b2b-auth-page .submit-btn.active,
.ico-b2b-auth-page .submit-btn.active:visited {
    color: #FFF !important;
}
.ico-b2b-auth-page a.btn-entry span,
.ico-b2b-auth-page a.btn-entry:visited span {
    color: #FFF !important;
}
.ico-b2b-auth-page .ico-b2b-form-alert-success {
    border: 1px solid #b7e4c7;
    background: #f0fff4;
    color: #166534;
}


/* ICO B2B auth color + visited state fix */
.ico-b2b-auth-page .btn-entry,
.ico-b2b-auth-page .btn-entry:link,
.ico-b2b-auth-page .btn-entry:visited,
.ico-b2b-auth-page .btn-entry:hover,
.ico-b2b-auth-page .btn-entry:focus,
.ico-b2b-auth-page .btn-entry:active,
.ico-b2b-auth-page .btn-entry span,
.ico-b2b-auth-page .btn-entry:visited span,
.ico-b2b-auth-page .login-submit-btn.active,
.ico-b2b-auth-page .recover-submit-btn.active,
.ico-b2b-auth-page .reset-submit-btn.active,
.ico-b2b-auth-page .submit-btn.active {
	color: #ffffff !important;
}
.ico-b2b-auth-page .recover-link,
.ico-b2b-auth-page .recover-link:link,
.ico-b2b-auth-page .recover-link:visited,
.ico-b2b-auth-page .recover-link:hover,
.ico-b2b-auth-page .recover-link:focus {
	color: #459CD6 !important;
}
.ico-b2b-auth-page .register-link,
.ico-b2b-auth-page .register-link:link,
.ico-b2b-auth-page .register-link:visited,
.ico-b2b-auth-page .register-link:hover,
.ico-b2b-auth-page .register-link:focus {
	color: #0B4460 !important;
}
.ico-b2b-auth-page .back-login-link,
.ico-b2b-auth-page .back-login-link:link,
.ico-b2b-auth-page .back-login-link:visited,
.ico-b2b-auth-page .back-login-link:hover,
.ico-b2b-auth-page .back-login-link:focus {
	color: #414141 !important;
}

@media (max-width: 980px) {
    .ico-b2b-auth-page .metodo-entrada-wrapper {
        padding-top: 24px !important;
    }
}

/* RT Fix 2026-06-15: B2B acceso mobile sin sesión - bajar solo lo necesario debajo del call center */
.ico-b2b-auth-page {
    padding-top: 0 !important;
}

@media (max-width: 980px) {
    .ico-b2b-auth-page .metodo-entrada-wrapper {
        padding-top: 100px !important;
    }
}


/* RT Fix 2026-06-16: usar offset dinámico del header; sin espacio artificial */
@media (max-width: 980px) {
    .ico-b2b-auth-page .metodo-entrada-wrapper {
        padding-top: 24px !important;
    }
}

