.elementor-8094 .elementor-element.elementor-element-5ef8127{--display:flex;}.elementor-8094 .elementor-element.elementor-element-057205d{--display:flex;}.elementor-8094 .elementor-element.elementor-element-8d1701d{--display:flex;}.elementor-8094 .elementor-element.elementor-element-7567d8f{--display:flex;}.elementor-8094 .elementor-element.elementor-element-9b0c33e{--display:flex;}/* Start custom CSS for html, class: .elementor-element-21f1be1 *//* =================================================================== */
/* PARTE 1: ESTILOS CSS PARA TABLAS ELEGANTES                      */
/* =================================================================== */

/* --- 1.1 ESTILO GENERAL (ESCRITORIO) --- */
/* Aplica un diseño limpio y profesional a las tablas dentro del contenido. */
.tye-article-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 40px 0;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 1.1rem;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border-radius: 4px;
    overflow: hidden;
}

.tye-article-content table thead th {
    background-color: #1a1a1a; /* Fondo de cabecera oscuro */
    color: #fff; /* Texto de cabecera blanco */
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    padding: 20px;
    text-align: left;
    font-weight: 600;
    border-bottom: 3px solid #C5A059; /* Borde inferior dorado */
}

.tye-article-content table tbody td {
    padding: 20px;
    border-bottom: 1px solid #eee;
    color: #333;
    line-height: 1.6;
    vertical-align: top;
}

/* Estilo para la primera columna: la hace más destacada */
.tye-article-content table tbody td:first-child {
    font-family: 'Georgia', serif;
    font-weight: bold;
    color: #8e7341; /* Color dorado/marrón para el texto */
    width: 25%;
    font-size: 1.15rem;
}

/* Filas alternas con un color de fondo suave para mejor legibilidad */
.tye-article-content table tbody tr:nth-child(even) {
    background-color: #fdfbf7;
}

/* --- 1.2 ESTILO PARA MÓVILES (RESPONSIVE) --- */
/* Transforma la tabla en un formato de "fichas verticales" en pantallas pequeñas. */
@media (max-width: 768px) {
    .tye-article-content table thead {
        /* Ocultamos la cabecera original en móviles */
        display: none;
    }

    .tye-article-content table,
    .tye-article-content table tbody,
    .tye-article-content table tr,
    .tye-article-content table td {
        display: block;
        width: 100%;
        box-sizing: border-box;
    }

    .tye-article-content table tr {
        margin-bottom: 40px;
        border: 1px solid #e0d8c3;
        border-radius: 12px;
        background: #fff !important;
        box-shadow: 0 10px 25px rgba(0,0,0,0.08);
        overflow: hidden;
    }

    /* El primer elemento de cada fila se convierte en el título de la ficha */
    .tye-article-content table td:first-child {
        background-color: #1a1a1a;
        color: #C5A059 !important; /* Dorado sobre fondo negro */
        text-align: center;
        font-size: 1.3rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 2px;
        padding: 20px 15px !important;
        width: 100% !important;
        border-bottom: 4px solid #C5A059;
    }

    .tye-article-content table td {
        padding: 20px 25px !important;
        border-bottom: 1px solid #f0f0f0;
        text-align: left;
        font-size: 1.2rem;
    }
    
    /* Añade las etiquetas de cabecera antes de cada dato */
    .tye-article-content table td:not(:first-child)::before {
        content: attr(data-label); /* Usa el atributo data-label del HTML */
        display: block;
        font-weight: 700;
        text-transform: uppercase;
        font-size: 0.85rem;
        color: #999;
        margin-bottom: 8px;
        letter-spacing: 1px;
    }
}


/* =================================================================== *//* End custom CSS */