:root {
    --bg-color: #050505;
    /* Preto absoluto */
    --bg-secondary: #0a0a0a;
    --card-bg: #121212;
    --card-bg-hover: #181818;

    --text-primary: #f0f0f0;
    /* Branco suave (Off-white) */
    --text-secondary: #888888;

    /* Paleta Dourada Metálica (Menos Amarela, Mais Ouro) */
    --primary-color: #C5A059;
    --primary-dark: #9A7B3E;
    --primary-light: #E5C585;

    --accent-color: #C5A059;

    --whatsapp-green: #25D366;

    --container-width: 1240px;
    --radius: 4px;
    /* Bordas mais retas = Mais seriedade/elegância */

    /* Sombras Sóbrias (Sem Neon) */
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.9);
    --glow-gold-subtle: 0 0 15px rgba(197, 160, 89, 0.15);
    /* Brilho MUITO sutil */

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@300;400;600&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    padding-bottom: 20px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    /* Pesos mais leves são mais elegantes */
    letter-spacing: 0.5px;
    color: #fff;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.4s ease;
}

/* Header Minimalista */
header {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
    padding: 20px 0;
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Nav Desktop */
.desktop-nav {
    display: flex;
    gap: 30px;
}

.desktop-nav a {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    padding: 5px 0;
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.desktop-nav a:hover {
    color: #fff;
}

.desktop-nav a:hover::after {
    width: 100%;
}

/* Menu Mobile para telas pequenas */
.mobile-menu-icon {
    display: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
    padding: 10px;
    /* Touch target 44px+ */
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(5, 5, 5, 0.98);
        padding: 20px;
        border-bottom: 1px solid var(--primary-color);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.9);
        gap: 0;
    }

    .desktop-nav.active {
        display: flex;
        animation: fadeDown 0.3s ease;
    }

    .desktop-nav a {
        display: block;
        padding: 15px 0;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        font-size: 1.1rem;
        /* Hit area maior */
    }

    .mobile-menu-icon {
        display: block;
    }

    .header-content {
        justify-content: space-between;
        padding: 0 20px;
    }
}

.header-scrolled {
    position: fixed;
    background: rgba(5, 5, 5, 0.98);
    border-bottom: 1px solid rgba(197, 160, 89, 0.1);
    animation: fadeDown 0.4s ease;
}

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo {
    display: block;
    border: none;
    padding: 0;
}

.logo img {
    height: 45px;
    width: auto;
    object-fit: contain;
    display: block;
}

.logo:hover {
    background: transparent;
}

/* Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
}

/* Section Titles */
.section-title {
    font-size: 1.4rem;
    font-weight: 300;
    margin: 60px 0 30px;
    color: var(--primary-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.section-title::after {
    content: '';
    flex-grow: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(197, 160, 89, 0.3), transparent);
}

.section-title::before {
    display: none;
}

/* Remove barra lateral grossa */


/* Grids */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 30px;
}

@media (max-width: 600px) {
    .grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

/* Cards - Minimal & Chic */
.card {
    background: transparent;
    /* Remove fundo do card para focar na imagem */
    border-radius: 0;
    /* Sem bordas arredondadas */
    overflow: visible;
    transition: transform 0.4s ease;
    border: none;
}

.card:hover {
    transform: translateY(-8px);
    z-index: 2;
    /* Sem sombra no card todo, apenas foco visual */
}

.card img {
    width: 100%;
    aspect-ratio: 2/3;
    object-fit: cover;
    display: block;
    transition: all 0.5s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    filter: saturate(0.9);
    /* Levemente desaturado para elegância */
}

.card:hover img {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8);
    filter: saturate(1.1);
}

.card-info {
    padding: 15px 0 0 0;
    /* Info fora da imagem */
    background: transparent;
    position: static;
    /* Volta ao fluxo normal */
}

.card-title {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 5px;
    color: #e0e0e0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-shadow: none;
}

.card-year {
    font-size: 0.8rem;
    color: #666;
    font-weight: 400;
}

