/* styles.css - Estilos principais do site (tema Dragão / Fúria da Noite) */
body {
    background-color: #0a0c12;
    font-family: 'Segoe UI', 'Poppins', 'Trebuchet MS', system-ui, sans-serif;
    color: #f2ede4;
}
.img {
    text-align: justify;
    width: 10px;
    height: 10px;
}

.hero-dragon {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.video-background-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.bg-video-nightfury {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.45) saturate(1.3) contrast(1.1);
    transform: scale(1.02);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 20%, rgba(0, 0, 0, 0.55), rgba(2, 8, 18, 0.85));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.badge-dragon {
    display: inline-block;
    background: rgba(255, 140, 30, 0.9);
    padding: 0.4rem 1.2rem;
    border-radius: 40px;
    font-size: 0.9rem;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(4px);
    box-shadow: 0 0 15px rgba(255, 100, 0, 0.5);
}

.hero-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.6);
    background: linear-gradient(135deg, #fff2e0, #ffc285);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    padding: 1rem 1.8rem;
    border-radius: 20px;
    display: inline-block;
}

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

.btn-primary, .btn-secondary {
    padding: 0.85rem 2rem;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #e25822, #b83b0e);
    color: white;
    border: 1px solid #ff914d;
    box-shadow: 0 5px 15px rgba(220, 70, 0, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #ff6a2e, #d4450a);
    box-shadow: 0 10px 25px rgba(220, 70, 0, 0.6);
}

.btn-secondary {
    background: rgba(10, 20, 40, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid #ff914d;
    color: #ffd6a5;
}

.btn-secondary:hover {
    background: rgba(226, 88, 34, 0.8);
    color: white;
    transform: translateY(-3px);
}

/* Seção de apresentação */
.movie-presentation {
    padding: 5rem 2rem;
    background: linear-gradient(180deg, #0f121f 0%, #0a0c18 100%);
}

.container {
    max-width: 1300px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h3 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    color: #ffbd7f;
}

.title-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #ff8c2e, #ffc285);
    margin: 1rem auto;
}

.movie-features {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.feature-card {
    background: rgba(20, 25, 45, 0.7);
    backdrop-filter: blur(8px);
    border-radius: 24px;
    padding: 2rem 1.5rem;
    text-align: center;
    flex: 1;
    min-width: 250px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 140, 50, 0.3);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: #ff8c2e;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
    background: rgba(25, 32, 55, 0.85);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h4 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #ffbc7a;
}

/* spotlight Fúria da Noite */
.nightfury-spotlight {
    padding: 5rem 2rem;
    background: #06080f;
    border-top: 1px solid #ff8c2e33;
    border-bottom: 1px solid #ff8c2e33;
}

.spotlight-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.spotlight-text .dragon-tag {
    display: inline-block;
    background: #e25822;
    padding: 0.2rem 1rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.spotlight-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #ffb35c;
}

.spotlight-text p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.btn-outline {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.7rem 1.6rem;
    border: 2px solid #ff8c2e;
    border-radius: 40px;
    font-weight: bold;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: #ff8c2e;
    color: #0a0c12;
}

.spotlight-image {
    background: linear-gradient(145deg, #1a1f2e, #0c0f1a);
    border-radius: 28px;
    min-height: 300px;
    position: relative;
    border: 1px solid #ff8c2e;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23ff8c2e40"><path d="M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M12,20c-4.41,0-8-3.59-8-8s3.59-8,8-8 s8,3.59,8,8S16.41,20,12,20z M12,7c-2.76,0-5,2.24-5,5s2.24,5,5,5s5-2.24,5-5S14.76,7,12,7z"/></svg>');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 120px;
}

/* Citações */
.quotes-section {
    padding: 4rem 2rem;
    background: #0c0f18;
}

.quotes-section .container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.quote-card {
    background: rgba(0, 0, 0, 0.5);
    border-left: 5px solid #ff8c2e;
    padding: 1.8rem;
    border-radius: 20px;
    max-width: 500px;
    backdrop-filter: blur(6px);
}

.quote-card blockquote {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 0.8rem;
}

.quote-card cite {
    color: #ffbc7a;
    font-weight: bold;
}

/* CTA */
.cta-explore {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #0b1422, #03050b);
    text-align: center;
}

.cta-content h3 {
    font-size: 2rem;
    margin-bottom: 0.8rem;
}

.cta-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.btn-cta, .btn-cta-secondary {
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: bold;
    transition: 0.3s;
}

.btn-cta {
    background: #e25822;
    color: white;
    box-shadow: 0 5px 12px #e2582266;
}

.btn-cta:hover {
    background: #ff6a2e;
    transform: scale(1.03);
}

.btn-cta-secondary {
    border: 2px solid #ff914d;
    background: transparent;
    color: #ffd2a5;
}

.btn-cta-secondary:hover {
    background: #ff914d33;
    transform: scale(1.03);
}

/* responsividade */
@media (max-width: 850px) {
    .spotlight-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-content h2 {
        font-size: 2rem;
    }
    .hero-description {
        font-size: 1rem;
    }
    .section-title h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    .btn-primary, .btn-secondary {
        width: 80%;
        text-align: center;
    }
}