/* style_index.css */

/* Hero Index Specifics */
.hero-index {
    /* Fallback image if video fails or loads slow */
    background: url('imagenes/fondo inicial nosostros.png') no-repeat center center/cover;
    position: relative;
    overflow: hidden;
    /* Ensure video stays within container */
}

/* Background Video Styling */
.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    /* Behind everything */
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 15, 29, 0.6);
    /* Dark overlay for text readability */
    z-index: 1;
    /* Above video */
}

/* Content needs to be above overlay */
.hero-inner-centered {
    position: relative;
    z-index: 2;
    /* Highest priority */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
    padding-top: 4rem;
}

.hero-title-large {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    background: linear-gradient(90deg, #fff, #a0d8ef);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(0, 240, 255, 0.3);
}

.hero-index .hero-sub {
    font-size: 1.35rem;
    /* Larger */
    font-weight: 500;
    /* Bolder */
    color: #f1f5f9;
    /* Brighter white */
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    /* Strong shadow for video contrast */
    margin-bottom: 2.5rem;
    max-width: 700px;
}

/* ... existing styles for guide section ... */
.guide-image-container {
    max-width: 800px;
    margin: 3rem auto 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.guide-summary-img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5));
}

@media (max-width: 768px) {
    .hero-title-large {
        font-size: 2.5rem;
    }
}

.hardware-row {
    margin-bottom: 4rem;
}

.hardware-row:last-child {
    margin-bottom: 0;
}
