/* ============================================
   BABAÇU LOVE - Landing Page Styles
   ============================================ */

:root {
    --bl-gold: #DBB341;
    --bl-dark: #1a0a00;
    --bl-orange: #e8722a;
    --bl-red: #c0392b;
    --bl-warm: #2c1810;
    --bl-sunset: #f39c12;
}

/* ---- HERO ---- */
.bl-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #0a0a0a;
}

.bl-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    opacity: 0.4;
    z-index: 0;
}

.bl-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
      background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(26,10,0,0.85) 100%);  
    z-index: 1;
}

.bl-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem 1rem;
}

.bl-hero-logo {
    max-width: 400px;
    width: 80%;
    margin-bottom: 1.5rem;
    animation: blFloatIn 1s ease-out;
}

.bl-hero-autores {
    max-width: 550px;
    width: 90%;
    margin-bottom: 2rem;
    animation: blFloatIn 1.2s ease-out;
}

.bl-hero-tagline {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.8);
    animation: blFloatIn 1.4s ease-out;
}

.bl-hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: blBounce 2s infinite;
    color: var(--bl-gold);
    font-size: 2rem;
    text-decoration: none;
}

/* ---- EM BREVE NOS CINEMAS ---- */
.bl-em-breve {
    margin: 1.5rem 0 0.5rem;
    animation: blFloatIn 1.6s ease-out;
}

.bl-em-breve-badge {
    display: inline-block;
    background: rgba(219,179,65,0.15);
    border: 2px solid var(--bl-gold);
    color: var(--bl-gold);
    padding: 12px 32px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(219,179,65,0.4);
    animation: blPulseGlow 2s ease-in-out infinite;
}

@keyframes blPulseGlow {
    0%, 100% { box-shadow: 0 0 15px rgba(219,179,65,0.2), inset 0 0 15px rgba(219,179,65,0.05); }
    50% { box-shadow: 0 0 30px rgba(219,179,65,0.4), inset 0 0 20px rgba(219,179,65,0.1); }
}

@keyframes blFloatIn {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes blBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-12px); }
}

/* ---- SINOPSE ---- */
.bl-sinopse {
    background: linear-gradient(135deg, var(--bl-warm) 0%, #1a0a00 100%);
    padding: 5rem 0;
    color: #fff;
}

.bl-section-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--bl-gold);
    text-transform: uppercase;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.bl-section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--bl-orange);
    margin-top: 10px;
    border-radius: 2px;
}

.bl-sinopse-text {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #ddd;
}

.bl-poster-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
    transition: transform 0.3s ease;
}

.bl-poster-wrapper:hover {
    transform: scale(1.02);
}

.bl-poster-wrapper img {
    width: 100%;
    display: block;
}

/* ---- TRAILER ---- */
.bl-trailer {
    background: #0a0a0a;
    padding: 5rem 0;
    position: relative;
}

.bl-trailer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--bl-gold), transparent);
}

.bl-trailer .bl-section-title {
    color: #fff;
}

.bl-trailer .bl-section-title::after {
    background: var(--bl-gold);
}

.bl-video-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.5);
    border: 2px solid rgba(219,179,65,0.3);
}

