@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Plus+Jakarta+Sans:wght@500;600;700;800&display=swap');

:root {
    --bg-main: #050505;
    --bg-card: rgba(255, 255, 255, 0.02);
    --border-card: rgba(255, 255, 255, 0.05);
    --text-primary: #ffffff;
    --text-secondary: #8e8e93;
    
    /* Luxury Gold & Deep Indigo Accent */
    --accent-neon: #d4b27a; /* Ouro Champanhe */
    --accent-glow: rgba(212, 178, 122, 0.2);
    --accent-purple: #1e1b4b;
    --accent-purple-glow: rgba(99, 102, 241, 0.15);
    
    /* Conversion Colors (Jade Emerald) */
    --success-green: #22c55e;
    --success-glow: rgba(34, 197, 94, 0.35);
    
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
    width: 100%;
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: var(--font-body);
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #090610;
}
::-webkit-scrollbar-thumb {
    background: var(--accent-neon);
    border-radius: 4px;
    box-shadow: 0 0 10px var(--accent-glow);
}

.page-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================================
   HERO SECTION (Cinematic Tensão & Reveal)
   ============================================================ */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
    background: radial-gradient(circle at center, rgba(138, 43, 226, 0.15) 0%, rgba(5, 5, 5, 1) 70%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(5, 5, 5, 0.3) 0%, rgba(5, 5, 5, 0.95) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-tag {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-neon);
    text-shadow: 0 0 15px var(--accent-glow);
    margin-bottom: 24px;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 3.8vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.8);
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.hero h1 span {
    background: linear-gradient(135deg, #ffffff 30%, var(--accent-neon) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-right: 0.05em;
}

.hero p {
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 40px;
    font-weight: 600;
}

/* Call to Action - E-mail & Button */
.cta-form {
    display: flex;
    max-width: 650px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-card);
    border-radius: 50px;
    padding: 6px;
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.cta-form:focus-within {
    border-color: var(--accent-neon);
    box-shadow: 0 0 20px rgba(212, 178, 122, 0.25);
}

.cta-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-primary);
    padding: 0 24px;
    font-size: 1rem;
    font-family: var(--font-body);
}

.cta-input::placeholder {
    color: #6b7280;
}

.btn-neon {
    background: linear-gradient(135deg, var(--success-green) 0%, #166534 100%);
    color: var(--text-primary);
    border: none;
    outline: none;
    border-radius: 50px;
    padding: 16px 36px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 5px 15px var(--success-glow);
}

.btn-neon:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--success-glow);
    filter: brightness(1.1);
}

.btn-neon:active {
    transform: translateY(0);
}

/* ============================================================
   DOBRA 1.5 - BARRA DE AUTORIDADE
   ============================================================ */
.authority-bar {
    background: #090610;
    border-top: 1px solid rgba(212, 178, 122, 0.15);
    border-bottom: 1px solid rgba(212, 178, 122, 0.15);
    padding: 30px 0;
    position: relative;
    z-index: 10;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
}

.metric-card {
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: relative;
}

.metric-card:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -15px;
    top: 15%;
    height: 70%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.08), transparent);
}

.metric-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-primary);
    text-shadow: 0 0 25px rgba(212, 178, 122, 0.35);
}

.metric-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* ============================================================
   CATALOG CAROUSEL (Netflix Style)
   ============================================================ */
.catalog-section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    margin-bottom: 48px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.section-header h2 span {
    color: var(--accent-neon);
}

.section-header p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-top: 8px;
}

.movie-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
    padding: 24px 0;
    margin-bottom: 50px;
}

.movie-grid::-webkit-scrollbar {
    display: none; /* Ocultar scrollbar padrao para visual limpo */
}

.movie-card {
    width: 100%;
    background: transparent;
    border: none;
    border-radius: 8px;
    overflow: visible;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    scroll-snap-align: start;
    text-decoration: none;
}

