

/* ============================= */
/* 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;
}



/* ============================= */
/* 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;
}






.boton-link {
    display: block;
    width: 100%;         /* ocupa todo el contenedor */
    max-width: 1000px;    /* pero con límite */
    margin: 10px auto;

    padding: 14px 24px;

    background: #e0e0e0;
    color: #222;
    text-decoration: none;

    border-radius: 999px;
    text-align: center;

    transition: all 0.3s ease;
}

.boton-link:hover {
    background: #d6ecff;
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}



/*------------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----------*/