.bl-video-placeholder {
    background: linear-gradient(135deg, #1a1a1a, #2c1810);
    border-radius: 12px;
    border: 2px dashed rgba(219,179,65,0.4);
    padding: 4rem 2rem;
    text-align: center;
    color: #888;
}

.bl-video-placeholder i {
    font-size: 4rem;
    color: var(--bl-gold);
    margin-bottom: 1rem;
}

/* ---- ELENCO ---- */
.bl-elenco {
    background: linear-gradient(180deg, var(--bl-warm) 0%, #0d0503 100%);
    padding: 5rem 0;
}

.bl-elenco-card {
    background: rgba(255,255,255,0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(219,179,65,0.1);
    height: 100%;
}

.bl-elenco-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(219,179,65,0.15);
    border-color: rgba(219,179,65,0.3);
}

.bl-elenco-foto {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    background: rgba(255,255,255,0.03);
}

.bl-elenco-foto-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, rgba(219,179,65,0.1), rgba(219,179,65,0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: var(--bl-gold);
}

.bl-elenco-info {
    padding: 1.2rem;
    text-align: center;
}

.bl-elenco-nome {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.3rem;
}

.bl-elenco-papel {
    font-size: 0.85rem;
    color: var(--bl-gold);
    letter-spacing: 1px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bl-elenco-papel.bl-expandido {
    display: block;
    -webkit-line-clamp: unset;
    overflow: visible;
}

.bl-ler-mais {
    display: inline-block;
    background: none;
    border: none;
    color: #fff;
    font-size: 0.75rem;
    cursor: pointer;
    padding: 4px 0;
    opacity: 0.7;
    transition: opacity 0.3s;
    text-decoration: underline;
}

.bl-ler-mais:hover {
    opacity: 1;
}

/* ---- SOBRE O FILME ---- */
.bl-sobre-filme {
    background: linear-gradient(135deg, #1a0a00 0%, var(--bl-warm) 50%, #1a0a00 100%);
    padding: 5rem 0;
    position: relative;
}

.bl-sobre-filme::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--bl-gold), transparent);
}

.bl-sobre-texto {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #ccc;
    margin-bottom: 1.2rem;
    text-align: justify;
}

/* ---- BASTIDORES (galeria) ---- */
.bl-bastidores {
    background: #0a0a0a;
    padding: 5rem 0;
    position: relative;
}

.bl-bastidores::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--bl-orange), transparent);
}

.bl-galeria-item {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    margin-bottom: 1.5rem;
}

.bl-galeria-item img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.bl-galeria-item:hover img {
    transform: scale(1.08);
}

.bl-galeria-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.5) 0%, transparent 50%);
    pointer-events: none;
}

.bl-galeria-placeholder {
    border-radius: 12px;
    border: 2px dashed rgba(219,179,65,0.3);
    aspect-ratio: 16/10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #555;
    background: rgba(255,255,255,0.02);
    margin-bottom: 1.5rem;
}

.bl-galeria-placeholder i {
    font-size: 3rem;
    color: var(--bl-gold);
    margin-bottom: 0.5rem;
    opacity: 0.5;
}

/* ---- FICHA TÉCNICA ---- */
.bl-ficha {
    background: linear-gradient(135deg, var(--bl-warm) 0%, #1a0a00 100%);
    padding: 5rem 0;
}

.bl-ficha-item {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(219,179,65,0.1);
    display: flex;
    gap: 1rem;
}

.bl-ficha-label {
    font-weight: 700;
    color: var(--bl-gold);
    min-width: 160px;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.bl-ficha-value {
    color: #ddd;
    font-size: 1rem;
}

/* ---- LOGOS / PARCEIROS ---- */
.bl-logos {
    background: #0d0503;
    padding: 4rem 0;
    position: relative;
}

.bl-logos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--bl-gold), transparent);
}

.bl-logos-title {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #888;
    margin-bottom: 2rem;
}

.bl-logo-slot {
    border: none;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    background: #fff;
    transition: all 0.3s ease;
}

.bl-logo-slot:hover {
    box-shadow: 0 8px 25px rgba(219,179,65,0.2);
}

