/* === ESTRUCTURA GENERAL Y ETIQUETAS PRINCIPALES === */

body {
    background-color: #f9f9f9;
}


.page-footer {
    padding-top: 20px;
    color: #fff;
    background-color: #545454;
}

a:hover {
    text-decoration: underline !important;
}


/* === COMPONENTES PERSONALIZADOS === */

.card {
    margin: auto;
    border: .1rem solid transparent;
    border-radius: .6rem;
    box-shadow: 0 0.4rem 0.8rem 0 #e2eaf2;
    -webkit-box-shadow: 0 0.4rem 0.8rem 0 #e2eaf2;
}

.message {
    margin-left: 0;
    margin-bottom: 20px;
    padding: 12px;
    border-left: 4px solid #00a0d2;
    text-align: left;
    background-color: #fff;
    box-shadow: 0 1px 1px 0 rgba(0,0,0,.1);
}


/* === BOTONES Y ELEMENTOS DE ACCIÓN === */

#SubmitPayU {
    width: 100%;
    height: 40px;
    min-height: 40px;
    max-height: 40px;
    border: 1px solid #2C2E2F;
    border-radius: 20px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 13px;
    color: #2C2E2F;
    background: #fff;
    cursor: pointer;
    outline: none;
}
  
#SubmitPayU:hover {
    background: #f2f2f2;
}
  
#PayU {
    font-size: 1.2rem;
    font-weight: bold;
    color: #ACC406;
}


/* === ESTILOS PARA LA LIBRERÍA SELECT2 === */
/* Modificaciones para integrar Select2 con el estilo de Materialize */

.select2 .selection .select2-selection--single,
.select2-container--default .select2-search--dropdown .select2-search__field {
    height: 2.05rem;
    border-width: 0 0 1px 0 !important;
    border-radius: 0 !important;
}

.select2-container--default .select2-selection--multiple, 
.select2-container--default.select2-container--focus .select2-selection--multiple {
    border-width: 0 0 1px 0 !important;
    border-radius: 0 !important;
}

.select2-container .select2-selection--multiple {
    min-height: 2.05rem !important;
}

.select2-container .select2-search--inline .select2-search__field {
    margin-top: 0 !important;
}

.select2-container .select2-search--inline .select2-search__field:focus {
    border-bottom: none !important;
    box-shadow: none !important;
}

.select2-dropdown {
    border: none !important;
    box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16),0 2px 10px 0 rgba(0,0,0,0.12);
}

.select2-results__option {
    padding: 8px 16px;
    font-size: 16px;
    color: #26a69a;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    color: #26a69a !important;
    background-color: #eee !important;
}

.select2-container--default .select2-results__option[aria-selected=true] {
    background-color: #e1e1e1 !important;
}

.select2-container--default .select2-results__option[role=group] .select2-results__group {
    /* background-color: #9e9e9e; */
    color: #fff;
    background: linear-gradient(45deg, #009688, #007a96);
}

.select2-container--default.select2-container--disabled .select2-selection--single {
    color: rgba(0,0,0,0.26);
    background-color: #ddd !important;
    border-bottom: 1px dotted rgba(0,0,0,0.26);
}


/* === ESTILOS PARA INPUTS DE MATERIALIZE (SINTAXIS SCSS) === */
/* NOTA: Esta sección utiliza anidamiento (&) que es propio de pre-procesadores como SASS/SCSS. */
/* Es posible que no funcione correctamente en un archivo CSS plano. */

input[type=text],
input[type=password],
input[type=email],
input[type=url],
input[type=time],
input[type=date],
input[type=datetime-local],
input[type=tel],
input[type=number],
input[type=search],
textarea.materialize-textarea {
    &.valid + label::after,
    &.invalid + label::after,
    &:focus.valid + label::after,
    &:focus.invalid + label::after {
        white-space: pre;
    }
    &.empty {
        &:not(:focus).valid + label::after,
        &:not(:focus).invalid + label::after {
            top: 2.8rem;
        } 
    }
}


/* === ESTILOS DE VISIBILIDAD INICIAL === */
/* Elementos que se ocultan por defecto y se muestran con JavaScript */

#bloquePagar,
#extraInfoDiv,
#divSelectCuota,
#bloqueAcuerdoPago,
#bloqueCuotas,
#monedaPayU,
#monedaPayPal,
#containerPayU,
#paypal-button-container,
#totalPagar {
    display: none;
}