@media (max-width: 1024px) {
    .movie-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    .movie-card {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .movie-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 30px;
    }
    .movie-card {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
}

.movie-card:hover {
    transform: translateY(-4px);
    z-index: 10;
}

/* Cartão Destaque (45 Leis) */
.movie-card.featured-card .card-img-wrapper {
    border: 1.5px solid var(--accent-neon);
    box-shadow: 0 0 15px var(--accent-glow);
}

.movie-card.featured-card:hover .card-img-wrapper {
    border-color: var(--success-green);
    box-shadow: 0 10px 30px var(--success-glow);
}

.card-img-wrapper {
    position: relative;
    width: 100%;
    padding-top: 145%; /* Proporção 2:3 padrão de pôsteres de cinema/Netflix */
    border-radius: 8px;
    overflow: hidden;
    background: #090610;
    border: 1px solid var(--border-card);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.movie-card:hover .card-img-wrapper img {
    transform: scale(1.05);
}

.movie-card:hover .card-img-wrapper {
    border-color: var(--accent-neon);
    box-shadow: 0 10px 25px var(--accent-glow);
}

.badge-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(5, 5, 5, 0.85);
    border: 1px solid var(--accent-neon);
    color: var(--text-primary);
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 3px 8px;
    border-radius: 4px;
    backdrop-filter: blur(4px);
    z-index: 2;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.movie-card.featured-card .badge-tag {
    background: linear-gradient(135deg, var(--accent-neon) 0%, rgba(5,5,5,0.95) 100%);
    border-color: var(--accent-neon);
}

.card-meta {
    padding: 12px 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: transparent;
}

.meta-author {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
}

.card-title {
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-primary);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 36px; /* Strict 2 line text box for absolute visual alignment */
    transition: color 0.3s ease;
}

.movie-card:hover .card-title {
    color: var(--accent-neon);
}

.card-action {
    display: flex;
    align-items: center;
    margin-top: 4px;
}

.play-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-secondary);
    font-size: 0.72rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.play-link .play-icon {
    font-size: 0.65rem;
    color: var(--accent-neon);
    transition: transform 0.3s ease;
}

.movie-card:hover .play-link {
    color: var(--text-primary);
}

.movie-card:hover .play-link .play-icon {
    transform: scale(1.2);
    color: var(--success-green);
}

/* ============================================================
   FLAGSHIP SERIES (Destaque do Curso Premium)
   ============================================================ */
.flagship-section {
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(5, 5, 5, 1) 0%, rgba(9, 6, 16, 1) 50%, rgba(5, 5, 5, 1) 100%);
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.flagship-grid {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 48px;
    align-items: center;
}

.flagship-media {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(212, 178, 122, 0.2);
    box-shadow: 0 15px 45px rgba(212, 178, 122, 0.12);
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(13, 6, 26, 0.35);
    backdrop-filter: blur(15px);
    padding: 40px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.flagship-media img {
    width: 100%;
    height: auto;
    max-height: 380px;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.flagship-media:hover img {
    transform: scale(1.04);
}

.flagship-content {
    display: flex;
    flex-direction: column;
}

.flagship-badge {
    align-self: flex-start;
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(212, 178, 122, 0.1);
    border: 1px solid var(--accent-neon);
    color: var(--text-primary);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 14px;
    border-radius: 30px;
    margin-bottom: 24px;
    text-shadow: 0 0 10px var(--accent-glow);
}

.flagship-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-neon);
    box-shadow: 0 0 8px var(--accent-neon);
}

.flagship-content h3 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.flagship-content h3 span {
    color: var(--accent-neon);
}

.flagship-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 30px;
    text-align: justify;
}

.flagship-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 0;
}

.meta-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.meta-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.meta-val {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.flagship-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.btn-flagship {
    background: linear-gradient(135deg, var(--success-green) 0%, #166534 100%);
    color: var(--text-primary);
    padding: 16px 40px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px var(--success-glow);
    transition: all 0.3s ease;
}

.btn-flagship:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--success-glow);
    filter: brightness(1.1);
}

.flagship-price {
    display: flex;
    flex-direction: column;
}

.price-desc {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-val {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-primary);
}

/* ============================================================
   SPECIAL RELEASES (Atendimento VIP / WhatsApp)
   ============================================================ */
.vip-section {
    padding: 100px 0;
    position: relative;
}

.vip-card {
    background: linear-gradient(135deg, rgba(25, 10, 40, 0.3) 0%, rgba(5, 5, 5, 0.8) 100%);
    border: 1px solid rgba(138, 43, 226, 0.25);
    border-radius: 20px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 55% 45%;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
    backdrop-filter: blur(15px);
}

.vip-content {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.vip-badge {
    align-self: flex-start;
    background: rgba(138, 43, 226, 0.1);
    border: 1px solid var(--accent-purple);
    color: var(--text-primary);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 14px;
    border-radius: 30px;
    margin-bottom: 24px;
}

.vip-content h3 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
}

