/* ========================================
   Appstracta - Films CSS
   Estilos específicos para films.html
   ======================================== */

/* Hero Films */
.hero-films {
    background: var(--gradient);
    color: white;
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero-films h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-films p {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto 40px;
}

/* Videos Grid */
.videos-section {
    padding: 100px 0;
    background: white;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
}

.video-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.1);
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    background: #000;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-content {
    padding: 30px;
}

.video-content h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--primary);
    line-height: 1.3;
}

.video-description {
    color: var(--gray);
    margin-bottom: 25px;
    font-size: 1rem;
    line-height: 1.6;
}

/* Music Platforms */
.music-platforms {
    margin-bottom: 25px;
}

.music-platforms h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 10px;
}

.platform-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background: var(--light);
    border-radius: 10px;
    text-decoration: none;
    color: var(--text);
    transition: var(--transition);
    font-size: 0.9rem;
    font-weight: 500;
}

.platform-link:hover {
    transform: translateY(-2px);
}

.platform-link i {
    font-size: 1.1rem;
}

.platform-link.spotify { background: rgba(30, 215, 96, 0.1); }
.platform-link.apple { background: rgba(251, 85, 85, 0.1); }
.platform-link.youtube { background: rgba(255, 0, 0, 0.1); }
.platform-link.amazon { background: rgba(0, 168, 225, 0.1); }
.platform-link.tidal { background: rgba(0, 0, 0, 0.1); }

.platform-link.spotify:hover { background: #1ED760; color: white; }
.platform-link.apple:hover { background: #FB5555; color: white; }
.platform-link.youtube:hover { background: #FF0000; color: white; }
.platform-link.amazon:hover { background: #00A8E1; color: white; }
.platform-link.tidal:hover { background: #000000; color: white; }

/* CTA Films */
.cta-films {
    padding: 100px 0;
    background: white;
    text-align: center;
}

.cta-films h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-films p {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-films h1 {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .videos-grid {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .hero-films {
        padding: 150px 0 80px;
    }

    .hero-films h1 {
        font-size: 2.5rem;
    }

    .videos-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .video-card {
        margin: 0 auto;
        max-width: 500px;
    }

    .platforms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .hero-films h1 {
        font-size: 2rem;
    }

    .cta-films h2 {
        font-size: 2rem;
    }

    .video-content h3 {
        font-size: 1.4rem;
    }

    .platforms-grid {
        grid-template-columns: 1fr;
    }
}