.bl-logo-slot img {
    max-height: 80px;
    max-width: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

.bl-logo-placeholder-text {
    color: #555;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ---- BACK TO TOP / CTA ---- */
.bl-cta-section {
    background: linear-gradient(135deg, var(--bl-gold) 0%, var(--bl-orange) 100%);
    padding: 3rem 0;
    text-align: center;
}

.bl-cta-section h3 {
    color: var(--bl-dark);
    font-weight: 900;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.bl-btn {
    display: inline-block;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.bl-btn-gold {
    background: var(--bl-gold);
    color: var(--bl-dark);
    border: 2px solid var(--bl-gold);
}

.bl-btn-gold:hover {
    background: transparent;
    color: var(--bl-gold);
}

.bl-btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid var(--bl-gold);
}

.bl-btn-outline:hover {
    background: var(--bl-gold);
    color: var(--bl-dark);
}

.bl-btn-dark {
    background: var(--bl-dark);
    color: #fff;
    border: 2px solid var(--bl-dark);
}

.bl-btn-dark:hover {
    background: transparent;
    color: var(--bl-dark);
}

/* ---- POSTER ZOOM HINT ---- */
.bl-poster-zoom-hint {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0,0,0,0.6);
    color: var(--bl-gold);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.bl-poster-wrapper {
    position: relative;
}

.bl-poster-wrapper:hover .bl-poster-zoom-hint {
    opacity: 1;
}

/* ---- MODAL LIGHTBOX ---- */
.bl-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.92);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    animation: blFadeIn 0.3s ease;
}

@keyframes blFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.bl-modal-img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.bl-modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 3rem;
    font-weight: 300;
    line-height: 1;
    cursor: pointer;
    transition: color 0.3s ease;
}

.bl-modal-close:hover {
    color: var(--bl-gold);
}

/* ---- RESPONSIVO ---- */
@media (max-width: 768px) {
    .bl-hero-logo {
        max-width: 260px;
    }

    .bl-hero-autores {
        max-width: 350px;
    }

    .bl-hero-tagline {
        font-size: 1rem;
    }

    .bl-section-title {
        font-size: 1.8rem;
    }

    .bl-ficha-item {
        flex-direction: column;
        gap: 0.2rem;
    }

    .bl-ficha-label {
        min-width: auto;
    }

    .bl-sinopse {
        padding: 3rem 0;
    }

    .bl-elenco, .bl-bastidores, .bl-trailer, .bl-ficha {
        padding: 3rem 0;
    }
}

@media (max-width: 576px) {
    .bl-hero {
        min-height: 80vh;
    }

    .bl-elenco-card {
        max-width: 260px;
        margin: 0 auto;
    }
}

/* ---- CRÉDITOS ---- */
.bl-creditos {
    background: linear-gradient(180deg, #0a0a0a 0%, #1a0a00 100%);
    padding: 5rem 0;
    position: relative;
}

.bl-creditos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--bl-gold), transparent);
}

.bl-creditos-scroll {
    max-height: 70vh;
    overflow-y: auto;
    padding-right: 1rem;
    scrollbar-width: thin;
    scrollbar-color: var(--bl-gold) rgba(255,255,255,0.05);
}

.bl-creditos-scroll::-webkit-scrollbar {
    width: 6px;
}

.bl-creditos-scroll::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.05);
    border-radius: 3px;
}

.bl-creditos-scroll::-webkit-scrollbar-thumb {
    background: var(--bl-gold);
    border-radius: 3px;
}

.bl-credito-bloco {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(219,179,65,0.1);
    color: #ccc;
}

.bl-credito-bloco:last-child {
    border-bottom: none;
}

.bl-credito-funcao {
    color: var(--bl-gold);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.bl-credito-bloco p {
    margin-bottom: 0.3rem;
    font-size: 1rem;
    line-height: 1.6;
    color: #ddd;
}

.bl-credito-elenco p {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 0.2rem;
}

.bl-credito-elenco p strong {
    color: #fff;
}

.bl-credito-elenco p span {
    color: #999;
    font-style: italic;
}

.bl-credito-cancao {
    margin-bottom: 1.5rem;
}

.bl-credito-cancao h5 {
    color: #fff;
    font-size: 1rem;
    font-style: italic;
    margin-bottom: 0.3rem;
}

.bl-credito-figuracao p,
.bl-credito-agradecimentos p {
    font-size: 0.85rem;
    line-height: 1.8;
    color: #999;
    text-align: justify;
}

/* ---- ANIMAÇÕES SCROLL ---- */
.bl-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.bl-fade-up.bl-visible {
    opacity: 1;
    transform: translateY(0);
}
