/* ===== SECCIÓN PERSONALIZA TU MÓDULO (ESTILO HERO CON VIDEO) ===== */
.custom-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Video de fondo */
.custom-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

/* Overlay idéntico al del hero (gradiente oscuro) */
.custom-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.55) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
    z-index: 1;
    pointer-events: none;
}

/* Contenedor principal, igual que .hero-container */
.custom-section .container {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Estructura interna igual al hero */
.custom-section .hero-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    width: 100%;
}

.custom-section .hero-content {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.custom-section .hero-slogan {
    display: inline-flex;
    align-items: center;
    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;
}

.custom-section .hero-slogan img {
    height: 1.8em;
    width: auto;
    margin-right: 0.5rem;
    vertical-align: middle;
}

.custom-section .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;
    color: var(--light);
}

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

.custom-section .hero-description {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 2rem;
    max-width: 600px;
    text-align: center;
}

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

.custom-section .btn-primary {
    background: var(--primary);
    color: var(--secondary);
    border-color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.custom-section .btn-primary:hover {
    background: transparent;
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.25);
}

/* Responsive igual que el hero */
@media (max-width: 768px) {
    .custom-section {
        min-height: auto;
        padding: 60px 0;
    }
    .custom-section .hero-title {
        font-size: 2.2rem;
        flex-direction: column;
        gap: 0.3rem;
        align-items: center;
    }
    .custom-section .hero-description {
        font-size: 1rem;
        padding: 0 1rem;
    }
    .custom-section .hero-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    .custom-section .hero-buttons .btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .custom-section .hero-title {
        font-size: 1.9rem;
    }
}