body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    color: #fff;
    line-height: 1.6;
}

.video-fondo {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

#video-chaco {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.contenido-beneficios {
    position: relative;
    z-index: 1;
    padding: 40px;
    background-color: rgba(0, 0, 0, 0.75);
    border-radius: 15px;
    margin: 50px auto;
    max-width: 900px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.7);
    text-align: center;
    backdrop-filter: blur(5px); /* Efecto de desenfoque para un look moderno */
}

h1 {
    font-size: 3.5em;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.9);
    letter-spacing: 1px;
}

.introduccion {
    font-size: 1.3em;
    margin-bottom: 40px;
}

.anuncios-contenedor {
    margin: 40px auto;
    padding: 30px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-left: 5px solid #00f0ff;
    border-radius: 10px;
    box-shadow: inset 0 0 15px rgba(0, 255, 255, 0.3);
    min-height: 120px;
    animation: fadeIn 1.5s ease-in-out;
}

.anuncios-contenedor h2 {
    font-size: 2em;
    color: #00f0ff;
    text-shadow: 1px 1px 3px #000;
    margin-top: 0;
}

.anuncios-contenedor p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-top: 10px;
    opacity: 0.9;
}

.todos-beneficios {
    margin-top: 60px;
    text-align: left;
}

.todos-beneficios h3 {
    font-size: 2.5em;
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    margin-bottom: 20px;
    text-align: center;
}

.lista-beneficios {
    list-style: none;
    padding: 0;
}

.lista-beneficios li {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    border-left: 4px solid #ffd700;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.lista-beneficios li:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.2);
}

.lista-beneficios h4 {
    font-size: 1.5em;
    color: #ffd700;
    margin-top: 0;
    margin-bottom: 10px;
}

.lista-beneficios p {
    font-size: 1em;
    opacity: 0.9;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}