.hero {
    position: relative;
    width: 100%;
    height: 100vh; /* Altura exacta de la pantalla */
    overflow: hidden;
    color: var(--light);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    object-fit: cover; /* Asegura que el video cubra todo el contenedor */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 0 40px;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 800px;
    width: 100%;
}

.hero-slogan {
    display: inline-block;
    background: rgba(255,193,7,0.2);
    color: var(--primary);
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: baseline;
    gap: 0.5rem;
}

.hero-title .title-line {
    display: inline-block;
}

.hero-title .highlight {
    color: var(--primary);
}

.hero-description {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Beneficios */
.benefits-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0 1rem 2rem;
    margin-top: auto;
}

.benefits-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
    max-width: 1200px;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 5px;
    padding: 1.5rem 0;
    border: 1px solid rgba(255,255,255,0.1);
}

.benefit-item {
    flex: 1 1 200px;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
    color: var(--light);
    padding: 0 1.5rem;
    border-right: 1px solid rgba(255,255,255,0.2);
}

.benefit-item:last-child {
    border-right: none;
}

.benefit-item i {
    font-size: 2rem;
    color: var(--primary);
    min-width: 40px;
}

.benefit-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
    color: var(--primary);
}

.benefit-item p {
    font-size: 0.95rem;
    color: #eee;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .hero {
        height: auto; /* En móvil permitimos que crezca con el contenido */
        min-height: 100vh;
    }
    .hero-video {
        object-fit: cover;
    }
    .hero-title {
        font-size: 2.5rem;
        flex-direction: column;
        gap: 0.2rem;
        align-items: center;
        text-align: center;
    }
    .hero-title .title-line {
        display: block;
    }

    .benefits-list {
        flex-direction: column;
        padding: 0;
    }
    .benefit-item {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.2);
        padding: 1.5rem;
        width: 100%;
    }
    .benefit-item:last-child {
        border-bottom: none;
    }
    .benefit-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .benefit-item i {
        margin-bottom: 0.5rem;
    }
}