.vip-content h3 span {
    color: var(--accent-neon);
}

.vip-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 35px;
    text-align: justify;
}

.vip-actions {
    display: flex;
    align-items: center;
    gap: 30px;
}

.btn-vip {
    background: linear-gradient(135deg, var(--success-green) 0%, #166534 100%);
    color: var(--text-primary);
    padding: 16px 36px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px var(--success-glow);
    transition: all 0.3s ease;
}

.btn-vip:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--success-glow);
    filter: brightness(1.1);
}

.vip-img-wrapper {
    position: relative;
    width: 100%;
    min-height: 400px;
}

.vip-img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

/* ============================================================
   FAQ ACCORDION (Netflix Style Accordions)
   ============================================================ */
.faq-section {
    padding: 100px 0;
    position: relative;
}

.faq-title {
    text-align: center;
    margin-bottom: 60px;
}

.faq-title h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
}

.faq-title p {
    color: var(--text-secondary);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-item {
    background: #13131a;
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-header {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    color: var(--text-primary);
    transition: background 0.3s ease;
}

.faq-header:hover {
    background: #1c1c24;
}

.faq-header h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--text-primary);
    transition: transform 0.3s ease;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 0 30px;
    background: #13131a;
    border-top: 1px solid rgba(255,255,255,0.02);
}

.faq-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
    padding-bottom: 24px;
    text-align: justify;
}

/* Active FAQ Item State */
.faq-item.active .faq-content {
    max-height: 500px; /* Suficiente para o texto */
    padding-top: 24px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg); /* Gira o "+" para virar um "x" */
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
    background: #090610;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 60px 0 40px;
    text-align: center;
    color: var(--text-secondary);
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.footer-logo span {
    color: var(--accent-neon);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 30px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-neon);
}

.footer-legal {
    font-size: 0.75rem;
    line-height: 1.5;
}

/* ============================================================
   RESPONSIVIDADE E RETOQUES MOBILE
   ============================================================ */
@media (max-width: 992px) {
    .flagship-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .flagship-media {
        padding-top: 70%;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .vip-card {
        grid-template-columns: 1fr;
    }
    
    .vip-img-wrapper {
        min-height: 350px;
        order: -1;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .cta-form {
        flex-direction: column;
        border-radius: 16px;
        padding: 12px;
        gap: 12px;
    }
    
    .cta-input {
        padding: 12px;
        text-align: center;
    }
    
    .btn-neon {
        width: 100%;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .metric-card:not(:last-child)::after {
        display: none;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .flagship-content h3 {
        font-size: 1.8rem;
    }
    
    .vip-content {
        padding: 30px 24px;
    }
    
    .vip-content h3 {
        font-size: 1.6rem;
    }
    
    .vip-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        text-align: center;
    }
    
    .btn-vip {
        width: 100%;
        text-align: center;
    }
    
    .flagship-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
        text-align: center;
    }
    
    .btn-flagship {
        width: 100%;
        text-align: center;
    }
}

/* ============================================================
   NEXUS UX OPTIMIZATIONS (Cinematic & Responsive breaks)
   ============================================================ */
@media (min-width: 769px) {
    .desktop-only {
        display: inline !important;
    }
}
@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.18; /* Elegant minimal background */
    pointer-events: none;
}


/* ============================================================
   EXCALIDRAW SYSTEM UNIFICATION (Horizontal component cards)
   ============================================================ */
.horizontal-product-card {
    background: linear-gradient(135deg, rgba(20, 10, 35, 0.25) 0%, rgba(5, 5, 5, 0.75) 100%);
    border: 1px solid rgba(212, 178, 122, 0.15);
    border-radius: 16px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 280px 1fr;
    height: 300px;
    max-width: 900px;
    margin: 0 auto 35px auto;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.horizontal-product-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 178, 122, 0.35);
    box-shadow: 0 30px 60px rgba(212, 178, 122, 0.08);
}

.horizontal-product-card-media {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #090610;
}

.horizontal-product-card-media img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.horizontal-product-card:hover .horizontal-product-card-media img {
    transform: scale(1.03);
}

