:root {
    --primary: #E50914;
    --bg-black: #080808;
    --font-main: 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

body { background-color: var(--bg-black); color: white; font-family: var(--font-main); overflow-x: hidden; }

/* INTRO SCREEN */
#intro-screen {
    position: fixed; inset: 0; background: #000; z-index: 9999;
    display: flex; align-items: center; justify-content: center;
    transition: opacity 1s ease, visibility 1s;
}
#intro-video { width: 100%; height: 100%; object-fit: cover; }
.intro-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
body.loading { overflow: hidden; }

/* HEADER */
.main-header {
    position: fixed; top: 0; width: 100%; height: 75px; z-index: 1000;
    transition: 0.4s; display: flex; align-items: center; padding: 0 5%;
}
.header-scrolled { background: rgba(8, 8, 8, 0.95); backdrop-filter: blur(15px); }
.header-container { width: 100%; display: flex; justify-content: space-between; align-items: center; }
.logo { color: var(--primary); font-weight: 900; font-size: 1.8rem; letter-spacing: -1px; }

.cta-button {
    background: var(--primary); color: white; padding: 10px 22px; border-radius: 4px;
    font-weight: 700; text-decoration: none; transition: 0.3s;
}
.cta-button:hover { transform: scale(1.05); filter: brightness(1.2); }

/* HERO */
.hero { position: relative; width: 100%; height: 80vh; overflow: hidden; }
.video-background { position: absolute; inset: 0; z-index: -1; }
#hero-player {
    position: absolute; top: 50%; left: 50%; width: 100vw; height: 56.25vw;
    min-height: 100vh; min-width: 177.77vh; transform: translate(-50%, -50%) scale(1.1);
}
.hero-overlay {
    height: 100%; width: 100%;
    background: linear-gradient(to top, var(--bg-black) 0%, transparent 00%),
                linear-gradient(to right, rgba(0, 0, 0, 0) 0%, transparent 70%);
    display: flex; align-items: center; padding: 0 5%;
}
.hero-content h1 { font-size: clamp(2rem, 6vw, 4rem); font-weight: 900; line-height: 1.1; margin-bottom: 15px; }

.btn-play, .btn-info { 
    padding: 12px 28px; 
    border-radius: 4px; 
    border: none; 
    font-weight: 700; 
    cursor: pointer; 
    margin-right: 10px; 
    display: inline-flex;    /* ADICIONE ESTA LINHA */
    align-items: center;     /* ADICIONE ESTA LINHA */
    justify-content: center;  /* ADICIONE ESTA LINHA */
    text-decoration: none;   /* ADICIONE ESTA LINHA */
}

.btn-play { 
    background: white; 
    color: black; 
}

/* CARDS */
.main-content { padding: 40px 0 50px 5%; margin-top: -8vh; z-index: 10; position: relative; }
.shelf-title { font-size: 1.3rem; margin-bottom: 20px; font-weight: 700; }
.movie-card { position: relative; aspect-ratio: 2/3; border-radius: 6px; overflow: hidden; cursor: pointer; transition: 0.4s; }
.movie-card img { width: 100%; height: 100%; object-fit: cover; }
.movie-card:hover { transform: scale(1.08); z-index: 20; }

.play-wrapper { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; z-index: 5; }
.play-button-icon {
    width: 50px; height: 50px; background: rgba(255,255,255,0.2);
    backdrop-filter: blur(8px); border: 2px solid rgba(255,255,255,0.5);
    border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: 0.3s;
}
.play-button-icon svg { width: 22px; height: 22px; color: white; margin-left: 3px; }
.movie-card:hover .play-button-icon { background: var(--primary); border-color: var(--primary); transform: scale(1.1); }

