
/* ==================================
   1. ESTILO PARA TARJETAS DE BENEFICIOS SIMPLES
================================== */
/* Para el subtítulo debajo del H2 */
.section-subtitle {
    text-align: center;
    max-width: 800px;
    margin: 10px auto 40px auto;
    font-size: 1.1em;
    color: #666;
}

/* Estilo para los botones pequeños dentro de las tarjetas */
.ficha-boton-simple {
    display: block;
    width: fit-content;
    margin: 15px auto 0 auto;
    padding: 8px 15px;
    background-color: #0099cc; /* Color principal */
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 0.9em;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.ficha-boton-simple:hover {
    background-color: #007aa3;



}