.horizontal-product-card-content {
    padding: 24px 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.horizontal-product-card-content h3 {
    font-size: 1.6rem !important;
    margin-bottom: 8px !important;
    font-weight: 800;
}

.horizontal-product-card-content p {
    font-size: 0.88rem !important;
    line-height: 1.45 !important;
    margin-bottom: 12px !important;
}

.horizontal-product-card-content .flagship-meta {
    margin-bottom: 16px !important;
}

/* Padronizar titulos de cards e-books para mesma altura e evitar desalinhamento */

@media (max-width: 991px) {
    .horizontal-product-card {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .horizontal-product-card-media {
        height: 320px;
    }
    .horizontal-product-card-content {
        padding: 30px;
    }
}


/* ============================================================
   NETFLIX LANDSCAPE GRID SYSTEM (6 Columns, Fixed Width, 16:9 Aspect Ratio)
   ============================================================ */
.netflix-landscape-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    padding: 10px 0;
}

.netflix-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    background: transparent;
    border-radius: 8px;
    overflow: visible;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.netflix-card-img-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio perfect for horizontal movie cards */
    border-radius: 8px;
    overflow: hidden;
    background: #090610;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.netflix-card-img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.netflix-card:hover .netflix-card-img-wrapper {
    border-color: var(--accent-neon);
    box-shadow: 0 10px 25px var(--accent-glow);
}

.netflix-card:hover .netflix-card-img-wrapper img {
    transform: scale(1.05);
}

.netflix-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: rgba(5, 5, 5, 0.85);
    border: 1px solid var(--accent-neon);
    color: var(--text-primary);
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 3px 6px;
    border-radius: 3px;
    backdrop-filter: blur(4px);
    z-index: 2;
}

.netflix-card-meta {
    padding: 10px 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.netflix-card-title {
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.35;
    color: var(--text-primary);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 35px; /* Perfect aligned spacing */
    transition: color 0.3s ease;
}

.netflix-card:hover .netflix-card-title {
    color: var(--accent-neon);
}

.netflix-card-action {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--accent-neon);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

/* ============================================================
   INFINITE TEXT TICKER (Gap Filler between sections)
   ============================================================ */
.ticker-wrapper {
    width: 100%;
    overflow: hidden;
    background: #090610;
    border-top: 1px solid rgba(212, 178, 122, 0.15);
    border-bottom: 1px solid rgba(212, 178, 122, 0.15);
    padding: 16px 0;
    white-space: nowrap;
    position: relative;
    z-index: 5;
}

.ticker-content {
    display: inline-block;
    animation: ticker-animation 30s linear infinite;
    padding-left: 100%;
}

.ticker-content span {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--accent-neon);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-right: 50px;
    text-shadow: 0 0 8px var(--accent-glow);
}

@keyframes ticker-animation {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-100%, 0, 0);
    }
}

/* ============================================================
   EXCALIDRAW SYSTEM UNIFICATION (Horizontal component cards)
   ============================================================ */
.horizontal-product-card {
    background: linear-gradient(135deg, rgba(20, 10, 35, 0.25) 0%, rgba(5, 5, 5, 0.75) 100%);
    border: 1px solid rgba(212, 178, 122, 0.12);
    border-radius: 16px;
    overflow: hidden;
    display: grid;
    max-width: 960px;
    margin: 0 auto 50px auto;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.horizontal-product-card:hover {
    transform: translateY(-2px);
    border-color: rgba(212, 178, 122, 0.25);
    box-shadow: 0 25px 50px rgba(212, 178, 122, 0.05);
}

.card-img-left {
    grid-template-columns: 320px 1fr;
}

.card-img-right {
    grid-template-columns: 1fr 320px;
}

.horizontal-product-card-media {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #090610;
}

.horizontal-product-card-media img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cover beautifully without stretch or squeeze */
}

.horizontal-product-card-content {
    padding: 35px 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.flagship-badge {
    background: rgba(212, 178, 122, 0.08);
    border: 1px solid var(--accent-neon);
    color: var(--text-primary);
    border-radius: 30px;
    align-self: flex-start;
    padding: 6px 14px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.horizontal-product-card-content h3 {
    font-size: 1.8rem !important;
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 12px !important;
    color: #fff;
}

.horizontal-product-card-content h3 span {
    color: var(--accent-neon);
}

.horizontal-product-card-content p {
    font-size: 0.88rem !important;
    line-height: 1.5 !important;
    color: var(--text-secondary);
    margin-bottom: 20px !important;
    text-align: justify;
}

.flagship-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 24px;
    gap: 15px;
}

.meta-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.meta-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
}