/* MODAIS */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.94); z-index: 2000; display: none; align-items: center; justify-content: center; backdrop-filter: blur(10px); }
.modal-container { background: #181818; border-radius: 8px; position: relative; width: 90%; max-width: 1000px; overflow: hidden; }
.video-container { aspect-ratio: 16/9; }
.text-container { padding: 40px; color: #ccc; }
.close-btn { position: absolute; top: 15px; right: 20px; font-size: 2rem; color: white; cursor: pointer; }

/* SEÇÃO EXPLICAÇÃO APP */
.app-explanation {
    padding: 100px 5% 120px;
    background: linear-gradient(to bottom, var(--bg-black), #121212);
    display: flex;
    justify-content: center;
}

.container-explanation {
    max-width: 1000px;
    width: 100%;
    text-align: center;
}

.explanation-title {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    font-weight: 900;
    margin-bottom: 40px;
    background: linear-gradient(to right, #fff, #888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.video-wrapper-modern {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 50px rgba(229, 9, 20, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 40px;
}

.video-wrapper-modern iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
}

.explanation-text-box {
    max-width: 700px;
    margin: 0 auto;
}

.explanation-desc {
    font-size: 1.2rem;
    color: #aaa;
    line-height: 1.6;
    margin-bottom: 35px;
}

.cta-button-large {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 900;
    text-decoration: none;
    font-size: 1.1rem;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(229, 9, 20, 0.3);
}

.cta-button-large:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(229, 9, 20, 0.5);
    filter: brightness(1.2);
}

@media (max-width: 768px) {
    .app-explanation { padding: 60px 5%; }
    .explanation-title { margin-bottom: 25px; }
    .cta-button-large { width: 100%; padding: 15px 20px; }
}

/* SEÇÃO DE LOGOS PARCEIROS */
.partners-section {
    padding: 80px 0;
    background: var(--bg-black);
    overflow: hidden;
    position: relative;
}

.partners-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 0 5%;
}

.partners-title {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 10px;
}

.partners-subtitle {
    font-size: 1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.logos-slider {
    width: 100%;
    display: flex;
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.logos-track {
    display: flex;
    width: calc(250px * 16);
    animation: scrollInfinite 30s linear infinite;
}

.logo-item {
    width: 250px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
    transition: all 0.5s ease;
}

.logo-item img {
    max-width: 140px;
    max-height: 50px;
    filter: grayscale(1) brightness(0.6);
    transition: all 0.4s ease;
}

.logo-item:hover img {
    filter: grayscale(0) brightness(1);
    transform: scale(1.15);
}

@keyframes scrollInfinite {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-250px * 8)); }
}

.logos-slider:hover .logos-track {
    animation-play-state: paused;
}

@media (max-width: 768px) {
    .logo-item { width: 180px; padding: 0 25px; }
    .logos-track { width: calc(180px * 16); }
    @keyframes scrollInfinite {
        0% { transform: translateX(0); }
        100% { transform: translateX(calc(-180px * 8)); }
    }
}

/* SEÇÃO CANAIS PREMIUM */
.premium-channels {
    padding: 60px 5%;
    background: var(--bg-black);
}

.channels-header {
    margin-bottom: 30px;
}

.channels-header .subtitle {
    color: #888;
    margin-top: 5px;
    font-size: 0.95rem;
}

.channels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.channel-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 25px;
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.channel-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.channel-logo {
    width: 80px;
    height: 80px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.channel-logo img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    filter: drop-shadow(0 0 5px rgba(255,255,255,0.1));
}

.channel-info h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 5px;
    font-weight: 700;
}

.channel-info p {
    color: #888;
    font-size: 0.85rem;
    line-height: 1.4;
}

