﻿/* ==========================================================================
   CAOS - Estilos de Página Home (home.css)
   ========================================================================== */

/* 1. Hero Section */
.hero-section {
    min-height: calc(100vh - var(--header-height));
    display: flex;
    align-items: center;
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
    background: radial-gradient(circle at 50% 30%, rgba(230, 26, 43, 0.12) 0%, rgba(13, 13, 17, 0.8) 50%, var(--color-bg-void) 90%);
}

.hero-background-glow {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(230, 26, 43, 0.18) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
}

.hero-badge {
    margin-bottom: 1.5rem;
}

.hero-logo-wrap {
    margin-bottom: 2rem;
}

.hero-logo {
    max-width: 480px;
    margin: 0 auto;
    filter: invert(1) brightness(2) drop-shadow(0 0 25px rgba(230, 26, 43, 0.5));
    animation: heroLogoFloat 4s ease-in-out infinite;
}

.hero-tagline {
    font-size: 1.35rem;
    font-weight: 300;
    color: #c9cdd8;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

/* 2. Banner Próximo Show Destacado */
.tour-highlight-section {
    background: #0b0b0f;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    padding: 3rem 0;
}

.tour-highlight-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(90deg, #16161f 0%, #101015 100%);
    border: 1px solid rgba(230, 26, 43, 0.3);
    border-radius: var(--radius-md);
    padding: 2rem 2.5rem;
    box-shadow: var(--shadow-card);
    gap: 2rem;
}

.tour-headline {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.tour-pulse-icon {
    width: 50px;
    height: 50px;
    background: rgba(230, 26, 43, 0.15);
    border: 1px solid var(--color-crimson);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-crimson);
}

.tour-pulse-icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.tour-headline h3 {
    font-size: 1.75rem;
    margin-bottom: 0.2rem;
}

.tour-headline p {
    color: var(--color-text-muted);
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* 3. Sección Último Lanzamiento (Featured Release) */
.featured-release-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3.5rem;
    align-items: center;
}

.release-art-wrap {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.9), 0 0 30px rgba(230, 26, 43, 0.2);
    border: 1px solid rgba(230, 26, 43, 0.3);
}

.release-art-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.release-info h3 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.release-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: var(--color-crimson);
}

.release-streaming-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

/* 4. Video Showcase */
.video-frame-wrap {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-elevated);
    aspect-ratio: 16 / 9;
    background: #08080a;
}

.video-frame-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@keyframes heroLogoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@media (max-width: 992px) {
    .featured-release-grid {
        grid-template-columns: 1fr;
    }
    .tour-highlight-box {
        flex-direction: column;
        text-align: center;
    }
    .tour-headline {
        flex-direction: column;
    }
}
