/* ============================= */
/* RESET GENERAL */
/* ============================= */

body {
    background-color: #f4f6f8;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    color: #2f3a4a;
    margin: 0;
    padding: 0;
}

.text-center {
    padding: 40px 20px;
}

/* ============================= */
/* TITULOS */
/* ============================= */

h1.display-4 {
    font-weight: 600;
    font-size: 3rem;
    color: #2e4057;
    margin-bottom: 10px;
}

h2 {
    font-weight: 300;
    font-size: 1.2rem;
    color: #5d6d7e;
    margin-bottom: 40px;
}

/* ============================= */
/* LAYOUT CON FRANJAS */
/* ============================= */

#contenedor {
    display: flex;
    align-items: flex-start;
}

#publicidad_lateral_1,
#publicidad_lateral_2 {
    
    min-height: 100vh;
    background-color: #e9eef4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1px;
    width: 225px;
    flex: 0 0 225px;
}
/* Columna central */
#contenedor > .text-center {
    flex: 1;
    padding: 40px 20px;
}




/* ============================= */
/* BOTONES */
/* ============================= */

button {
    background-color: #7b9acc;
    border: none;
    border-radius: 8px;
    padding: 10px 18px;
    font-size: 0.9rem;
    color: white;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s ease;
}

button:hover {
    background-color: #5d7fa6;
    transform: translateY(-1px);
}





/* ============================= */
/* MIS AJUSTES*/
/* ============================= */

#tituloPrincipal {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    
}




/*------------donacion----------*/
#cartelDonacion {
    position: fixed;
    top: 215px;
    right: 2.5px; /* 👉 ahora bien a la derecha */

    width: 220px;
    padding: 16px;

    background-color: #ffffff;
    color: #333;

    border-radius: 14px;

    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;

    box-shadow: 0 6px 18px rgba(0,0,0,0.15);

    z-index: 9999;
}

/* texto */
#textoDonacion {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
    font-family: 'Segoe UI', Tahoma, sans-serif;
}


/* botón azul estilo MercadoPago */


#btnDonar {
    width: 100%;
    padding: 10px;
    

    border: none;
    border-radius: 10px;

    background-color: #009ee3;
    color: white;

    font-weight: bold;
    cursor: pointer;

    transition: all 0.2s ease;
    margin-bottom: 10px;
}

#btnDonar:hover {
    background-color: #007bb5;
    transform: scale(1.05);
}

#btnDonar:active {
    transform: scale(0.97);

}

#btnDonar,
#btnDonar:hover,
#btnDonar:focus,
#btnDonar:active {
    text-decoration: none;
}


/*------------ fin donacion----------*/


#mas6meses,
#menos6meses,
#menos30anios {
    display: none;
    background-color: #f8d7da;
    color: #721c24;
    padding: 10px;
    border-radius: 8px;
    margin-top: 10px;
    font-size: 0.9rem;
}


#resultados{
    display: none;
}


#resultadoContainer{
    border: 2px solid rgb(255, 107, 107);
    border-radius: 8px; 
    box-shadow:rgba(255, 107, 107, 0.4) 0px 0px 5px;
    width: max-content;
    padding: 15px;
}

#aniosAportesContainer{
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    align-items: center;
    display: none;
}


#calcularJubilacionAutomaticaBtn{
   margin: 20px;
}

#tituloSeccionPlanillas{
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
    margin-top: 50px;
}

#img_portada {
   width: 20%;
    height: auto;
    
    
}