/* =================== INICIO: CAMBIOS APLICADOS =================== */

/* 1. Cambio de unidades: px → rem/em */
/* Todos los tamaños de fuente, padding, margin y border-radius ahora están en rem/em */
/*----------------*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}


body {
    background-color: #f5f7fa;
    color: #333;
    line-height: 1.6;
    font-size: 16px;
    /* Base para rem */
}

/* 2. Header: Mejora de espaciado y responsividad */
/* header {
    position: relative;
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    padding: 0.5rem 0.5rem;
    text-align: center;
    overflow: visible;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

header::after,
header::before {
    content: "";
    background: url('../assets/images/engranaje.jpg') center / cover no-repeat;
    opacity: 0.1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

header h1 {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin-left: 0;
    z-index: 2;
    font-size: 2rem;
    color: white;

}

header img {
    position: relative;
    margin-left: auto;
    width: 10rem;
    height: 7.5rem;
    object-fit: cover;
    border: 0.05rem solid transparent;
    border-radius: 50%;
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.6)) sepia(0.1) brightness(0.8);
    transition: all 1.8s cubic-bezier(0.25, 0.1, 0.25, 1);
    margin-left: 1.5rem;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.15), 0 4px 25px rgba(0, 0, 0, 0.2);
}

header:hover img {
    transform: rotateY(360deg) scale(1.05);
    border-color: rgba(255, 255, 255, 0.3);
} */



header {
    position: relative;
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    padding: 0.5rem 1rem;
    color: white;
    overflow: visible;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}



header::after,
header::before {
    content: "";
    background: url('../assets/images/engranaje.jpg') center / cover no-repeat;
    opacity: 0.1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 20px;
    gap: 1rem;
}

/* Logo de la empresa */
.header-logo {
    margin-left: 2px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    border: 0.05rem solid transparent;
    border-radius: 50%;
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.6)) sepia(0.1) brightness(0.8);
    transition: all 1.8s cubic-bezier(0.25, 0.1, 0.25, 1);
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.15), 0 4px 25px rgba(0, 0, 0, 0.2);

}


header:hover .header-logo {
    transform: rotateY(360deg) scale(1.05);
    border-color: rgba(255, 255, 255, 0.3);
}



/* Título central */
header h1 {
    margin: 0;
    font-size: 1.5rem;
    /* text-align: center; */
    flex-grow: 1;
    z-index: 2;
    color: white;
}


/* 3. Noticias Laterales: Optimización para móviles */
.noticias-laterales {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: sticky;
    /* margin-left: auto;
    margin-right: 10px; */
    padding: 1rem;
    background: white;
    border-left: 1px solid #e1e1e1;
    width: 25%;
    min-height: fit-content;
}

.noticia {
    border-radius: 8px;
    overflow: hidden;
    background: white;
    margin-bottom: 1.8rem;
    min-height: 280px;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.noticia:hover {
    transform: scale(1.02);

}

#noticia1 {
    border-top: 3px solid #3498db;
}

#noticia2 {
    border-top: 3px solid #e74c3c;
}

#noticia3 {
    border-top: 3px solid #2ecc71;
}

#noticia4 {
    border-top: 3px solid #f39c12;
}

#noticia5 {
    border-top: 3px solid #3498db;
}

#noticia6 {
    border-top: 3px solid #e74c3c;
}

.noticia:hover .noticia-titulo {
    color: #6094d8;
    text-decoration: underline;
}