.meta-val {
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
}

.flagship-actions {
    display: flex;
    align-items: center;
}

.btn-flagship {
    background: linear-gradient(135deg, var(--success-green) 0%, #166534 100%);
    color: var(--text-primary);
    padding: 14px 36px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px var(--success-glow);
    transition: all 0.3s ease;
    text-align: center;
}

.btn-flagship:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px var(--success-glow);
    filter: brightness(1.1);
}

.btn-standby {
    background: linear-gradient(135deg, #374151 0%, #1f2937 100%) !important;
    color: var(--text-secondary) !important;
    border: 1px solid #4b5563;
    box-shadow: none !important;
}

/* ============================================================
   SOCIAL MEDIA MODERN INTEGRATION
   ============================================================ */
.social-link-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    padding: 10px 20px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-link-item:hover {
    color: var(--accent-neon);
    border-color: rgba(212, 178, 122, 0.3);
    background: rgba(212, 178, 122, 0.03);
    transform: translateY(-2px);
}

.social-icon-svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.social-link-item:hover .social-icon-svg {
    transform: scale(1.1);
}

.social-handle {
    font-family: var(--font-body);
}

.social-metric {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 400;
}

@media (max-width: 991px) {
    .netflix-landscape-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    .horizontal-product-card {
        grid-template-columns: 1fr !important;
    }
    .card-img-left, .card-img-right {
        grid-template-columns: 1fr !important;
    }
    .horizontal-product-card-media {
        height: 240px;
    }
    .card-img-right .horizontal-product-card-media {
        order: -1;
    }
    .horizontal-product-card-content {
        padding: 30px;
    }
}

@media (max-width: 600px) {
    .netflix-landscape-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }
    .netflix-card {
        max-width: 320px;
        margin: 0 auto;
    }
}


/* ============================================================
   V6 LUXURY PORTRAIT CARDS SYSTEM (Netflix Portrait Figurinha)
   ============================================================ */
.netflix-portrait-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
    padding: 10px 0;
}

.netflix-portrait-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    background: transparent;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.netflix-portrait-wrapper {
    position: relative;
    width: 100%;
    padding-top: 145%; /* High-end portrait aspect ratio 2:3 for e-book posters */
    border-radius: 12px;
    overflow: hidden;
    background: #090610;
    border: 1px solid rgba(212, 178, 122, 0.15); /* Thin luxury gold-dusted border */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.netflix-portrait-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.netflix-portrait-card:hover .netflix-portrait-wrapper {
    border-color: var(--accent-neon);
    box-shadow: 0 15px 35px var(--accent-glow);
    transform: translateY(-5px);
}

.netflix-portrait-card:hover .netflix-portrait-wrapper img {
    transform: scale(1.04);
}

.netflix-portrait-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(5, 5, 5, 0.85);
    border: 1px solid var(--accent-neon);
    color: var(--text-primary);
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 8px;
    border-radius: 4px;
    backdrop-filter: blur(4px);
    z-index: 2;
}

.netflix-portrait-meta {
    padding: 14px 0 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
}

.netflix-portrait-title {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    line-height: 1.35;
    color: var(--text-primary);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 36px;
    transition: color 0.3s ease;
}

.netflix-portrait-card:hover .netflix-portrait-title {
    color: var(--accent-neon);
}

.netflix-portrait-action {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--accent-neon);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.netflix-portrait-card:hover .netflix-portrait-action {
    color: #fff;
    text-shadow: 0 0 8px var(--accent-glow);
}

/* ============================================================
   V6 CARD GEOMETRY FIX (Height Auto & Beautiful Stretching)
   ============================================================ */
.horizontal-product-card {
    height: auto !important; /* Force auto height to fit CTA and metadata cleanly */
    min-height: 420px !important;
}

.horizontal-product-card-media {
    min-height: 420px !important;
    height: 100% !important;
}

.horizontal-product-card-content {
    padding: 40px 50px !important; /* High-ticket breathing padding */
}

.horizontal-product-card-content h3 {
    font-size: 1.9rem !important;
    margin-bottom: 12px !important;
}

.horizontal-product-card-content p {
    font-size: 0.92rem !important;
    line-height: 1.55 !important;
    margin-bottom: 24px !important;
}

@media (max-width: 991px) {
    .netflix-portrait-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    .horizontal-product-card-media {
        min-height: 300px !important;
    }
}

