/* Hero Wrapper - Contenedor principal */
.hero-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 90px;
}

/* Hero Slider Styles */
.hero-slider {
    position: relative;
    width: 100%;
    height: 65vh;
    min-height: 550px;
    overflow: visible;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
}

.hero-content.container {
    position: relative;
    z-index: 2;
    max-width: var(--container-max-width, 1200px);
    margin: 0 auto;
    padding-left: var(--container-padding, 2rem);
    padding-right: var(--container-padding, 2rem);
    text-align: left;
    color: #ffffff;
    width: 100%;
    box-sizing: border-box;
}

.hero-inner {
    max-width: 600px;
    margin-left: 0;
    margin-right: auto;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

.hero-buttons {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    align-items: flex-start;
    padding-left: 0;
    text-align: left;
    width: 100%;
}

.hero-pretitle {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2ecc71;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-pretitle-sep {
    font-size: 10px;
    font-variation-settings: 'FILL' 1, 'opsz' 20;
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
    min-width: 10px;
    min-height: 10px;
    opacity: 0.8;
}

.hero-title {
    font-size: 3.75rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    color: #ffffff;
    text-shadow: 0 2px 16px rgba(0,0,0,0.45), 0 1px 2px rgba(0,0,0,0.25);
}

.hero-title .text-primary {
    color: var(--color-corporate-light, #00a7ff);
}

.hero-title .highlight {
    color: #2ecc71;
}

.hero-subtitle {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 2rem;
    max-width: 580px;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 8px rgba(0,0,0,0.35);
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
}

.btn-hero .material-symbols-outlined {
    font-size: 1.125rem;
    transition: transform 0.3s ease;
    min-width: 1.125rem;
    width: 1.125rem;
    height: 1.125rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    line-height: 1;
}

.btn-hero:hover .material-symbols-outlined {
    transform: translateX(4px);
}


.btn-hero-primary {
    background-color: #0077B6;
    color: #ffffff;
    border: 2px solid #0077B6;
}

.btn-hero-primary:hover {
    background-color: #005a8a;
    border-color: #005a8a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 119, 182, 0.4);
}

.btn-hero-secondary {
    background: linear-gradient(135deg, var(--color-accent-primary) 0%, var(--color-accent-primary) 100%);
    color: #ffffff;
    border: 2px solid var(--color-accent-primary);
}

.btn-hero-secondary:hover {
    background: linear-gradient(135deg, var(--color-accent-primary) 0%, var(--color-accent-gradient) 100%);
    border-color: var(--color-accent-gradient);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(15, 157, 88, 0.4);
}

.hero-indicators {
    position: absolute;
    right: 3rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 3;
}

.indicator {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.indicator:hover {
    background-color: rgba(255, 255, 255, 0.7);
    transform: scale(1.15);
}

.indicator.active {
    background-color: #0077B6;
    border-color: #ffffff;
    transform: scale(1.2);
}

/* Responsive Design */

/* Responsive Design */








@media (max-width: 992px) {
    .hero-wrapper {
        padding-bottom: 120px;
    }
    
    .hero-slider {
        height: 60vh;
        min-height: 500px;
    }
    
    .hero-content {
        padding: 0 2.5rem;
        max-width: 600px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-pretitle {
        font-size: 1rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .hero-indicators {
        right: 2rem;
    }
}













@media (max-width: 768px) {
    .hero-wrapper {
        padding-bottom: 0;
        margin-bottom: 0;
    }
    
    .hero-slider {
        height: 75vh;
        min-height: 550px;
        overflow: hidden;
        margin-bottom: 0;
    }
    
    .hero-slide {
        align-items: flex-start;
        padding-top: 100px;
        padding-bottom: 3rem;
    }
    
    .hero-content {
        padding: 0 1.5rem;
        max-width: 100%;
    }
    
    .hero-inner {
        max-width: 100%;
    }
    
    .hero-pretitle {
        font-size: 0.9375rem;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
        margin-bottom: 3rem;
    }
    
    .btn-hero {
        width: 100%;
        justify-content: center;
        padding: 0.8rem 1.5rem;
        font-size: 0.875rem;
    }
    
    .hero-indicators {
        bottom: 2rem;
        right: 50%;
        transform: translateX(50%);
        flex-direction: row;
        gap: 0.75rem;
        top: auto;
    }
    
    .indicator {
        width: 12px;
        height: 12px;
    }
}







@media (max-width: 480px) {
    .hero-slider {
        height: 65vh;
        min-height: 500px;
        overflow: hidden;
    }
    
    .hero-content {
        padding: 0 1.25rem;
    }
    
    .hero-pretitle {
        font-size: 0.875rem;
        margin-bottom: 0.75rem;
    }
    
    .hero-title {
        font-size: 1.875rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
        margin-bottom: 1.25rem;
    }
    
    .btn-hero {
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
    }
    
    .hero-buttons {
        gap: 0.65rem;
    }
    
    .hero-indicators {
        bottom: 1.25rem;
        gap: 0.6rem;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
}


/* ========================================
   HERO VIDEO - Versión con fondo de video
   ======================================== */

.hero-video-wrapper {
    position: relative;
    width: 100%;
}

.hero-video-section {
    position: relative;
    width: 100%;
    height: 85vh;
    min-height: 650px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.62);
    z-index: 1;
}

.hero-video-content.container {
    position: relative;
    z-index: 2;
    max-width: var(--container-max-width, 1200px);
    margin: 0 auto;
    padding-left: var(--container-padding, 2rem);
    padding-right: var(--container-padding, 2rem);
    color: #ffffff;
    width: 100%;
    box-sizing: border-box;
}

.hero-video-inner {
    max-width: 680px;
    margin-left: 0;
    margin-right: auto;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

/* Responsive - Hero Video */
@media (max-width: 992px) {
    .hero-video-section {
        height: 80vh;
        min-height: 580px;
    }

    .hero-video-inner {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-video-section {
        height: 90vh;
        min-height: 600px;
        overflow: hidden;
        align-items: flex-start;
        padding-top: 100px;
    }

    .hero-video-content.container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .hero-video-inner {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-video-section {
        height: 65vh;
        min-height: 500px;
    }

    .hero-video-content.container {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
}