#labelSelectCuota {
    margin-top: 15px;
}



/*
==================================================================
  CSS CORREGIDO PARA HEADER CORPORATIVO
==================================================================
*/

.corporate-header nav {
    background-color: #004d40 !important;
    box-shadow: none !important;
    
    /* ¡REGLA CLAVE #1! */
    /* Se establece una altura fija para la barra de navegación. */
    height: 70px;
    
    /* ¡REGLA CLAVE #2! */
    /* Se iguala la altura de línea a la altura de la barra. */
    /* Esto centra verticalmente cualquier elemento de texto como los enlaces. */
    line-height: 70px;
}

.corporate-header .brand-logo img {
    height: 40px; /* La altura deseada para el logo */
    width: auto;
    filter: brightness(0) invert(1); /* Pone el logo en blanco */

    /* ¡REGLA CLAVE #3! */
    /* Esto alinea la imagen verticalmente en el centro de la línea de 70px. */
    vertical-align: middle;
}

/* El contenedor .nav-wrapper no necesita estilos especiales ahora */
/* Los quitamos para evitar conflictos. */

/* Estilos para el enlace de la derecha */
.corporate-header nav ul a {
    color: rgba(255, 255, 255, 0.85) !important; /* Blanco semi-transparente para suavidad */
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    /* No se necesita height o line-height aquí, ya que lo hereda de la <nav> */
}

.corporate-header nav ul a:hover {
    background-color: rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
}

/* Aseguramos que el icono del menú móvil también sea blanco */
.corporate-header .sidenav-trigger i {
    color: #ffffff;
}

/* --- Banner --- */
.corporate-banner {
    background: linear-gradient(45deg, #00796b 0%, #004d40 100%);
    color: #fff;
    padding: 80px 0;
}

.corporate-banner .header-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.corporate-banner .header-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    opacity: 0.9;
    max-width: 500px;
}

.banner-icon-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-icon-container .material-icons {
    font-size: 8rem !important;
    color: rgba(255, 255, 255, 0.2);
}





/* --- Opción 2: Footer Moderno con Iconos (Colores Unificados con el Header) --- */
.modern-footer {
    /* CAMBIO: Usamos el color de fondo principal del header */
    background-color: #004d40; 
    color: #ecf0f1;
    padding: 60px 0 0 0;
}

.modern-footer h5 {
    text-transform: uppercase;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 25px;
    
    /* CAMBIO: Usamos el verde más claro del gradiente del header como acento */
    border-left: 3px solid #00796b; 
    padding-left: 10px;
}

.modern-footer p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8); /* Suavizamos el texto del párrafo */
}

.modern-footer ul {
    list-style: none;
    padding-left: 0;
}

.modern-footer ul li a {
    color: #bdc3c7;
    text-decoration: none !important;
    transition: color 0.3s ease;
    display: block;
    margin-bottom: 12px;
}

.modern-footer ul li a:hover {
    color: #ffffff;
}

.social-icons {
    margin-top: 20px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50%;
    margin-right: 10px;
    font-size: 1rem;
    text-decoration: none !important;
    transition: all 0.3s ease; /* Transición para todos los cambios */
}

.social-icon:hover {
    /* CAMBIO: Usamos el color de acento del header para el hover */
    background-color: #00796b; 
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.modern-footer .footer-copyright {
    /* CAMBIO: Usamos un tono más oscuro del color del header para la barra de copyright */
    background-color: #00382e; 
    text-align: center;
    padding: 25px 0;
    margin-top: 40px;
    color: rgba(255, 255, 255, 0.7); /* Texto de copyright más sutil */
}