/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh; /* pantalla completa */
    overflow: hidden;
    margin-top: 0; /* el header fijo no afecta */
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center; /* centra el contenido */
    text-align: center;
    padding: 0 20px;
}

.hero-text {
    color: white;
    max-width: 800px;
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.hero-text .btn {
    font-size: 1rem;
}

/* Sección siguiente */
#nosotros-rompecabezas {
    padding: 80px 20px; /* espacio suficiente debajo del hero */
    background-color: #f5f5f5;
}
