/* ==========================================================================
   Hero Final AsidiPro
   Desktop = frames
   Mobile = vídeo
   ========================================================================== */

.asidi-hero-container {
    position: relative;
    width: 100%;
    height: 400vh;
    background: #000;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.asidi-hero-container *,
.asidi-hero-container *::before,
.asidi-hero-container *::after {
    box-sizing: inherit;
}

.asidi-sticky-wrap {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Desktop canvas */
#asidi-hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: block;
}

/* Mobile video */
.asidi-hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    display: none;
    background: #000;
}

.asidi-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    background: radial-gradient(circle, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0) 70%);
}

.asidi-text-section {
    position: absolute;
    text-align: center;
    color: #fff;
    opacity: 0;
    transform: scale(0.88);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    width: 90%;
    max-width: 900px;
    padding: 50px;
    border-radius: 24px;
    background: rgba(0, 0, 0, 0.30);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 20px 40px rgba(0,0,0,0.45);
}

.asidi-text-section.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.asidi-headline-1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin: 0;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 20px rgba(0,0,0,0.6);
}

.asidi-headline-2 {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 40px 0;
    color: #f2f2f2;
    text-shadow: 0 4px 15px rgba(0,0,0,0.6);
    letter-spacing: -0.01em;
}

.asidi-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.asidi-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: auto;
}

.asidi-btn-primary {
    background-color: #E60000;
    color: #fff;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(230, 0, 0, 0.3);
}

.asidi-btn-primary:hover {
    background-color: #cc0000;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(230, 0, 0, 0.5);
}

.asidi-btn-secondary {
    background-color: #2a2a2a;
    color: #fff;
    border: 2px solid #444;
}

.asidi-btn-secondary:hover {
    background-color: #333;
    border-color: #666;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

/* Mobile */
@media (max-width: 768px) {
    #asidi-hero-canvas {
        display: none;
    }

    .asidi-hero-video {
        display: block;
    }

    .asidi-text-section {
        padding: 30px 20px;
        background: rgba(0, 0, 0, 0.48);
    }

    .asidi-headline-1 {
        font-size: 2.2rem;
    }

    .asidi-headline-2 {
        font-size: 1.3rem;
        margin-bottom: 30px;
    }

    .asidi-buttons {
        flex-direction: column;
        gap: 16px;
    }

    .asidi-btn {
        width: 100%;
    }
}
#asidi-hero .asidi-headline-1 {
    color: #ffffff !important;
}

#asidi-hero .asidi-headline-2 {
    color: #f0f0f0 !important;
}