/* Detail Page - Hero - Cinematic */
.hero {
    position: relative;
    height: 85vh;
    /* Mais imersivo */
    min-height: 600px;
    background-size: cover;
    background-position: center top;
    display: flex;
    align-items: flex-end;
    /* Conteudo embaixo */
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(0deg, #050505 0%, rgba(5, 5, 5, 0.6) 40%, rgba(5, 5, 5, 0.2) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: 200px 20px 80px;
    /* Aumentado padding superior drasticamente */
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 300;
    /* Thin font */
    line-height: 1;
    margin-bottom: 25px;
    color: #fff;
    text-shadow: none;
    letter-spacing: -2px;
}

.meta-info {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    font-size: 1rem;
    color: #bbb;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.rating-badge {
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 2px 10px;
    font-weight: 400;
    background: transparent;
    box-shadow: none;
}

/* Buttons - Outline & Gold */
.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 15px 50px;
    font-size: 0.9rem;
    border-radius: 0;
    /* Botão quadrado */
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    width: auto;
    min-width: 300px;
    margin: 0;
    transition: all 0.4s ease;
    box-shadow: none;
}

.btn-cta::after {
    display: none;
}

/* Remove brilho animated */

.btn-cta:hover {
    background: var(--primary-color);
    color: #000;
    transform: none;
    box-shadow: 0 0 30px rgba(197, 160, 89, 0.2);
}

/* Content Blocks */
.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
}

.content-block {
    margin-bottom: 60px;
    background: transparent;
    /* Remove background box */
    padding: 0;
    border: none;
}

.content-block h2 {
    color: var(--primary-color);
    font-weight: 300;
    letter-spacing: 1px;
    padding-bottom: 20px;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.5rem;
}

.content-block p {
    color: #ccc;
    font-weight: 300;
    font-size: 1.1rem;
    line-height: 2;
    max-width: 800px;
}