@media (max-width: 600px) {
    .netflix-portrait-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 24px;
    }
    .netflix-portrait-card {
        max-width: 260px;
        margin: 0 auto;
    }
}


/* ============================================================
   V7 FINCH OUTLIER HUB ALIGNMENT (Portrait Cards and Minimal Hover)
   ============================================================ */

/* Redefine Portrait Wrapper properties to fit Outlier Hub visual style exactly */
.netflix-portrait-wrapper {
    position: relative;
    width: 100%;
    padding-top: 125% !important; /* Slightly shorter than 2:3, closer to standard poster proportions in the reference */
    border-radius: 6px !important; /* Elegant subtle rounding exactly like reference card */
    overflow: hidden;
    background: #0d0c15;
    border: 1px solid rgba(255, 255, 255, 0.08) !important; /* Pure minimal white/gray border, no gold */
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.7) !important;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.netflix-portrait-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* Elegant and Minimal Hover (No cheap gold scale/glowing shadow) */
.netflix-portrait-card:hover .netflix-portrait-wrapper {
    border-color: rgba(255, 255, 255, 0.3) !important; /* Clean premium grey-white glow */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8) !important;
    transform: translateY(-4px) !important;
}

.netflix-portrait-card:hover .netflix-portrait-wrapper img {
    transform: scale(1.03) !important; /* Slower and minimal scale */
}

/* Outlier Hub Minimal Badge style */
.netflix-portrait-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(10, 10, 15, 0.9) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    color: #ffffff !important;
    font-size: 0.58rem !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 1px !important;
    padding: 4px 8px !important;
    border-radius: 2px !important;
    backdrop-filter: blur(8px) !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

/* Sophisticated Typography underneath the cards */
.netflix-portrait-meta {
    padding: 12px 0 0 0 !important;
    align-items: center !important;
    text-align: center !important;
    gap: 3px !important;
}

.netflix-portrait-title {
    font-family: var(--font-body) !important;
    font-size: 0.88rem !important; /* Extremely neat and highly readable */
    font-weight: 600 !important;
    color: rgba(255, 255, 255, 0.9) !important;
    height: 38px !important;
    margin-bottom: 2px !important;
}

.netflix-portrait-action {
    font-family: var(--font-heading) !important;
    font-size: 0.68rem !important;
    font-weight: 700 !important;
    color: rgba(255, 255, 255, 0.4) !important; /* Muted color, only glows white on card hover */
    letter-spacing: 1.5px !important;
}

.netflix-portrait-card:hover .netflix-portrait-action {
    color: var(--accent-neon) !important;
    text-shadow: 0 0 6px var(--accent-glow) !important;
}

/* ============================================================
   V7 BANNER REMOVAL OF DOURADO HOVER GLOW
   ============================================================ */
.horizontal-product-card {
    border: 1px solid rgba(255, 255, 255, 0.05) !important; /* Grey minimalistic border */
    background: linear-gradient(135deg, rgba(12, 10, 20, 0.4) 0%, rgba(5, 5, 5, 0.9) 100%) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6) !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.horizontal-product-card:hover {
    border-color: rgba(255, 255, 255, 0.15) !important; /* Pure minimal white border glow */
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8) !important;
    transform: translateY(-2px) !important;
}

/* Alignment and line-height of banner titles */
.horizontal-product-card-content h3 {
    line-height: 1.25 !important;
    font-size: 1.95rem !important;
    font-weight: 800 !important;
}

.horizontal-product-card-content h3 span {
    display: inline-block;
    margin-top: 4px;
}

/* Footer alignment */
footer {
    padding: 80px 0 50px !important;
    background: #030206 !important;
}

.footer-logo {
    font-size: 1.25rem !important;
    letter-spacing: 3px !important;
    font-weight: 800 !important;
    color: #fff !important;
    margin-bottom: 25px !important;
}

.footer-links {
    margin-bottom: 40px !important;
    gap: 30px !important;
}

.footer-links a {
    font-size: 0.8rem !important;
    font-weight: 600 !important;
    color: rgba(255, 255, 255, 0.5) !important;
}


/* ============================================================
   V10 SUBHEADLINE BELOW TITLE CORRECTIVE FIX
   ============================================================ */