.noticia-imagen {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.noticia:hover .noticia-imagen {
    transform: scale(1.05);
}

.noticia-imagen-container {
    height: 160px;
    width: 100%;
}

.noticia-enlace {
    display: block;
    text-decoration: none;
}

.noticia-contenido {
    padding: 1rem;
    background: white;
    position: relative;
    z-index: 2;
}

.noticia-titulo {
    color: #3e608d;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.noticia-descripcion {
    color: #7f8c8d;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    display: block;
}

/* 4. Contenido Principal: Responsividad */
.contenedor-principal {
    display: flex;
    min-height: 100vh;
    margin-bottom: 60px;
    /* width: 100%;
    box-sizing: border-box; */
}

.off {
    position: sticky;
    margin-left: 5px;
}

.contenido {
    text-align: center;
    margin-bottom: 1rem;
}

h1 {
    color: #2c558b;
    font-size: 2rem;
    margin-bottom: 10px;
}

h2 {
    color: #2c558b;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 20px;
}

/* ul li::before {
    content: " ✅ ";
    margin-right: 10px;
    color: green;
} */


.btn-login {
    /* Color sólido y explícito */
    background-color: #3e608d;
    /* Usar !important solo para diagnóstico */
    color: white;
    border: none;
    padding: 0.625rem 1.25rem;
    font-size: 1rem;
    border-radius: 0.3125rem;
    cursor: pointer;
    transition: background-color 0.3s ease;

    /* Propiedades de aislamiento visual */
    background-clip: padding-box;
    -webkit-background-clip: padding-box;
    position: relative;
    /* Crea un nuevo contexto de apilamiento */
    z-index: 1;
    /* Asegura que esté por encima de fondos posibles */
    box-shadow: 0 0 0 1px #3e608d;
    /* Borde interior del mismo color (opcional) */
}

/* .btn-login:hover {
    background: #42ad46;
   
} */

.btn-pro,
.btn-bas {
    color: white;
    border: none;
    padding: 0.625rem 1.25rem;
    font-size: 1rem;
    border-radius: 0.3125rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.actualizacion .btn-pro {
    display: none;
}

.btn-bas {
    background-color: #059669;
    /* border: 2px solid #047857; */
}

.btn-bas:hover {
    background-color: #047857;
}

.btn-pro {
    background: linear-gradient(135deg, #1E40AF 0%, #1C3DAF 100%);
    border: none;
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.25);
}

.btn-pro:hover {
    background: linear-gradient(135deg, #1A369D 0%, #18329D 100%);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(30, 64, 175, 0.35);
}

/* .btn-pro:hover {
    background-color: #6bcf5c;
} */


/* .btn-pre {
    background-color: #E74C3C;
    color: white;
    border: none;
    padding: 0.625rem 1.25rem;
    font-size: 1rem;
    border-radius: 0.3125rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-pre:hover {
    background-color: #E74C3C;
} */

/* Primer enlace dentro del div.actualizacion */
.actualizacion a[href^="https://gumroad.com"] {
    color: #2e7d32;
    text-decoration: underline;
    text-decoration-color: #2e7d32;
    text-decoration-thickness: 2px;
    font-weight: bold;
}

/* Segundo enlace (que contiene el ancla #faq-ley) */
.actualizacion a[href="#faq-ley"] {
    color: #2e86ab;
    text-decoration: underline;
    text-decoration-color: #2e86ab;
    text-decoration-thickness: 2px;
}

/* 5. Calculadora: Mejoras de espaciado y responsividad */
.calculadora {
    display: flex;
    margin-left: 20px;
    flex-direction: column;
    gap: 10px;
    position: sticky;
    left: auto;
    width: 50%;
}

label {
    font-size: 1.125rem;
    display: block;
    margin-top: 5px;
    font-weight: bold;
}


/* Estilo base para los inputs */
#tipocontrato,
#fecha,
#fechac,
#tipoCalculo {
    width: 300px;
    text-align: center;
    margin: 5px auto;
    padding: 0.9375rem;
    border-radius: 0.9375rem;
    font-size: 1.4rem;
    background: #ffffff;
    border: 1px solid #d1d5db;
    color: #1f2937;
    /* Color por defecto (negro) */
    transition: color 0.2s ease, border-color 0.2s ease;
}

.input-group {
    position: relative;
    display: inline-block;
    width: 300px;
    margin: 5px auto;
}

#salario,
#comisiones,
#otroingresos {
    width: 100%;
    text-align: center;
    padding: 0.9375rem;
    border-radius: 0.9375rem;
    /* background: rgb(56, 157, 200); */
    font-size: 1.4rem;
    /* border: none; */
    outline: none;
    box-sizing: border-box;
    position: relative;
    background: #ffffff;
    /* FONDO BLANCO PROFESIONAL */
    border: 1px solid #d1d5db;
    /* Borde gris neutral */
    color: #1f2937;
    /* color: var(--input-color, #1f2937); */
    /* Usa variable CSS */
    /* Texto gris oscuro */
    font-weight: normal;
}

.texto-descripcion {
    font-size: 1.125rem;
    font-weight: normal;
    /* Un poco más pequeño */
}

.tooltip {
    font-weight: normal;
}

#ultimoDisfrutado {
    width: 50%;
    text-align: center;
    margin-top: 15px;
    padding: 0.9375rem;
    border-radius: 0.9375rem;
    /* background: rgb(56, 157, 200); */
    font-size: 1.5rem;
    /* border: none; */
    outline: none;
    box-sizing: border-box;
    position: relative;
    -webkit-appearance: none;
    /* Elimina la flecha en Chrome/Safari */
    -moz-appearance: none;
    /* Elimina la flecha en Firefox */
    appearance: none;
    /* Estándar */
    background: #ffffff;
    /* FONDO BLANCO PROFESIONAL */
    border: 1px solid #d1d5db;
    /* Borde gris neutral */
    color: #1f2937;
    /* Texto gris oscuro */
}