/* Tags */
.tag {
    background: transparent;
    border: 1px solid #333;
    color: #888;
    padding: 5px 15px;
    border-radius: 0;
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.tag:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

/* Category Bar - Minimal */
.category-bar-container {
    background: rgba(5, 5, 5, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 0;
}

.category-bar {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    padding: 5px 25px;
    scrollbar-width: none;
}

.category-bar::-webkit-scrollbar {
    display: none;
}

.category-pill {
    background: transparent;
    border: none;
    color: #666;
    padding: 5px 10px;
    font-size: 0.8rem;
    border-radius: 0;
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-pill:hover,
.category-pill.active {
    background: transparent;
    color: var(--primary-color);
    box-shadow: none;
    border: none;
    font-weight: 400;
    /* Nada de bold */
}

/* Pricing - Luxury Cards */
.pricing-section {
    padding: 100px 0;
    background: #050505;
}

.pricing-header {
    text-align: center;
    margin-bottom: 60px;
}

.pricing-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 300;
    letter-spacing: -2px;
    color: #fff;
    background: none;
    -webkit-text-fill-color: #fff;
    margin: 0;
}

.pricing-subtitle {
    color: var(--primary-dark);
    letter-spacing: 4px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.plan-card {
    background: #080808;
    border: 1px solid #151515;
    border-radius: 0;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
}

.plan-card.featured {
    background: #0a0a0a;
    border: 1px solid var(--primary-dark);
    box-shadow: none;
    transform: scale(1.05);
    z-index: 5;
}

.plan-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: #000;
    border-radius: 0;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 0.7rem;
    box-shadow: none;
    padding: 5px 15px;
    text-transform: uppercase;
}

.plan-name {
    font-size: 1.2rem;
    color: #fff;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.plan-price {
    display: flex;
    align-items: baseline;
    margin-bottom: 10px;
}

.plan-currency {
    font-size: 1.2rem;
    color: #666;
    margin-right: 5px;
}

.plan-value {
    font-size: 3rem;
    font-family: var(--font-heading);
    font-weight: 300;
    text-shadow: none;
    color: #fff;
    line-height: 1;
}

.plan-cents {
    font-size: 1.2rem;
    color: #666;
}

.plan-duration {
    display: inline-block;
    color: var(--primary-dark);
    background: transparent;
    padding: 0;
    margin-bottom: 30px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    flex-grow: 1;
}

.plan-features li {
    border-bottom: 1px solid #111;
    color: #666;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    font-size: 0.95rem;
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--primary-dark);
    /* Dourado escuro */
    font-size: 0.6rem;
}

.plan-features li.highlight {
    color: #fff;
}

.plan-btn {
    border-radius: 0;
    background: transparent;
    border: 1px solid #333;
    color: #fff;
    font-weight: 400;
    letter-spacing: 2px;
    padding: 20px;
    text-align: center;
    text-transform: uppercase;
    display: block;
    transition: all 0.3s ease;
}

.plan-card.featured .plan-btn {
    background: var(--primary-color);
    color: #000;
    font-weight: 600;
    border: none;
    box-shadow: none;
}

.plan-card.featured .plan-btn:hover {
    background: var(--primary-light);
    box-shadow: none;
}

.plan-btn:hover {
    background: #222;
    border-color: #444;
}

/* Footer Minimal */
footer {
    background: #020202;
    border-top: 1px solid #111;
    color: #444;
    padding: 80px 0;
    text-align: center;
    margin-top: 80px;
}

footer p {
    margin-bottom: 10px;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {

    /* GLOBAL CONTAINER - Mais margem para respiro */
    .container {
        padding: 0 25px;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    /* HEADER & NAV */
    .mobile-menu-icon {
        display: block;
        /* Garante que apareça */
    }

    /* HERO SECTION - Ajuste de altura e padding */
    .hero {
        min-height: 80vh;
        height: auto;
        padding-bottom: 60px;
    }

    .hero-content {
        align-items: center;
        text-align: center;
        padding: 160px 20px 40px;
        /* Mais espaço topo p/ header + espaço touch */
    }

    .hero h1 {
        font-size: 2.2rem;
        /* Reduzido para não estourar */
        line-height: 1.2;
        margin-bottom: 20px;
    }

    .hero p {
        font-size: 1rem;
        padding: 0 10px;
    }

    /* BOTÕES (TOUCH TARGETS) */
    .btn-cta,
    .plan-btn,
    button {
        width: 100%;
        min-width: auto;
        padding: 18px 0;
        /* Touch Target otimizado > 44px */
        font-size: 1rem;
    }

    /* GRIDS - Transformação em Pilhas (Stacks) */
    .pricing-grid,
    .steps-grid,
    .reviews-grid,
    .install-guide,
    .footer-columns {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
        padding: 0;
    }

    /* GRID DE FILMES - 2 Colunas otimizadas */
    .grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        /* Gap menor para maximizar imagem */
    }

    /* CARDS GENÉRICOS DE TEXTO - Largura Total */
    .step-card,
    .plan-card,
    .review-card,
    .device-card {
        width: 100% !important;
        margin: 0 !important;
    }

    /* CARD DE FILME ESPECÍFICO MOBILE */
    .card {
        display: flex;
        flex-direction: column;
        height: auto;
        background: transparent;
        border: none;
        overflow: hidden;
    }

    .card img {
        width: 100%;
        aspect-ratio: 2 / 3;
        object-fit: cover;
        border-radius: 6px;
        /* Borda suave */
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
        /* Sombra para destacar do fundo */
        margin-bottom: 8px;
        /* Espaço para o título */
    }

    .card-info {
        padding: 0 2px;
    }

    .card-title {
        font-size: 0.9rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        text-align: left;
        /* Garante alinhamento */
    }

    /* SECTION TITLES */
    .section-title {
        font-size: 1.6rem;
        text-align: center;
        flex-direction: column;
        gap: 15px;
        margin: 50px 0 30px;
    }

    .section-title::after {
        width: 60px;
        flex-grow: 0;
    }

    /* FOOTER */
    .footer-columns {
        text-align: center;
    }

    .brand-col {
        place-items: center;
    }

    .brand-col img {
        margin: 0 auto 20px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }

    .social-links {
        justify-content: center;
        width: 100%;
    }

    /* CATEGORY BAR - Scroll Horizontal Suave */
    .category-bar-container {
        padding: 15px 0;
    }

    .category-bar {
        padding: 0 25px;
        gap: 15px;
    }

    .category-pill {
        padding: 8px 16px;
        /* Touch target melhor */
    }
}

/* FIX: Trailer Responsivo */
.video-responsive {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    background: #000;
    border-radius: 6px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    margin-bottom: 40px;
}

.video-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* FIX: Tag List */
.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}