.catalog-section .section-header {
    display: flex !important;
    flex-direction: column !important; /* Forces vertical column alignment instead of space-between row */
    align-items: flex-start !important;
    justify-content: flex-start !important;
    text-align: left !important;
    margin-bottom: 40px !important;
}

.catalog-section .section-header h2 {
    margin-bottom: 8px !important;
    font-size: 2.2rem !important;
}

.catalog-section .section-header p {
    margin-top: 0 !important;
    font-size: 1.05rem !important;
    color: var(--text-secondary) !important;
}

/* ============================================================
   V10 MINI CTA BUTTONS INSIDE PORTRAIT CARDS
   ============================================================ */
.netflix-portrait-meta {
    padding: 12px 0 0 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 8px !important;
}

.netflix-portrait-title {
    font-family: var(--font-body) !important;
    font-size: 0.88rem !important;
    font-weight: 600 !important;
    color: rgba(255, 255, 255, 0.9) !important;
    height: 38px !important;
    margin: 0 !important;
    text-align: center !important;
}

.mini-cta-btn {
    display: inline-block !important;
    padding: 6px 14px !important;
    font-size: 0.68rem !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    border-radius: 4px !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    text-align: center !important;
    width: 90% !important;
    max-width: 160px !important;
    margin: 4px auto 0 auto !important;
    cursor: pointer !important;
}

.mini-cta-btn.btn-gold {
    background: #d4b27a !important; /* Gold accent color for 45 Leis */
    color: #050505 !important;
    border: 1px solid #d4b27a !important;
}

.mini-cta-btn.btn-gold:hover {
    background: #c29d63 !important;
    border-color: #c29d63 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(212, 178, 122, 0.25) !important;
}

.mini-cta-btn.btn-green {
    background: #16a34a !important; /* Conversion-vibrant green for books 2-6 */
    color: #ffffff !important;
    border: 1px solid #16a34a !important;
}

.mini-cta-btn.btn-green:hover {
    background: #15803d !important;
    border-color: #15803d !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(22, 163, 74, 0.25) !important;
}


/* ============================================================
   V10 PERFECT SEAMLESS INFINITE TICKER (Horizontal Single-Line)
   ============================================================ */
.ticker-wrapper {
    width: 100% !important;
    overflow: hidden !important;
    background: #090610 !important;
    border-top: 1px solid rgba(212, 178, 122, 0.15) !important;
    border-bottom: 1px solid rgba(212, 178, 122, 0.15) !important;
    padding: 18px 0 !important;
    white-space: nowrap !important;
    position: relative !important;
    z-index: 5 !important;
    display: block !important;
}

.ticker-content {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important; /* Absolutely forces horizontal row layout */
    width: max-content !important;
    animation: ticker-animation-v10 32s linear infinite !important;
    padding-left: 0 !important;
}

.ticker-items {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important; /* Absolutely forces horizontal row layout */
    flex-shrink: 0 !important;
    align-items: center !important;
}

.ticker-content span {
    font-family: var(--font-heading) !important;
    font-size: 0.82rem !important;
    font-weight: 800 !important;
    color: var(--accent-neon) !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    padding: 0 45px !important; /* Beautiful large horizontal space between messages */
    text-shadow: 0 0 8px var(--accent-glow) !important;
    display: inline-block !important;
    white-space: nowrap !important;
}

@keyframes ticker-animation-v10 {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-50%, 0, 0); /* Loops mathematically halfway for twin blocks */
    }
}

/* ============================================================
   V10 SUBHEADLINE BELOW TITLE CORRECTIVE FIX
   ============================================================ */
.catalog-section .section-header {
    display: flex !important;
    flex-direction: column !important; /* Forces vertical column alignment instead of space-between row */
    align-items: flex-start !important;
    justify-content: flex-start !important;
    text-align: left !important;
    margin-bottom: 40px !important;
}

.catalog-section .section-header h2 {
    margin-bottom: 8px !important;
    font-size: 2.2rem !important;
}

.catalog-section .section-header p {
    margin-top: 0 !important;
    font-size: 1.05rem !important;
    color: var(--text-secondary) !important;
}

/* ============================================================
   V10 MINI CTA BUTTONS INSIDE PORTRAIT CARDS (Excalidraw Design)
   ============================================================ */
.netflix-portrait-meta {
    padding: 12px 0 0 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 8px !important;
}