.channel-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(229, 9, 20, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.channel-card:hover::after {
    opacity: 1;
}

@media (max-width: 768px) {
    .channels-grid { grid-template-columns: 1fr; }
    .channel-logo { width: 60px; height: 60px; }
}

/* SEÇÃO DE GARANTIA */
.guarantee-section {
    padding: 100px 5%;
    background: radial-gradient(circle at top right, #1a1a1a, var(--bg-black));
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.guarantee-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
    background: rgba(255, 255, 255, 0.02);
    padding: 60px;
    border-radius: 30px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.guarantee-visual { flex-shrink: 0; }

.guarantee-badge {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--primary) 0%, #80060c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 0 50px rgba(229, 9, 20, 0.4);
    animation: float 6s ease-in-out infinite;
}

.badge-content { text-align: center; color: white; z-index: 2; }

.badge-number {
    display: block;
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
}

.badge-days {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.badge-ring {
    position: absolute;
    inset: -10px;
    border: 2px dashed rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.rating-box {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.google-stars { display: flex; gap: 2px; }

.star {
    width: 22px;
    height: 22px;
    fill: #FBBC05;
    filter: drop-shadow(0 0 5px rgba(251, 188, 5, 0.3));
}

.google-text { font-size: 0.9rem; color: #888; font-weight: 600; }

.guarantee-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 20px;
    line-height: 1.2;
}

.guarantee-text {
    font-size: 1.1rem;
    color: #aaa;
    line-height: 1.6;
    margin-bottom: 30px;
}

.security-badges { display: flex; gap: 20px; }

.security-item {
    font-size: 0.85rem;
    color: #ffffff;
    background: rgba(255,255,255,0.05);
    padding: 8px 15px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.1);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}
@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@media (max-width: 900px) {
    .guarantee-container {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }
    .rating-box { justify-content: center; }
    .security-badges { justify-content: center; }
    .guarantee-badge { width: 150px; height: 150px; }
    .badge-number { font-size: 3.5rem; }
}

/* SEÇÃO FAQ */
.faq-section {
    padding: 100px 5%;
    background: var(--bg-black);
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
}

.faq-intro { color: #666; margin-bottom: 30px; }

.accordion { display: flex; flex-direction: column; gap: 15px; }

.accordion-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s;
}

.accordion-header {
    width: 100%;
    padding: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-header:hover { background: rgba(255, 255, 255, 0.05); }

.arrow-icon {
    font-style: normal;
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform 0.3s;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(0,0,0,0.2);
}

.accordion-content p {
    padding: 20px;
    color: #aaa;
    line-height: 1.6;
}

.accordion-item.active {
    border-color: var(--primary);
    background: rgba(229, 9, 20, 0.05);
}
.accordion-item.active .arrow-icon { transform: rotate(45deg); }
.accordion-item.active .accordion-content { max-height: 200px; }

.support-card { position: sticky; top: 100px; height: fit-content; }

.support-inner {
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 24px;
    text-align: center;
}

.support-icon img { width: 60px; margin-bottom: 20px; filter: drop-shadow(0 0 15px rgba(37, 211, 102, 0.4)); }

.support-inner h3 { font-size: 1.5rem; margin-bottom: 15px; }
.support-inner p { color: #888; margin-bottom: 30px; font-size: 0.9rem; }

.input-group { display: flex; flex-direction: column; gap: 12px; }

#user-question {
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 15px;
    border-radius: 8px;
    color: white;
    outline: none;
}

.btn-send-wa {
    background: #25D366;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.btn-send-wa:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3); }

.status-online {
    display: block;
    margin-top: 15px;
    font-size: 0.75rem;
    color: #25D366;
    font-weight: 700;
    text-transform: uppercase;
    animation: blink 2s infinite;
}

@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }

@media (max-width: 900px) {
    .faq-container { grid-template-columns: 1fr; }
    .support-card { position: relative; top: 0; }
}

/* SEÇÃO DE TRANSPARÊNCIA */
.trust-disclaimer {
    padding: 80px 5%;
    background: #0a0a0a;
}

.trust-container { max-width: 1100px; margin: 0 auto; }

.trust-badge-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.official-tag {
    background: var(--primary);
    color: white;
    font-size: 0.7rem;
    font-weight: 900;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 1px;
}

.trust-line {
    flex-grow: 1;
    height: 1px;
    background: linear-gradient(to right, var(--primary), transparent);
}

.trust-title {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    margin-bottom: 40px;
    font-weight: 900;
}

.trust-title span { color: var(--primary); }

.trust-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 30px;
}

.trust-card-personal {
    background: rgba(255, 255, 255, 0.03);
    padding: 35px;
    border-radius: 20px;
    border-left: 4px solid var(--primary);
}

.personal-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.avatar-circle {
    width: 45px;
    height: 45px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.highlight-text {
    margin-top: 20px;
    font-style: italic;
    color: #fff;
    font-size: 1.1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
}

.trust-card-platform {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.trust-card-platform p { color: #888; line-height: 1.6; }

.reclame-aqui-box {
    margin-top: 25px;
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    color: #333;
}

.ra-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.ra-logo { font-weight: 900; color: #1a1a1a; font-size: 1.1rem; }

.ra-status {
    background: #008000;
    color: white;
    font-size: 0.6rem;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 700;
}

.reclame-aqui-box p { color: #555; font-size: 0.85rem; }

.ra-link {
    display: inline-block;
    margin-top: 15px;
    color: #0056b3;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
}

@media (max-width: 850px) {
    .trust-grid { grid-template-columns: 1fr; }
}

/* --- ESTILOS DO RODAPÉ --- */
.footer-main {
    background: #050505;
    padding: 80px 5% 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 50px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
}

.footer-col h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col p {
    color: #888;
    font-size: 0.7rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }

.footer-col ul li a {
    color: #888;
    text-decoration: none;
    font-size: 0.95rem;
    transition: 0.3s;
}

.footer-col ul li a:hover { color: var(--primary); padding-left: 5px; }

/* BOTÃO SUBIR AO TOPO */
#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    box-shadow: 0 5px 15px rgba(229, 9, 20, 0.4);
    transition: 0.3s;
}

#backToTop:hover { transform: scale(1.1); filter: brightness(1.2); }
#backToTop svg { width: 25px; height: 25px; }

@media (max-width: 900px) {
    .footer-container { grid-template-columns: 1fr 1fr; }
    .branding { grid-column: span 2; margin-bottom: 30px; }
}

@media (max-width: 600px) {
    .footer-container { grid-template-columns: 1fr; }
    .branding { grid-column: span 1; }
    #backToTop { bottom: 20px; right: 20px; width: 40px; height: 40px; }
}

/* SEÇÃO ESPORTES */
.sports-channels {
    padding: 80px 5%;
    background: #0d0d0d;
}

.section-subtitle {
    color: #888;
    margin-bottom: 40px;
    font-size: 1rem;
}

.sports-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.sport-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.4s ease;
    cursor: default;
}

.sport-card:hover {
    background: rgba(229, 9, 20, 0.05);
    border-color: var(--primary);
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

.sport-logo {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.sport-logo img {
    max-width: 120px;
    max-height: 50px;
    filter: drop-shadow(0 0 8px rgba(255,255,255,0.1));
    transition: 0.3s;
}

.sport-card:hover .sport-logo img {
    filter: drop-shadow(0 0 12px rgba(229, 9, 20, 0.5));
    transform: scale(1.1);
}

.sport-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: #fff;
}

.sport-card p {
    font-size: 0.9rem;
    color: #777;
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .sports-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 650px) {
    .sports-grid { grid-template-columns: 1fr; }
    .sport-card { padding: 20px; }
}

/* --- NETFLIX STYLE REVIEWS CAROUSEL --- */
.netflix-reviews {
    padding: 60px 0 80px 5%;
    background: var(--bg-black);
    overflow: hidden;
}

.reviews-wrapper { position: relative; }
.reviews-header-info { margin-bottom: 25px; }

.swiper-container-main {
    position: relative;
    padding-right: 5%;
}

.netflix-card {
    position: relative;
    background: #141414;
    border-radius: 8px;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.netflix-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-overlay-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 50%);
    pointer-events: none;
}

.netflix-card:hover {
    transform: scale(1.08);
    z-index: 10;
    border-color: var(--primary);
    box-shadow: 0 10px 25px rgba(0,0,0,0.8);
}

.custom-nav {
    color: white !important;
    background: rgba(0, 0, 0, 0.5);
    width: 50px !important;
    height: 100% !important;
    top: 0 !important;
    margin-top: 0 !important;
    transition: 0.3s;
    opacity: 0;
}

.swiper-container-main:hover .custom-nav { opacity: 1; }
.custom-nav:hover { background: rgba(0, 0, 0, 0.8); color: var(--primary) !important; }
.custom-nav::after { font-size: 2rem !important; font-weight: bold; }

.swiper-button-next.custom-nav { right: 0; border-radius: 4px 0 0 4px; }
.swiper-button-prev.custom-nav { left: -5%; border-radius: 0 4px 4px 0; }

@media (max-width: 768px) {
    .netflix-card { aspect-ratio: 4 / 3; }
    .custom-nav { display: none; }
}

/* --- POP-UP MODERNO --- */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
}

.popup-content {
    background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
    border: 1px solid rgba(229, 9, 20, 0.3);
    padding: 50px 40px;
    border-radius: 24px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    position: relative;
    animation: popupFadeIn 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes popupFadeIn {
    from { opacity: 0; transform: scale(0.8) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.popup-badge {
    background: var(--primary);
    color: white;
    font-size: 0.7rem;
    font-weight: 900;
    padding: 5px 15px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 20px;
}

.popup-content h2 { font-size: 2rem; margin-bottom: 15px; font-weight: 900; }
.popup-content p { color: #aaa; margin-bottom: 25px; line-height: 1.5; }

.price-container { margin-bottom: 30px; }
.old-price { text-decoration: line-through; color: #666; font-size: 1.1rem; margin-right: 10px; }
.new-price { color: #fff; font-size: 2.5rem; font-weight: 900; }
.new-price span { font-size: 1rem; color: #888; }

.cta-popup {
    display: block;
    background: var(--primary);
    color: white;
    padding: 20px;
    border-radius: 12px;
    font-weight: 900;
    text-decoration: none;
    font-size: 1.2rem;
    transition: 0.3s;
    box-shadow: 0 10px 30px rgba(229, 9, 20, 0.4);
}

.cta-popup:hover { transform: translateY(-5px); filter: brightness(1.2); }

.close-popup {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 2rem;
    color: #555;
    cursor: pointer;
    transition: 0.3s;
}
.close-popup:hover { color: white; }

.security-text { display: block; margin-top: 15px; font-size: 0.8rem; color: #444; }

/* --- ULTIMATE OFFER CARD --- */
.offer-container {
    padding: 100px 5%;
    display: flex;
    justify-content: center;
    background: var(--bg-black);
}

.premium-card {
    position: relative;
    width: 100%;
    max-width: 450px;
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    padding: 50px 40px;
    backdrop-filter: blur(20px);
    text-align: center;
    overflow: hidden;
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.card-glow-bg {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(229, 9, 20, 0.08) 0%, transparent 70%);
    z-index: -1;
    animation: glowPulse 8s infinite alternate;
}

@keyframes glowPulse {
    from { opacity: 0.5; transform: scale(1); }
    to { opacity: 1; transform: scale(1.1); }
}

.premium-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 30px 60px rgba(0,0,0,0.6), 0 0 20px rgba(229, 9, 20, 0.2);
}

.offer-badge {
    background: rgba(229, 9, 20, 0.15);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.card-main-title {
    font-size: 2.2rem;
    margin: 20px 0 10px;
    font-weight: 900;
}

.card-subtitle { color: #888; font-size: 0.95rem; margin-bottom: 35px; }

.card-features ul {
    list-style: none;
    text-align: left;
    margin-bottom: 40px;
}

.card-features li {
    color: #ccc;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    font-size: 1rem;
}

.check-icon { color: var(--primary); margin-right: 12px; font-weight: bold; }

.card-pricing { margin-bottom: 40px; }

.price-box {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 4px;
}

.currency { font-size: 0.6rem; font-weight: 700; color: #de0000; }
.price-value { font-size: 3rem; font-weight: 900; color: #fff; letter-spacing: -2px; }
.period { color: #666; font-size: 1.1rem; }

.savings-info {
    color: #00ff88;
    font-size: 0.85rem;
    font-weight: 700;
    margin-top: 5px;
}

.main-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--primary);
    color: white;
    padding: 22px;
    border-radius: 18px;
    text-decoration: none;
    font-weight: 900;
    font-size: 1.2rem;
    transition: 0.3s;
}

.main-cta-btn:hover {
    filter: brightness(1.2);
    gap: 20px;
}

.arrow-icon { width: 20px; fill: white; transition: 0.3s; }

.payment-methods {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 15px;
    opacity: 0.5;
}

.payment-methods img { height: 18px; filter: grayscale(1) invert(1); }

/* --- WIDGET CARTA & CHAT FORM --- */
.message-widget-container {
    position: fixed;
    bottom: 95px;
    right: 30px;
    z-index: 2000;
    cursor: pointer;
}

.envelope {
    position: relative;
    width: 55px;
    height: 40px;
    background: #fff;
    border-radius: 4px;
    animation: bounceLetter 2s infinite;
}

@keyframes bounceLetter {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.envelope::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    border-left: 27px solid transparent;
    border-right: 28px solid transparent;
    border-top: 25px solid #e0e0e0;
    z-index: 2;
}

.paper {
    position: absolute;
    bottom: 5px; left: 5px;
    width: 45px; height: 30px;
    background: var(--primary);
    z-index: 1;
    transition: 0.4s;
}

.notification-dot {
    position: absolute;
    top: -15px; right: -15px;
    background: var(--primary);
    color: white;
    font-size: 10px;
    font-weight: 900;
    width: 20px; height: 20px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    border: 2px solid #080808;
}

.chat-form-overlay {
    position: fixed;
    bottom: 100px; right: 30px;
    z-index: 3000;
    display: none;
    animation: slideInChat 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideInChat {
    from { opacity: 0; transform: translateY(50px) scale(0.9); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.chat-window {
    width: 350px;
    background: #181818;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    overflow: hidden;
}

.chat-header {
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    display: flex; align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.author-avatar { position: relative; margin-right: 15px; }
.author-avatar img { width: 45px; height: 45px; border-radius: 50%; }
.online-indicator {
    position: absolute; bottom: 3px; right: 3px;
    width: 12px; height: 12px; background: #25D366;
    border-radius: 50%; border: 2px solid #181818;
}

.header-text h3 { font-size: 1rem; color: #fff; }
.header-text p { font-size: 0.75rem; color: #25D366; }

.chat-body { padding: 20px; height: 250px; overflow-y: auto; display: flex; flex-direction: column; gap: 15px; }

.message { padding: 12px 16px; border-radius: 15px; font-size: 0.9rem; max-width: 85%; }
.message.system { background: #333; color: #eee; align-self: flex-start; border-bottom-left-radius: 2px; }
.message.user { background: var(--primary); color: white; align-self: flex-end; border-bottom-right-radius: 2px; }

.chat-options { padding: 15px; display: flex; flex-direction: column; gap: 8px; background: rgba(0,0,0,0.2); }
.chat-options button {
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    color: #ccc; padding: 10px; border-radius: 10px; cursor: pointer;
    text-align: left; transition: 0.3s; font-size: 0.85rem;
}
.chat-options button:hover { background: var(--primary); color: white; border-color: var(--primary); }

.typing { font-size: 0.8rem; color: #666; font-style: italic; margin-bottom: 10px; }

.close-chat { margin-left: auto; background: none; border: none; color: #555; font-size: 1.5rem; cursor: pointer; }

/* =========================
   AJUSTES PEDIDOS (SEM MEXER EM DESIGN)
   ========================= */

/* 1) Responsividade extra (anti-overflow) */
html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

/* 2) Rodapé redes sociais: botões mais bonitos + animação suave */
.social-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 18px;
    border-radius: 8px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.social-links a:hover {
    background: rgba(229,9,20,0.15);
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(229,9,20,0.25);
}

/* 3) Espaçamento entre seções (apenas mobile/tablet) */
@media (max-width: 1024px) {
    section {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }
}
@media (max-width: 600px) {
    section {
        padding-top: 45px !important;
        padding-bottom: 45px !important;
    }
}

/* 4) Confetes/Fogos no pop-up (canvas) */
#confettiCanvas {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}
.popup-content > * {
    position: relative;
    z-index: 2;
}
.payment-mini{
  margin-top: 16px;
  opacity: 0.9;
}

.payment-mini-title{
  font-size: 0.78rem;
  color: #8a8a8a;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.payment-mini-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.pay-mini-item{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 8px;
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.pay-mini-item:hover{
  transform: translateY(-2px);
  border-color: rgba(229,9,20,0.55);
  box-shadow: 0 10px 18px rgba(0,0,0,0.45);
}

.pay-mini-icon{
  font-size: 1.05rem; /* pequeno */
  line-height: 1;
  filter: grayscale(0.1);
}

.pay-mini-label{
  font-size: 0.75rem;
  color: #bdbdbd;
  font-weight: 700;
}

/* Mobile: vira 2x2 sem ficar gigante */
@media (max-width: 680px){
  .payment-mini-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* --- SEÇÃO "PARE E PENSE" (estilo do site + impacto forte) --- */
.stopthink-section{
  padding: 70px 5%;
  background: radial-gradient(circle at 50% 20%, rgba(229,9,20,0.18), transparent 55%),
              linear-gradient(180deg, #070707 0%, #0a0a0a 100%);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.stopthink-wrap{
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 26px;
  padding: 46px 28px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(14px);
}

/* brilho sutil animado */
.stopthink-wrap::before{
  content:"";
  position:absolute;
  inset:-40%;
  background: radial-gradient(circle, rgba(229,9,20,0.18) 0%, transparent 60%);
  animation: stopthinkGlow 7s ease-in-out infinite alternate;
  pointer-events:none;
}
@keyframes stopthinkGlow{
  from{ transform: translateY(10px) scale(1); opacity: .55; }
  to{ transform: translateY(-10px) scale(1.08); opacity: .9; }
}

.stopthink-title{
  position: relative;
  font-size: clamp(1.6rem, 3.8vw, 2.4rem);
  line-height: 1.15;
  font-weight: 900;
  color: #fff;
  margin-bottom: 12px;
}

.stopthink-title-strong{
  display: block;
  margin-top: 8px;
  background: linear-gradient(90deg, #ffffff, #bdbdbd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stopthink-price-top{
  position: relative;
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  color: #cfcfcf;
  margin-bottom: 22px;
}

.price-bad{
  color: #ff5a5f;
  font-weight: 900;
  text-shadow: 0 0 18px rgba(255,90,95,0.18);
}

.stopthink-logos{
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 18px auto 30px;
  max-width: 920px;
}

.logo-pill{
  height: 54px;
  min-width: 84px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 10px 22px rgba(0,0,0,0.35);
  transition: transform .25s ease, border-color .25s ease, filter .25s ease;
  text-decoration: none;
}

.logo-pill img{
  max-height: 22px;
  max-width: 120px;
  filter: grayscale(1) brightness(0.9);
  opacity: 0.95;
  transition: filter .25s ease, transform .25s ease, opacity .25s ease;
}

.logo-pill:hover{
  transform: translateY(-3px);
  border-color: rgba(229,9,20,0.55);
}

.logo-pill:hover img{
  filter: grayscale(0) brightness(1);
  transform: scale(1.04);
  opacity: 1;
}

.logo-pill.more{
  color: #e6e6e6;
  font-weight: 800;
  letter-spacing: .3px;
}

/* divisor */
.stopthink-divider{
  position: relative;
  height: 1px;
  margin: 26px auto 22px;
  width: min(680px, 90%);
  background: linear-gradient(90deg, transparent, rgba(229,9,20,0.7), transparent);
  opacity: .7;
}

.stopthink-subtitle{
  position: relative;
  font-size: clamp(1.25rem, 3vw, 1.8rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 10px;
}

.stopthink-subtitle .brand{
  color: var(--primary);
}

.stopthink-price-bottom{
  position: relative;
  font-size: clamp(1.1rem, 2.6vw, 1.55rem);
  color: #d7d7d7;
  margin-bottom: 22px;
}

.price-good{
  color: #fff;
  font-weight: 900;
  text-shadow: 0 0 22px rgba(229,9,20,0.18);
}

.stopthink-cta{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 44px;
  border-radius: 14px;
  background: var(--primary);
  color: #fff;
  font-weight: 900;
  text-decoration: none;
  letter-spacing: .8px;
  transition: transform .25s ease, filter .25s ease, box-shadow .25s ease;
  box-shadow: 0 16px 34px rgba(229,9,20,0.25);
}

.stopthink-cta:hover{
  transform: translateY(-4px);
  filter: brightness(1.15);
  box-shadow: 0 20px 44px rgba(229,9,20,0.35);
}

.stopthink-footnote{
  position: relative;
  margin-top: 16px;
  font-size: .85rem;
  color: #8e8e8e;
}

/* Responsivo */
@media (max-width: 560px){
  .stopthink-wrap{ padding: 36px 18px; }
  .logo-pill{ height: 48px; padding: 0 12px; border-radius: 12px; }
  .logo-pill img{ max-height: 20px; }
}
/* --- STATS STRIP (CONTADOR) --- */
.stats-strip{
  padding: 26px 5%;
  background: radial-gradient(circle at 50% 0%, rgba(229,9,20,0.22), transparent 60%),
              linear-gradient(180deg, #070707 0%, #0a0a0a 100%);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.stats-wrap{
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 26px 18px;
  backdrop-filter: blur(14px);
  position: relative;
  overflow: hidden;
}

/* brilho sutil animado */
.stats-wrap::before{
  content:"";
  position:absolute;
  inset:-50%;
  background: radial-gradient(circle, rgba(229,9,20,0.18) 0%, transparent 60%);
  animation: statsGlow 6s ease-in-out infinite alternate;
  pointer-events:none;
}
@keyframes statsGlow{
  from{ transform: translateY(14px) scale(1); opacity: .55; }
  to{ transform: translateY(-10px) scale(1.07); opacity: .9; }
}

.stat-item{
  position: relative;
  text-align: center;
  padding: 8px 6px;
}

.stat-number{
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1;
  color: #fff;
  font-size: clamp(2.2rem, 4.6vw, 3.8rem);
  text-shadow: 0 0 22px rgba(229,9,20,0.12);
}

.stat-plus{
  color: var(--primary);
  font-weight: 900;
}

.stat-label{
  margin-top: 8px;
  font-size: 0.92rem;
  color: #bdbdbd;
  letter-spacing: 0.2px;
}

.stat-divider{
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.18), transparent);
  opacity: .7;
}

/* Responsivo */
@media (max-width: 820px){
  .stats-wrap{
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 22px 16px;
  }
  .stat-divider{
    width: 65%;
    height: 1px;
    margin: 8px auto;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.18), transparent);
  }
}
/* --- SEÇÃO FINAL NETFLIX STYLE --- */
.ultimate-stream-section{
  position: relative;
  padding: 120px 0 80px;
  background: #000;
  overflow: hidden;
}

.ultimate-overlay{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 30%, rgba(0,0,0,0.75) 100%),
    radial-gradient(circle at top, rgba(229,9,20,0.35), transparent 60%);
  z-index: 2;
}

.ultimate-content{
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto 60px;
  padding: 0 5%;
}

.ultimate-title{
  font-size: clamp(2rem, 4.8vw, 3.4rem);
  font-weight: 900;
  line-height: 1.15;
  color: #fff;
}

.ultimate-highlight{
  display: inline-block;
  margin-top: 10px;
  padding: 6px 18px;
  background: var(--primary);
  color: #fff;
  border-radius: 8px;
  font-weight: 900;
  box-shadow: 0 0 30px rgba(229,9,20,0.45);
}

/* WALL DE CAPAS */
.ultimate-wall{
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 14px;
  padding: 0 3%;
  transform: perspective(1200px) rotateX(12deg);
}

.ultimate-wall img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  filter: brightness(0.85);
  transition: transform .4s ease, filter .4s ease;
}

.ultimate-wall img:hover{
  transform: scale(1.08);
  filter: brightness(1);
}

/* VINHETA NAS BORDAS */
.ultimate-stream-section::after{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(circle at center, transparent 40%, #000 75%);
  z-index: 2;
  pointer-events:none;
}

/* RESPONSIVO */
@media (max-width: 1024px){
  .ultimate-wall{
    grid-template-columns: repeat(6, 1fr);
    transform: perspective(1000px) rotateX(10deg);
  }
}

@media (max-width: 680px){
  .ultimate-stream-section{
    padding: 90px 0 60px;
  }
  .ultimate-wall{
    grid-template-columns: repeat(3, 1fr);
    transform: none;
  }
}
.fireworks-canvas{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  pointer-events:none;
  z-index:1;
  opacity:0;
  transition:opacity .35s ease;
}

#offerModal.is-open .fireworks-canvas{ opacity:1; }

#offerModal .popup-content{
  position:relative;
  z-index:2;
}

.popup-title{
  font-size:2.05rem;
  margin-bottom:10px;
  font-weight:900;
  letter-spacing:-0.5px;
}

.popup-desc{
  color:#b5b5b5;
  line-height:1.55;
  margin-bottom:22px;
}
.fireworks-canvas{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  pointer-events:none;
  z-index:1;
  opacity:0;
  transition:opacity .35s ease;
}

#offerModal.is-open .fireworks-canvas{ opacity:1; }

#offerModal .popup-content{
  position:relative;
  z-index:2;
}

.popup-title{
  font-size:2.05rem;
  margin-bottom:10px;
  font-weight:900;
  letter-spacing:-0.5px;
}

.popup-desc{
  color:#b5b5b5;
  line-height:1.55;
  margin-bottom:22px;
}

/* --- SEÇÃO ANIME CINEMÁTICA --- */
.anime-hero-section {
    position: relative;
    width: 100%;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 100px 5%;
    /* IMAGEM GRANDE AO FUNDO */
    background-image: url('https://i.pinimg.com/736x/da/ce/7e/dace7e4d67fadcc0dbcffcba5252bf68.jpg'); 
    background-size: cover;
    background-position: center top;
    background-attachment: fixed; /* Efeito Parallax suave */
    overflow: hidden;
}

/* Overlay Escuro para Legibilidade (Vignette) */
.anime-full-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        77deg, 
        rgba(0, 0, 0, 0.95) 0%, 
        rgba(0, 0, 0, 0.7) 100%, 
        transparent 85%
    );
    z-index: 1;
}

.anime-hero-container {
    position: relative;
    z-index: 2; /* Garante que o texto fique acima do overlay */
    max-width: 1200px;
    width: 100%;
}

.anime-hero-content {
    max-width: 650px;
}

/* Badge Netflix */
.netflix-badge-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.n-icon {
    color: var(--primary);
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
}

.n-label {
    color: #e5e5e5;
    letter-spacing: 4px;
    font-size: 0.85rem;
    font-weight: 700;
}

/* Tipografia Épica */
.anime-hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    line-height: 0.9;
    color: #fff;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.anime-hero-title span {
    color: var(--primary); /* Destaque no título */
}

.anime-hero-description {
    font-size: 1.2rem;
    color: #d2d2d2;
    line-height: 1.5;
    margin-bottom: 30px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.8);
}

.anime-hero-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 45px;
    font-weight: 700;
    color: #fff;
    font-size: 0.9rem;
}

.meta-age {
    border: 1px solid #888;
    padding: 2px 8px;
    border-radius: 2px;
}

/* BOTÃO ARREDONDADO COM BRILHO ANIMADO */
.btn-netflix-rounded {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary);
    color: #fff;
    padding: 18px 50px;
    border-radius: 10px; /* Arredondamento Total */
    font-weight: 900;
    font-size: 1.2rem;
    text-decoration: none;
    overflow: hidden; /* Esconde o brilho que sai da borda */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(229, 9, 20, 0.4);
}

.btn-netflix-rounded:hover {
    transform: scale(1.08);
    background-color: #ff0a16;
    box-shadow: 0 15px 40px rgba(229, 9, 20, 0.6);
}

.play-icon {
    margin-right: 12px;
    font-size: 1.4rem;
}

/* Animação do Brilho (Shine) */
.shine-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 60px;
    height: 100%;
    background: linear-gradient(
        to right,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transform: skewX(-30deg);
    animation: laserShine 4s infinite;
}

@keyframes laserShine {
    0% { left: -100%; }
    20% { left: 150%; }
    100% { left: 150%; }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .anime-hero-section {
        background-attachment: scroll; /* Melhora performance no celular */
        text-align: center;
        padding-top: 150px;
    }
    .netflix-badge-group { justify-content: center; }
    .anime-hero-meta { justify-content: center; }
    .btn-netflix-rounded { width: 100%; }
}