/* ==========================================================================
   ESTRUCTURA: BLOQUES DE INFORMACIÓN Y COMPARATIVAS (GANAS/PIERDES)
   ========================================================================== */

.bloque-info {
    margin-bottom: 50px;
}

.texto-2-columnas {
    display: flex;
    gap: 20px;
    margin-top: 15px;
}

.col-ganas, .col-pierdes {
    flex: 1;
    padding: 15px 20px;
    border-radius: 4px;
    background-color: rgba(0, 0, 0, 0.05); 
}

.col-ganas { border-left: 5px solid #0056b3; }
.col-pierdes { border-left: 5px solid #b30000; }

/* FORZAMOS QUE P, UL y LI TENGAN EL MISMO FORMATO EXACTO */
.texto-2-columnas p, 
.texto-2-columnas ul,
.texto-2-columnas li {
    font-size: 13.5px !important;
    line-height: 1.5 !important;
    color: #666 !important;
    font-family: 'Open Sans', sans-serif !important; /* Aseguramos la fuente */
    margin: 0 !important;
}

/* Títulos de las cajas un poco más oscuros (#444) */
.texto-2-columnas p b,
.texto-2-columnas li b {
    color: #444 !important;
    font-weight: 600 !important;
}

/* Ajuste de la lista para que no parezca una lista distinta al párrafo */
.texto-2-columnas ul {
    margin: 5px 0 0 18px !important; /* Espacio superior y sangrado para los puntos */
    padding: 0 !important;
    list-style-type: disc !important;
}

.texto-2-columnas li {
    display: list-item !important; /* Forzamos que se comporte como lista pero con estilo de P */
    margin-bottom: 4px !important; /* Un pelín de separación entre puntos */
}

/* Responsivo para móviles */
@media (max-width: 800px) {
    .texto-2-columnas { 
        flex-direction: column; 
    }
}

/* ==========================================================================
   PARA LAS NOTAS IMPORTANTES
   ========================================================================== */

/* Bloque de Nota de Actualidad */
.nota-actualidad {
    margin: 40px 0;
    padding: 20px 25px;
    border-radius: 4px;
    background-color: rgba(0, 0, 0, 0.05); /* Gris sutil de tus comparativas */
    border-left: 5px solid #0056b3; /* Borde azul de la columna 'ganas' */
}

.nota-actualidad p {
    font-size: 13.5px !important;
    line-height: 1.5 !important; /* Misma altura de línea que tus otros bloques */
    color: #666 !important;
    font-family: 'Open Sans', sans-serif !important;
    margin: 0 !important;
}

.nota-actualidad p b {
    color: #444 !important;
    font-weight: 600 !important;
}

/* Espaciador simple entre párrafos para que no se peguen */
.espacio-nota {
    display: block;
    margin-top: 15px;
}

/* ==========================================================================
   ESTILO DEL ACORDEÓN (DESPLEGABLES)
   ========================================================================== */
.acordeon-guia {
    border: none;
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
    background: transparent;
}

.titulo-desplegable {
    padding: 20px 0;
    font-family: 'Open Sans', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #111;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.titulo-desplegable::-webkit-details-marker { display: none; }

.titulo-desplegable::after {
    content: '+';
    font-size: 24px;
    color: hsl(19, 100%, 50%);
    font-weight: 300;
}

/* Opcional: que cambie de color cuando el mouse pasa por encima */
.titulo-desplegable:hover {
    color: #353535;
    background-color: rgba(0,0,0,0.02);
}

.acordeon-guia[open] .titulo-desplegable::after {
    content: '−';
}