.netflix-portrait-title {
    font-family: var(--font-body) !important;
    font-size: 0.88rem !important;
    font-weight: 600 !important;
    color: rgba(255, 255, 255, 0.9) !important;
    height: 38px !important;
    margin: 0 !important;
    text-align: center !important;
}

.mini-cta-btn {
    display: inline-block !important;
    padding: 6px 14px !important;
    font-size: 0.68rem !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    border-radius: 4px !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    text-align: center !important;
    width: 90% !important;
    max-width: 160px !important;
    margin: 4px auto 0 auto !important;
    cursor: pointer !important;
}

.mini-cta-btn.btn-gold {
    background: #d4b27a !important; /* Gold accent color for 45 Leis */
    color: #050505 !important;
    border: 1px solid #d4b27a !important;
}

.mini-cta-btn.btn-gold:hover {
    background: #c29d63 !important;
    border-color: #c29d63 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(212, 178, 122, 0.25) !important;
}

.mini-cta-btn.btn-green {
    background: #16a34a !important; /* Conversion-vibrant green for books 2-6 */
    color: #ffffff !important;
    border: 1px solid #16a34a !important;
}

.mini-cta-btn.btn-green:hover {
    background: #15803d !important;
    border-color: #15803d !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(22, 163, 74, 0.25) !important;
}


/* ============================================================
   V16 RESPONSIVE TWEAKS & UNIFORM MOBILE SCALING
   ============================================================ */
.netflix-portrait-wrapper img {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

@media (max-width: 600px) {
    .netflix-portrait-grid {
        grid-template-columns: repeat(2, 1fr) !important; /* Elegant 2 columns side by side like premium Netflix mobile app catalog */
        gap: 16px !important;
        padding: 10px 0 !important;
    }
    
    .netflix-portrait-card {
        max-width: 100% !important;
        margin: 0 !important;
    }
    
    .netflix-portrait-title {
        font-size: 0.78rem !important; /* Elegant smaller text for two columns layout */
        height: 34px !important;
        line-height: 1.2 !important;
    }
    
    .mini-cta-btn {
        font-size: 0.6rem !important;
        padding: 5px 8px !important;
        width: 95% !important;
    }
}


/* ============================================================
   V17 TWEAKS: HORIZONTAL MOBILE METRICS, GOLDEN FLAGSHIP CARD,
   AND CONTRAST OVERLAY FOR BACKGROUND VIDEO
   ============================================================ */
@media (max-width: 768px) {
    .metrics-grid {
        grid-template-columns: repeat(3, 1fr) !important; /* Force 3 columns horizontally side-by-side on mobile */
        gap: 12px !important;
        padding: 12px 0 !important;
    }
    .metric-number {
        font-size: 1.45rem !important; /* Harmonious smaller numbers so they fit perfectly */
    }
    .metric-label {
        font-size: 0.6rem !important; /* Elegant smaller uppercase label text */
        letter-spacing: 0.2px !important;
        line-height: 1.25 !important;
    }
    .metric-card:not(:last-child)::after {
        display: block !important; /* Keep elegant vertical lines on mobile view */
        right: -7px !important;
        height: 55% !important;
        top: 22% !important;
    }
}

/* 45 Leis Flagship Ebook High-End Golden Polish */
.card-featured .netflix-portrait-badge {
    background: #d4b27a !important; /* Luxury Golden Accent */
    color: #050505 !important;       /* Dark contrast readable text */
    font-weight: 800 !important;
    border: 1px solid #d4b27a !important;
    box-shadow: 0 0 10px rgba(212, 178, 122, 0.6) !important;
}

.card-featured .netflix-portrait-wrapper {
    border: 2px solid #d4b27a !important; /* Double thickness luxury border */
    box-shadow: 0 10px 30px rgba(212, 178, 122, 0.35) !important; /* Golden underglow accent */
}

.card-featured:hover .netflix-portrait-wrapper {
    border-color: #f3d098 !important; /* Bright golden hover outline */
    box-shadow: 0 15px 40px rgba(212, 178, 122, 0.6) !important;
}

/* Hero Background Contrast optimization */
.hero-video {
    opacity: 0.55 !important; /* Calibrated to 0.22 so that the high-end stardust movement is visible under the dark overlay! */
}
.hero-overlay {
    background: linear-gradient(to bottom, rgba(5, 5, 5, 0.35) 0%, rgba(5, 5, 5, 0.98) 100%) !important; /* Darker luxury vignette */
}