/* Flecha personalizada (opcional) */
#ultimoDisfrutado::-ms-expand {
    display: none;
    /* Elimina la flecha en Internet Explorer */
}

/* Estilo para el fondo del select (opcional) */
#ultimoDisfrutado option {
    background: white;
    color: black;
}

.mensaje-acumulacion {
    display: none;
    margin-top: 5px;
    padding: 0px;
    background: white;
    border-radius: 0.5rem;
    border: 1px solid #6094d8;
    font-size: 0.9rem;
    /* color: #5d4037; */
    line-height: 1.5;
    border-left: 0.25rem solid #6094d8;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

/* .mensaje-acumulacion strong {
    color: #d84315;
} */

.btn-clear {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 1.5rem;
    height: 1.5rem;
    padding: 0;
    background: transparent;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: none;
}

.btn-clear:hover,
.btn-clear:active {
    transform: none;
}

.buttons-container {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 1rem auto;
}

.btn-calc,
.btn-reset {
    width: 12.5rem;
    margin: 0.9375rem 1.25rem 0.9375rem 0.9375rem;
    padding: 0.9375rem;
    border-radius: 0.9375rem;
    border: none;
    font-size: 1.3rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-calc {
    /* background: #3e8e41; */
    background: #3e608d;
    color: white;
}

.btn-reset {
    /* background: #e74c3c; */
    background: #64748b;
    /* Gris azulado neutral */
    color: white;
}

.btn-reset:hover {
    /* background: #c0392b; */
    background: #94a3b8;
    /* Gris un poco más oscuro */
}

.btn-calc:hover {
    background: #6094d8;
    ;
}

#resultado {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 25rem;
    height: auto;
    padding: 0.9375rem;
    background: white;
    border-radius: 0.9375rem;
    text-align: center;
    z-index: 9999 !important;
}

#resultado h3 {
    margin-bottom: 10px;
    color: #2c3e50;
}

#resultado p {
    font-size: 1.1rem;
    margin: 8px 0;
}

/*----------------------------------
/* CONTENEDOR PRINCIPAL DEL MODAL FUNNEL */
.contenido-modal-funnel {
    padding: 20px;
    text-align: center;
}

/* ESTILOS PARA LA SECCIÓN DE RESULTADOS */
.resultados-funnel {
    background: white;
    padding: 15px;
    margin: 15px 0;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.total-destacado {
    font-size: 1.2rem;
    color: #10B981;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 2px dashed #2ecc71;
}

/* ESTILOS PARA LA ZONA DEL FUNNEL (LLAMADO A LA ACCIÓN) */
.funnel-cta {
    background-color: #e8f6f3;
    /* Fondo verde muy claro */
    border-left: 4px solid #10B981;
    /* Borde verde */
    padding: 15px;
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
    text-align: left;
}

.texto-funnel {
    margin: 8px 0;
    font-size: 0.95rem;
    line-height: 1.4;
    /* color: #555; */
}

/* BOTÓN DE CERRAR (Ligeramente mejorado) */
.btn-cerrar-funnel {
    background-color: #95a5a6;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    margin-top: 10px;
    transition: background 0.3s;
}

.btn-cerrar-funnel:hover {
    background-color: #7f8c8d;
}











/*------------------------------------

.mensaje-legal {
    font-size: 0.9rem;
    color: #666;
    margin-top: 10px;
    line-height: 1.4;
}

.calculadora label {
    font-weight: bold;
}

/* 6. Eliminación de flechitas en Chrome, Edge, Safari */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Eliminación de flechitas en Firefox */
input[type="number"] {
    -moz-appearance: textfield;
}

.calculadora input[type="number"],
.calculadora input[type="date"] {
    padding: 0.3125rem;
    border: 1px solid #ccc;
    border-radius: 0.1875rem;
}

/* 7. Posicionamiento del contenido azul junto al formulario */
.content-blue {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 50%;
}

footer {
    background: #3e608d;
    color: white;
    padding: 1.1rem;
    width: 100%;
    text-align: center;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 999;
    border-top: 1px solid #3498db;
    font-size: 0.9rem;
}




.texto-movil {
    display: none;
}

/* ==================== ESTILOS PARA PLACEHOLDERS GRISES ==================== */
/* Solo para campos de texto (inputs type="text") */
input[type="text"][data-placeholder-active="true"] {
    color: #9ca3af !important;
}


@media (max-width: 767px) {
    .noticias-laterales {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
        border-left: none;
        border-top: 1px solid #e1e1e1;
        padding: 1rem 0;
        gap: 1rem;
    }

    .noticia {
        flex: 0 0 calc(50% - 0.5rem);
        /* 2 columnas con espacio */
        max-width: calc(50% - 0.5rem);
        min-width: 180px;
    }

    @media (max-width: 480px) {
        .noticia {
            flex: 0 0 100%;
            max-width: 100%;
        }
    }

    .header-content h1 {
        text-align: center;
    }
}


/* 8. Media Queries: Responsividad */
@media (min-width: 768px) {
    .contenido {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
    }

    .content-blue {
        order: 1;
    }

    .calculadora {
        order: 2;
    }

    .btn-calc,
    .btn-reset {
        width: auto;
        min-width: 8.75rem;
        padding: 0.75rem 1rem;
    }
}

/* Media query para móviles */
@media (max-width: 767px) {
    .buttons-container {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-calc,
    .btn-reset {
        width: 100%;
        max-width: 18.75rem;
        margin: 0 auto !important;
    }

    /* ✅ Añade esto para centrar la calculadora en móviles */
    .calculadora {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        padding: 1rem;
        align-items: center;
    }

    /* Opcional: centrar también el contenido principal */
    .contenido {
        padding: 1rem;
    }

    .texto-largo {
        display: none;
    }

    .texto-movil {
        display: inline;
    }

    .btn-pro {
        white-space: normal;
        line-height: 1.3;
        padding: 0.75rem 1rem;
    }

    header {
        padding: 0.4rem 0.8rem;
    }

    .header-logo {
        width: 35px;
        height: 35px;
    }

    header h1 {
        font-size: 1rem;
    }

    .btn-login {
        padding: 0.4rem 0.6rem;
        font-size: 0.85rem;
    }


}

/* Responsive para el botón */
@media (max-width: 767px) {
    .floating-button {
        bottom: 90px;
        /* Aumentado para móviles */
        right: 15px;
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .floating-button {
        bottom: 100px;
        /* Más espacio en móviles pequeños */
        right: 10px;
        padding: 8px 16px;
        font-size: 13px;
    }
}

@media (max-width: 1200px) {
    header {
        flex-direction: row;
        /* MANTENER como fila en lugar de columna */
        padding: 0.5rem 1rem;
        /* text-align: center; */
    }

    header h1 {
        font-size: 1.2rem;
        /* Reducir ligeramente el tamaño del título */
        margin: 0;
    }

    .header-logo {
        width: 40px;
        height: 40px;
        margin-right: 0.5rem;
    }

    .btn-login {
        padding: 0.5rem 0.8rem;
        font-size: 0.9rem;
    }

    .contenedor-principal {
        flex-direction: column;
    }

    .noticias-laterales {
        width: 100%;
        max-height: 400px;
        flex-direction: row;
        flex-wrap: wrap;
        padding: 1rem;
        border-left: none;
        border-top: 1px solid #e1e1e1;
    }

    .noticia {
        width: calc(50% - 0.75rem);
        height: auto;
    }
}

@media (max-width: 960px) {
    .contenedor-principal {
        flex-direction: column;
        align-items: stretch;
    }

    .contenido,
    .oferta-urgente,
    .noticias-laterales {
        flex: 1;
        width: 100%;
    }

    .calculadora {
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    body {
        font-size: 0.875rem;
    }

    form input {
        font-size: 1rem;
    }
}


/* Estilo para acordeones */
.faq-section {
    /* max-width: 700px; */
    margin: auto;
    border-radius: 0.9375rem;
    overflow: hidden;
}

.accordion-item {
    border-radius: 0.9375rem;
    border-bottom: 1px solid #e0e0e0;
}

.accordion-header {
    width: 100%;
    background-color: #3e608d;
    color: white;
    text-align: left;
    padding: 16px;
    font-size: 16px;
    cursor: pointer;
    border: none;
    outline: none;
    transition: background-color 0.3s ease;
}

.accordion-header:hover {
    background-color: #6094d8;
}

.accordion-body {
    display: none;
    padding: 5px;
    background-color: #fff;
    border-top: 1px solid #eee;
}

.accordion-body p {
    margin: 0 0 10px;
}

/* Estilo para el formulario de captura */
/* .capture-form {
    padding: 1rem;
} */


.capture-form input {
    width: 100%;
    max-width: 300px;
    margin: 15px auto;
    padding: 12px 20px;
    border-radius: 15px;
    background: rgb(252, 253, 254);
    font-size: 150%;
    border: 1px solid #ddd;
    /* Borde sutil por defecto */
    outline: none;
    box-sizing: border-box;

}

.capture-form button {
    background-color: #3e608d;
    color: white;
    border: none;
    padding: 15px 20px;
    font-size: 1em;
    border-radius: 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.capture-form button:hover {
    background-color: #6094d8;
}

/* .floating-button {
    position: fixed;
    bottom: 10px;
    right: 20px;
    z-index: 1000;

} */

.floating-button {
    position: fixed;
    bottom: 80px;
    /* CAMBIADO de 10px a 80px */
    right: 20px;
    z-index: 1000;
    /* background-color: #007bff;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
   
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px; */
}


.floating-button button {
    padding: 10px 20px;
    background: #3e608d;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
}

/* .floating-button button:hover {
    background-color: #3e608d;
} */


/* Flecha personalizada solo para ultimoDisfrutado */
#ultimoDisfrutado {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23333' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
    padding-right: 2.5rem;
}

/* =================== FIN: CAMBIOS APLICADOS =================== */

/* ESTILOS PARA LA SECCIÓN DE VIDEO DEMO */
.seccion-video-demo {
    margin: 8rem auto 2rem auto;
    /* Espacio arriba y abajo */
    padding: 2rem;
    text-align: center;
    /* background: #f8f9fa; */
    /* Fondo sutil para destacar la sección */
    border-radius: 12px;
    /* border-left: 4px solid #3498db; */
    /* Un toque de color de tu marca */
    max-width: 900px;
    /* Controla el ancho máximo, se adapta al contenedor */
}

.video-subtitulo {
    color: #555;
    margin-bottom: 1.8rem;
    font-size: 1.1rem;
}

/* CONTENEDOR RESPONSIVE - LA TÉCNICA MÁS IMPORTANTE */
.contenedor-video {
    position: relative;
    width: 100%;
    /* Ocupa el ancho disponible de su contenedor */
    padding-bottom: 56.25%;
    /* Proporción mágica: 16:9 (9/16 = 0.5625) */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    /* Sombra sutil para elevar */
    margin: 0 auto 1rem auto;
}

.contenedor-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    /* Elimina cualquier borde por defecto */
}

.leyenda-video {
    /* color: #7f8c8d; */
    font-style: italic;
    margin-top: 0.5rem;
    font-size: 1.4rem;
}

.icono {
    display: inline-flex;
    /* Para alinear bien */
    align-items: center;
    /* Centra verticalmente */
    justify-content: center;
    /* Centra horizontalmente */
    width: 1em;
    /* Tamaño RELATIVO al texto (ajusta: 0.9em, 1.2em, etc.) */
    height: 1em;
    margin-right: 0.5em;
    /* Espacio entre icono y texto */
    vertical-align: -0.15em;
    /* Ajuste FINO de alineación (sube/baja) */
}

.icono svg {
    /* fill: #14b63c; */
    fill: #10B981;
    /* Color gris */
    width: 100%;
    /* Asegura que el SVG ocupe todo el contenedor */
    height: 100%;
}

.icono--cruz svg {
    /* fill: #b6141f; */
    fill: #EF4444;
    /* Color gris */
    width: 100%;
    /* Asegura que el SVG ocupe todo el contenedor */
    height: 100%;
}