/* ============================================
   DORAMABEST - Estilos Principais
   ============================================ */

:root {
    --primary: #e94560;
    --primary-dark: #c73e54;
    --secondary: #16213e;
    --dark: #1a1a2e;
    --darker: #0f3460;
    --light: #ffffff;
    --gray: #888888;
    --gray-light: #aaaaaa;
    --success: #25d366;
    --warning: #fdcb6e;
    --error: #ff6b6b;
    --gradient: linear-gradient(135deg, var(--dark) 0%, var(--secondary) 50%, var(--darker) 100%);
    --shadow: 0 10px 40px rgba(0,0,0,0.3);
    --shadow-hover: 0 15px 50px rgba(233, 69, 96, 0.3);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s ease;
}

.hero-cta-panel {
    max-width: 760px;
    margin: 36px auto 0;
    padding: 26px 28px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(11, 15, 31, 0.82), rgba(15, 20, 37, 0.92));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(12px);
}

.hero-cta-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(233, 69, 96, 0.16);
    color: #ff8aa0;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.hero-cta-panel h2 {
    margin: 0 0 12px;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    line-height: 1.1;
}

.hero-cta-panel p {
    margin: 0 auto;
    max-width: 620px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1rem;
}

.hero-cta-actions {
    margin-top: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-cta-primary,
.hero-cta-secondary {
    min-width: 210px;
}

.hero-cta-primary {
    box-shadow: 0 18px 38px rgba(233, 69, 96, 0.28);
}

@media (max-width: 768px) {
    .hero-cta-panel {
        margin-top: 28px;
        padding: 22px 18px;
        border-radius: 24px;
    }

    .hero-cta-panel h2 {
        font-size: 1.55rem;
    }

    .hero-cta-panel p {
        font-size: 0.95rem;
    }

    .hero-cta-actions {
        gap: 10px;
    }

    .hero-cta-primary,
    .hero-cta-secondary {
        width: 100%;
        min-width: 0;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--gradient);
    min-height: 100vh;
    color: var(--light);
    line-height: 1.6;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   HEADER
   ============================================ */
.header {
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--light);
}

.logo-icon {
    font-size: 2rem;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    background: linear-gradient(45deg, var(--primary), #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-desktop {
    display: flex;
    gap: 25px;
}

.nav-link {
    color: var(--light);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    opacity: 0.8;
}

.nav-link:hover {
    color: var(--primary);
    opacity: 1;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.search-form {
    display: flex;
    align-items: center;
    position: relative;
    background: rgba(255,255,255,0.1);
    border-radius: 25px;
    padding: 5px;
    border: 1px solid rgba(255,255,255,0.1);
}

.search-autocomplete-anchor {
    position: relative;
}

.search-autocomplete {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    z-index: 120;
    display: grid;
    gap: 6px;
    padding: 10px;
    border-radius: 18px;
    background: rgba(10,12,20,0.98);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 18px 38px rgba(0,0,0,0.28);
}

.search-autocomplete-item {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 10px;
    border-radius: 14px;
    color: var(--light);
    text-decoration: none;
    transition: var(--transition);
}

.search-autocomplete-item:hover,
.search-autocomplete-item.is-active {
    background: rgba(255,255,255,0.08);
}

.search-autocomplete-media {
    width: 52px;
    height: 52px;
    overflow: hidden;
    border-radius: 12px;
    background: rgba(255,255,255,0.08);
    display: grid;
    place-items: center;
}

.search-autocomplete-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.search-autocomplete-body {
    min-width: 0;
    display: grid;
    gap: 4px;
}

.search-autocomplete-body strong {
    font-size: 0.96rem;
    color: var(--light);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-autocomplete-body span,
.search-autocomplete-empty {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.62);
}

.search-autocomplete-empty {
    padding: 10px 12px;
}

.search-input {
    background: transparent;
    border: none;
    color: var(--light);
    padding: 8px 15px;
    width: 200px;
    outline: none;
}

.search-input::placeholder {
    color: var(--gray);
}

.search-btn {
    background: var(--primary);
    border: none;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.search-btn:hover {
    background: var(--primary-dark);
}

.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--light);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 200;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.mobile-menu.active {
    display: flex;
}

.menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: var(--light);
    font-size: 2rem;
    cursor: pointer;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
}

.mobile-nav-link {
    color: var(--light);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 500;
    transition: var(--transition);
}

.mobile-nav-link:hover {
    color: var(--primary);
}

.mobile-bottom-nav {
    display: none;
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(180deg, rgba(233,69,96,0.2) 0%, transparent 100%);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(18, 23, 42, 0.14) 0%, rgba(18, 23, 42, 0.58) 38%, rgba(18, 23, 42, 0.94) 100%),
        radial-gradient(circle at top center, rgba(233, 69, 96, 0.16), transparent 48%);
    z-index: 1;
}

.hero-backdrop {
    position: absolute;
    inset: -36px -60px auto;
    z-index: 0;
    display: grid;
    gap: 18px;
    opacity: 0.42;
    pointer-events: none;
    transform: rotate(-3deg) scale(1.08);
}

.hero-backdrop-row {
    overflow: hidden;
}

.hero-backdrop-track {
    --poster-gap: 18px;
    display: flex;
    align-items: center;
    gap: var(--poster-gap);
    width: max-content;
    animation: heroBackdropScroll 58s linear infinite;
}

.hero-backdrop-row--reverse .hero-backdrop-track {
    animation-direction: reverse;
    animation-duration: 68s;
}

.hero-backdrop-poster {
    width: 126px;
    aspect-ratio: 2 / 3;
    display: block;
    overflow: hidden;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.34);
}

.hero-backdrop-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(0.92);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 980px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.3rem;
    color: var(--gray-light);
    margin-bottom: 40px;
}

/* ============================================
   AI ASSIST
   ============================================ */
.ai-assist-section {
    padding-top: 0;
}

.ai-assist-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.ai-assist-grid--compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ai-tool-card {
    background: rgba(9, 14, 28, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
    display: grid;
    gap: 16px;
}

.ai-tool-card h3 {
    margin: 0;
    font-size: 1.22rem;
}

.ai-tool-card p {
    margin: 0;
    color: #c8d2ef;
}

.ai-tool-badge {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 122, 69, 0.18);
    color: #ffd1c1;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ai-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.ai-chip-btn {
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    border-radius: 999px;
    padding: 10px 14px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.ai-chip-btn:hover {
    border-color: rgba(233, 69, 96, 0.45);
    background: rgba(233, 69, 96, 0.14);
}

.ai-tool-input-row {
    display: flex;
    gap: 12px;
    align-items: stretch;
}

.ai-tool-input-row input {
    flex: 1;
    min-height: 50px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    padding: 0 16px;
    outline: none;
}

.ai-tool-input-row input::placeholder {
    color: #97a5cf;
}

.ai-tool-result,
.ai-search-results {
    border-radius: 18px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.ai-tool-result.is-success {
    background: rgba(37, 211, 102, 0.12);
    border-color: rgba(37, 211, 102, 0.22);
}

.ai-tool-result.is-error,
.ai-search-results.is-empty {
    background: rgba(233, 69, 96, 0.1);
    border-color: rgba(233, 69, 96, 0.24);
}

.ai-offer-result,
.ai-support-answer {
    display: grid;
    gap: 12px;
}

.ai-result-badge {
    display: inline-flex;
    width: fit-content;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
}

.ai-result-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.ai-search-results {
    display: grid;
    gap: 12px;
}

.ai-search-card {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 14px;
    align-items: center;
    text-decoration: none;
    color: #fff;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 12px;
}

.ai-search-card-media {
    width: 72px;
    height: 96px;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.06);
    display: grid;
    place-items: center;
}

.ai-search-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ai-search-card-body {
    display: grid;
    gap: 6px;
}

.ai-search-card-body span {
    color: #ff9db0;
    font-size: 0.86rem;
    font-weight: 600;
}

.ai-search-card-body small {
    color: #b7c1df;
    line-height: 1.5;
}

.film-related-reason {
    margin-top: 8px;
    color: #9fb2e8;
    font-size: 0.82rem;
    line-height: 1.45;
}

.film-ai-showcase {
    margin-top: 28px;
    padding: 32px;
}

.film-ai-header {
    margin-bottom: 28px;
    text-align: center;
}

.film-ai-header h2 {
    margin: 0 0 12px;
    color: #fff;
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.1;
}

.film-ai-header p {
    margin: 0;
    color: #b7c1df;
    font-size: 1rem;
    line-height: 1.6;
}

@media (max-width: 980px) {
    .ai-assist-grid,
    .ai-assist-grid--compact {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .film-ai-showcase {
        margin-top: 20px;
        padding: 22px 16px;
    }

    .film-ai-header {
        margin-bottom: 22px;
    }

    .film-ai-header h2 {
        font-size: 1.9rem;
    }

    .film-ai-header p {
        font-size: 0.94rem;
    }

    .ai-tool-card {
        padding: 18px;
        gap: 14px;
    }

    .ai-tool-input-row {
        flex-direction: column;
    }

    .ai-chip-row {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .ai-chip-btn {
        white-space: nowrap;
    }

    .ai-search-card {
        grid-template-columns: 58px 1fr;
    }

    .ai-search-card-media {
        width: 58px;
        height: 82px;
    }
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.ad-slot {
    width: 100%;
    margin: 18px 0 10px;
}

.ad-slot-card {
    overflow: hidden;
    border-radius: 22px;
    background: rgba(9, 14, 28, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.2);
}

.ad-slot-card img {
    width: 100%;
    display: block;
    height: auto;
    object-fit: contain;
}

.ad-slot--banner .ad-slot-card img {
    aspect-ratio: auto;
}

.ad-slot--native_banner .ad-slot-card img {
    aspect-ratio: 16 / 4;
}

.home-inline-ad {
    margin: 18px 0 4px;
}

.film-inline-ad {
    margin-top: 4px;
}

.footer-top-ad {
    margin: 24px auto 12px;
    max-width: 1120px;
    padding: 0 16px;
}

.film-social-bar-slot {
    margin-top: 8px;
}

.ad-slot--native_banner .ad-slot-card {
    background: linear-gradient(135deg, rgba(10, 18, 40, 0.92), rgba(20, 27, 49, 0.92));
}

.ad-slot-code {
    width: 100%;
}

.ad-slot--network-iframe {
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
}

.ad-slot-frame {
    display: block;
    width: 100%;
    border: 0;
    background: transparent;
    overflow: hidden;
}

.ad-slot-responsive {
    width: 100%;
    text-align: center;
}

.ad-slot-responsive--mobile {
    display: none;
}

@media (max-width: 767px) {
    .ad-slot-responsive--desktop {
        display: none;
    }

    .ad-slot-responsive--mobile {
        display: block;
    }
}

@keyframes heroBackdropScroll {
    from {
        transform: translate3d(0, 0, 0);
    }
    to {
        transform: translate3d(-50%, 0, 0);
    }
}

.stat-item {
    text-align: center;
}

.stat-item i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.stat-item h3 {
    font-size: 2rem;
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 0.9rem;
    margin: 0;
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.section-title p {
    color: var(--gray-light);
}

/* ============================================
   PRICING
   ============================================ */
.pricing-section {
    padding: 30px 0 70px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}

.home-sales-strip {
    padding-top: 0;
}

.sales-points-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.sales-point-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px 22px;
    border-radius: 22px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 18px 36px rgba(0,0,0,0.14);
}

.sales-point-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.22), rgba(255, 122, 69, 0.18));
    color: #ffdce3;
    font-size: 1rem;
}

.sales-point-copy h3 {
    margin: 0 0 6px;
    font-size: 1.05rem;
}

.sales-point-copy p {
    margin: 0;
    color: var(--gray-light);
    line-height: 1.6;
}

.pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 22px;
    padding: 28px 24px;
    background: linear-gradient(180deg, rgba(30, 30, 63, 0.96), rgba(17, 18, 40, 0.98));
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.pricing-card.popular {
    transform: translateY(-10px);
    border-color: rgba(233, 69, 96, 0.75);
    box-shadow: var(--shadow-hover);
}

.pricing-card.lifetime {
    border-color: rgba(253, 203, 110, 0.45);
}

.pricing-header {
    text-align: center;
}

.pricing-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    color: var(--gray-light);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.pricing-header h3 {
    margin-top: 16px;
    font-size: 1.65rem;
}

.pricing-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 6px;
    margin-top: 14px;
}

.pricing-price .currency {
    margin-top: 10px;
    color: var(--gray-light);
    font-weight: 700;
}

.pricing-price .amount {
    font-size: 2.6rem;
    line-height: 1;
    font-weight: 800;
}

.pricing-features {
    flex: 1;
}

.pricing-features ul {
    list-style: none;
    display: grid;
    gap: 12px;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--gray-light);
}

.pricing-features li i {
    color: var(--success);
    margin-top: 4px;
    flex-shrink: 0;
}

.btn-pricing {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 18px;
    border-radius: 14px;
    text-decoration: none;
    color: white;
    font-weight: 700;
    background: linear-gradient(45deg, var(--primary), #ff6b6b);
    box-shadow: 0 12px 28px rgba(233, 69, 96, 0.28);
    transition: var(--transition);
}

.btn-pricing:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(233, 69, 96, 0.34);
}

.popular-tag {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(233, 69, 96, 0.16);
    color: #ff9bad;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* ============================================
   FILTROS
   ============================================ */
.filtros {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 30px;
}

.catalog-toolbar-shell {
    margin-bottom: 24px;
}

.catalog-mobile-search-sticky {
    display: none;
}

.catalog-mobile-search-form {
    display: flex;
    gap: 10px;
    align-items: center;
    position: relative;
}

.catalog-mobile-search-form .catalog-search-field {
    flex: 1;
    min-width: 0;
}

.catalog-mobile-search-submit {
    width: 54px;
    height: 54px;
    border: none;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff5c7a, #ff7a45);
    color: #fff;
    cursor: pointer;
    box-shadow: 0 14px 26px rgba(233, 69, 96, 0.24);
}

.catalog-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    position: relative;
    padding: 18px;
    border-radius: 22px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 18px 40px rgba(0,0,0,0.18);
    backdrop-filter: blur(18px);
}

.catalog-toolbar-main {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(220px, 0.8fr);
    gap: 14px;
    flex: 1;
}

.catalog-search-field,
.catalog-select-field {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 56px;
    padding: 0 16px;
    border-radius: 16px;
    background: rgba(10, 14, 28, 0.6);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--light);
}

.catalog-search-field i,
.catalog-select-field i {
    color: rgba(255,255,255,0.74);
}

.catalog-search-field input,
.catalog-select-field select {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    color: var(--light);
    font-size: 0.98rem;
}

.catalog-search-field input::placeholder {
    color: rgba(255,255,255,0.4);
}

.catalog-select-field select {
    appearance: none;
    cursor: pointer;
}

.catalog-select-field select option {
    color: #111827;
}

.catalog-toolbar-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.catalog-sort-row {
    display: flex;
    gap: 10px;
    margin-top: 14px;
    flex-wrap: wrap;
}

.catalog-sort-btn {
    min-height: 44px;
    padding: 0 16px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--light);
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition);
    font-weight: 700;
}

.catalog-sort-btn.active,
.catalog-sort-btn:hover {
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.22), rgba(255, 122, 69, 0.22));
    border-color: rgba(255,255,255,0.18);
    box-shadow: 0 12px 24px rgba(0,0,0,0.14);
}

.catalog-toolbar-btn {
    min-height: 52px;
    padding: 0 18px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-weight: 700;
    transition: var(--transition);
}

.catalog-toolbar-btn.primary {
    background: linear-gradient(135deg, #ff5c7a, #ff7a45);
    color: #fff;
    box-shadow: 0 14px 26px rgba(233, 69, 96, 0.28);
}

.catalog-toolbar-btn.primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 30px rgba(233, 69, 96, 0.32);
}

.catalog-toolbar-btn.ghost {
    background: rgba(255,255,255,0.08);
    color: var(--light);
    border: 1px solid rgba(255,255,255,0.1);
}

.filtro-btn {
    padding: 8px 20px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 25px;
    color: var(--light);
    text-decoration: none;
    transition: var(--transition);
}

.filtro-btn:hover,
.filtro-btn.active {
    background: var(--primary);
    border-color: var(--primary);
}

.filtros-home {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 6px;
    scrollbar-width: none;
}

.filtros-home::-webkit-scrollbar {
    display: none;
}

.filtros-home .filtro-btn {
    white-space: nowrap;
    flex: 0 0 auto;
    cursor: pointer;
}

/* ============================================
   FILMES GRID
   ============================================ */
.filmes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 25px;
}

.banner-card {
    grid-column: 1 / -1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    background: linear-gradient(145deg, #1e1e3f, #2d2d5a);
    box-shadow: var(--shadow);
}

.banner-card a,
.banner-card img {
    display: block;
    width: 100%;
}

.banner-card img {
    aspect-ratio: 16 / 4;
    object-fit: cover;
}

.filme-card {
    background: linear-gradient(145deg, #1e1e3f, #2d2d5a);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
    color: var(--light);
    border: 2px solid transparent;
}

.filme-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: var(--shadow-hover);
}

.filme-poster {
    aspect-ratio: 9/14;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary), #ff6b6b);
}

.filme-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.filme-card:hover .filme-poster img {
    transform: scale(1.05);
}

.filme-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.filme-genero {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--primary);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
}

.filme-free-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, #17c964, #0ea85a);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    box-shadow: 0 10px 24px rgba(23, 201, 100, 0.28);
    z-index: 2;
}

.filme-free-badge i {
    font-size: 0.72rem;
}

.filme-info {
    padding: 15px;
}

.filme-titulo {
    font-size: 0.95rem;
    margin-bottom: 10px;
    line-height: 1.4;
    height: 42px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.filme-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.filme-ano {
    color: var(--gray);
    font-size: 0.85rem;
}

.filme-tag {
    background: var(--primary);
    padding: 3px 10px;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 600;
}

.home-genre-sections {
    display: grid;
    gap: 28px;
    min-width: 0;
}

.genre-carousel-section {
    padding: 24px;
    border-radius: 24px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 18px 34px rgba(0,0,0,0.18);
    overflow: hidden;
    min-width: 0;
}

.genre-carousel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.genre-carousel-copy h3 {
    margin: 0 0 6px;
    font-size: 1.35rem;
}

.genre-carousel-copy p {
    margin: 0;
    color: var(--gray);
}

.genre-carousel-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.genre-carousel-link {
    padding: 10px 16px;
    border-radius: 999px;
    text-decoration: none;
    color: var(--light);
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.06);
    font-weight: 700;
}

.genre-carousel-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.genre-carousel-nav-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.06);
    color: var(--light);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.genre-carousel-nav-btn:hover {
    background: rgba(233, 69, 96, 0.18);
    border-color: rgba(233, 69, 96, 0.3);
}

.genre-carousel-track {
    display: flex;
    gap: 18px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 8px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.genre-carousel-track::-webkit-scrollbar {
    display: none;
}

.genre-carousel-empty {
    padding: 18px;
    border-radius: 18px;
    background: rgba(255,255,255,0.04);
    border: 1px dashed rgba(255,255,255,0.12);
    color: var(--gray);
}

.genre-carousel-item {
    flex: 0 0 calc((100% - (18px * 4)) / 5);
    width: calc((100% - (18px * 4)) / 5);
    min-width: calc((100% - (18px * 4)) / 5);
    max-width: calc((100% - (18px * 4)) / 5);
    scroll-snap-align: start;
}

.genre-carousel-item .filme-card {
    width: 100%;
    height: 100%;
}

@media (min-width: 1440px) {
    .genre-carousel-item {
        flex: 0 0 calc((100% - (18px * 5)) / 6);
        width: calc((100% - (18px * 5)) / 6);
        min-width: calc((100% - (18px * 5)) / 6);
        max-width: calc((100% - (18px * 5)) / 6);
    }
}

@media (min-width: 992px) and (max-width: 1279px) {
    .genre-carousel-item {
        flex: 0 0 calc((100% - (18px * 3)) / 4);
        width: calc((100% - (18px * 3)) / 4);
        min-width: calc((100% - (18px * 3)) / 4);
        max-width: calc((100% - (18px * 3)) / 4);
    }
}

/* ============================================
   EMPTY STATE
   ============================================ */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--gray);
}

.empty-state i {
    font-size: 4rem;
    margin-bottom: 20px;
    display: block;
}

.section-title--left {
    text-align: left;
    margin-bottom: 22px;
}

.home-social-proof-section {
    padding: 0 0 70px;
}

.home-social-proof-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 24px;
    align-items: start;
}

.home-comments-panel,
.home-questions-panel {
    padding: 28px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(11, 18, 38, 0.96) 0%, rgba(15, 24, 49, 0.92) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 52px rgba(0, 0, 0, 0.22);
}

.home-comments-list,
.home-questions-list {
    display: grid;
    gap: 16px;
}

.home-comment-card {
    padding: 18px 18px 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.home-comment-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}

.home-comment-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff5f7a 0%, #7c5cff 100%);
    color: #fff;
    font-weight: 800;
    font-size: 1rem;
    flex: 0 0 46px;
}

.home-comment-meta {
    display: grid;
    gap: 3px;
}

.home-comment-meta strong {
    color: #fff;
    font-size: 1rem;
}

.home-comment-meta span {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.84rem;
}

.home-comment-pill {
    margin-left: auto;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffd8df;
    font-size: 0.78rem;
    font-weight: 700;
    white-space: nowrap;
}

.home-comment-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.7;
}

.home-question-item {
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    overflow: hidden;
}

.home-question-item summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 20px;
    color: #fff;
    font-weight: 700;
}

.home-question-item summary::-webkit-details-marker {
    display: none;
}

.home-question-item summary i {
    color: rgba(255, 255, 255, 0.7);
    transition: transform 0.2s ease;
}

.home-question-item[open] summary i {
    transform: rotate(45deg);
}

.home-question-answer {
    padding: 0 20px 18px;
}

.home-question-answer p {
    margin: 0;
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.7;
}

/* ============================================
   PAGINAÇÃO
   ============================================ */
.paginacao {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.paginacao-btn {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    color: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.paginacao-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.paginacao-info {
    color: var(--gray-light);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(145deg, rgba(233,69,96,0.1), rgba(22,33,62,0.5));
    border-top: 1px solid rgba(255,255,255,0.1);
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-content p {
    color: var(--gray-light);
    margin-bottom: 30px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    background: linear-gradient(45deg, var(--primary), #ff6b6b);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(233, 69, 96, 0.4);
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-page {
    padding: 70px 0;
    background:
        radial-gradient(circle at top left, rgba(233, 69, 96, 0.18), transparent 34%),
        radial-gradient(circle at bottom right, rgba(15, 52, 96, 0.45), transparent 40%);
}

.legal-container {
    max-width: 980px;
}

.legal-hero {
    margin-bottom: 28px;
    padding: 34px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-lg);
    background: rgba(0,0,0,0.24);
    box-shadow: var(--shadow);
}

.legal-eyebrow {
    display: inline-flex;
    margin-bottom: 12px;
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.legal-hero h1 {
    margin-bottom: 14px;
    font-size: clamp(2rem, 5vw, 3.4rem);
    line-height: 1.05;
}

.legal-hero p,
.legal-card p {
    color: var(--gray-light);
}

.legal-updated {
    display: inline-flex;
    margin-top: 18px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    color: var(--light);
    font-size: 0.9rem;
}

.legal-card {
    padding: 34px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-lg);
    background: rgba(10, 14, 31, 0.86);
    box-shadow: var(--shadow);
}

.legal-card h2 {
    margin: 30px 0 10px;
    color: var(--light);
    font-size: 1.2rem;
}

.legal-card h2:first-child {
    margin-top: 0;
}

.pwa-page {
    padding: 70px 0;
    background:
        radial-gradient(circle at top left, rgba(233, 69, 96, 0.18), transparent 34%),
        radial-gradient(circle at bottom right, rgba(15, 52, 96, 0.45), transparent 40%);
}

.pwa-page__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    gap: 28px;
}

.pwa-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
    gap: 24px;
}

.pwa-hero__copy,
.pwa-preview-card,
.pwa-guide-card,
.pwa-faq__item {
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 28px;
    background: rgba(10, 14, 31, 0.86);
    box-shadow: var(--shadow);
}

.pwa-hero__copy {
    padding: 34px;
}

.pwa-eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(233, 69, 96, 0.16);
    color: #ff8ea3;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.pwa-hero__copy h1 {
    margin: 18px 0 14px;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    line-height: 1.05;
}

.pwa-hero__copy p {
    margin: 0;
    color: var(--gray-light);
    font-size: 1.05rem;
    line-height: 1.7;
}

.pwa-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.pwa-install-button,
.pwa-outline-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 800;
    text-decoration: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.pwa-install-button {
    border: none;
    background: linear-gradient(135deg, #ff4d6d, #ff7a59);
    color: #fff;
    box-shadow: 0 18px 34px rgba(255, 89, 115, 0.22);
    cursor: pointer;
}

.pwa-install-button:hover:not(:disabled),
.pwa-outline-button:hover {
    transform: translateY(-1px);
}

.pwa-install-button:disabled {
    opacity: 0.72;
    cursor: default;
    box-shadow: none;
}

.pwa-outline-button {
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.04);
    color: #fff;
}

.pwa-status {
    margin-top: 22px;
    padding: 18px 20px;
    border-radius: 20px;
    background: rgba(255,255,255,0.04);
}

.pwa-status__badge {
    display: inline-flex;
    align-items: center;
    margin-bottom: 10px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.1);
    color: #fff;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.pwa-status p {
    margin: 0;
    color: #d7def0;
    line-height: 1.6;
}

.pwa-preview-card {
    padding: 30px;
    display: grid;
    align-content: start;
    gap: 14px;
}

.pwa-preview-card__badge {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(37, 211, 102, 0.14);
    color: #7ee2a8;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.pwa-preview-card h2 {
    margin: 0;
    font-size: 1.7rem;
}

.pwa-preview-card ul {
    margin: 0;
    padding-left: 18px;
    color: var(--gray-light);
    line-height: 1.8;
}

.pwa-guides,
.pwa-faq {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.pwa-guide-card,
.pwa-faq__item {
    padding: 26px;
}

.pwa-guide-card__icon {
    display: inline-grid;
    place-items: center;
    width: 52px;
    height: 52px;
    margin-bottom: 16px;
    border-radius: 18px;
    background: rgba(255,255,255,0.06);
    color: #fff;
    font-size: 1.35rem;
}

.pwa-guide-card h3,
.pwa-faq__item h3 {
    margin: 0 0 12px;
    font-size: 1.18rem;
}

.pwa-guide-card ol,
.pwa-faq__item p {
    margin: 0;
    color: var(--gray-light);
    line-height: 1.7;
}

.pwa-guide-card ol {
    padding-left: 18px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: #06070d;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 28px 0 18px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 18px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
}

.footer-brand {
    max-width: 420px;
}

.footer-brand-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--light);
    text-decoration: none;
    font-weight: 800;
}

.footer-brand p {
    color: rgba(255,255,255,0.65);
    margin-top: 10px;
    line-height: 1.6;
}

.footer-channel-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 16px;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 14px;
    background: linear-gradient(135deg, #25d366, #16b85a);
    color: #07120c;
    text-decoration: none;
    font-weight: 800;
    box-shadow: 0 14px 30px rgba(37, 211, 102, 0.24);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.footer-channel-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 34px rgba(37, 211, 102, 0.32);
}

.footer-links {
    display: flex;
    gap: 40px;
}

.footer-column h4 {
    margin-bottom: 12px;
    color: var(--light);
    font-size: 0.95rem;
}

.footer-column a {
    display: block;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    margin-bottom: 8px;
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    margin-top: 0;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.5);
}

.channel-popup-open {
    overflow: hidden;
}

.channel-popup[hidden] {
    display: none;
}

.channel-popup {
    position: fixed;
    inset: 0;
    z-index: 1100;
}

.channel-popup-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5, 10, 24, 0.72);
    backdrop-filter: blur(6px);
}

.channel-popup-card {
    position: relative;
    width: min(92vw, 460px);
    margin: min(16vh, 120px) auto 0;
    background: linear-gradient(180deg, rgba(12, 18, 38, 0.98), rgba(8, 13, 31, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
    padding: 28px 24px 24px;
    color: #f8fbff;
}

.channel-popup-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 1.4rem;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.channel-popup-close:hover {
    background: rgba(255, 255, 255, 0.16);
    transform: scale(1.04);
}

.channel-popup-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(37, 211, 102, 0.14);
    border: 1px solid rgba(37, 211, 102, 0.28);
    color: #88f7af;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.channel-popup-card h3 {
    margin: 18px 0 12px;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    line-height: 1.05;
}

.channel-popup-card p {
    margin: 0;
    color: rgba(236, 242, 255, 0.82);
    font-size: 1rem;
    line-height: 1.65;
}

.channel-popup-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 22px;
}

.channel-popup-primary,
.channel-popup-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    border-radius: 16px;
    padding: 0 18px;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.channel-popup-primary {
    border: none;
    background: linear-gradient(135deg, #25d366, #16b85a);
    color: #07120c;
    box-shadow: 0 14px 30px rgba(37, 211, 102, 0.28);
}

.channel-popup-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 34px rgba(37, 211, 102, 0.35);
}

.channel-popup-secondary {
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    color: #f8fbff;
}

.channel-popup-secondary:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.12);
}

.renewal-popup-open {
    overflow: hidden;
}

.renewal-popup[hidden] {
    display: none;
}

.renewal-popup {
    position: fixed;
    inset: 0;
    z-index: 1150;
}

.renewal-popup-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5, 10, 24, 0.76);
    backdrop-filter: blur(6px);
}

.renewal-popup-card {
    position: relative;
    width: min(92vw, 460px);
    margin: min(15vh, 104px) auto 0;
    background: linear-gradient(180deg, rgba(18, 24, 50, 0.99), rgba(10, 15, 34, 0.99));
    border: 1px solid rgba(233, 69, 96, 0.22);
    border-radius: 28px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
    padding: 28px 24px 24px;
    color: #f8fbff;
}

.renewal-popup-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 1.4rem;
    cursor: pointer;
}

.renewal-popup-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(233, 69, 96, 0.16);
    border: 1px solid rgba(233, 69, 96, 0.3);
    color: #ff9cad;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.renewal-popup-card h3 {
    margin: 18px 0 12px;
    font-size: clamp(1.5rem, 3vw, 2rem);
    line-height: 1.08;
}

.renewal-popup-card p {
    margin: 0;
    color: rgba(236, 242, 255, 0.82);
    font-size: 1rem;
    line-height: 1.65;
}

.renewal-popup-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 22px;
}

.renewal-popup-primary,
.renewal-popup-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    border-radius: 16px;
    padding: 0 18px;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
}

.renewal-popup-primary {
    border: none;
    background: linear-gradient(135deg, #ff6b75, #e94560);
    color: #fff;
    box-shadow: 0 14px 30px rgba(233, 69, 96, 0.28);
}

.renewal-popup-secondary {
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    color: #f8fbff;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
    .pricing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .renewal-popup-card {
        width: min(92vw, 420px);
        margin-top: 84px;
        padding: 24px 18px 18px;
    }

    .renewal-popup-actions {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    body {
        padding-bottom: 108px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-backdrop {
        inset: -12px -36px auto;
        gap: 12px;
        opacity: 0.26;
        transform: rotate(-2deg) scale(1.04);
    }

    .hero-backdrop-track {
        --poster-gap: 12px;
        animation-duration: 44s;
    }

    .hero-backdrop-row--reverse .hero-backdrop-track {
        animation-duration: 52s;
    }

    .hero-backdrop-poster {
        width: 82px;
        border-radius: 14px;
    }
    
    .nav-desktop {
        display: none;
    }
    
    .menu-toggle {
        display: none;
    }
    
    .search-form {
        display: none;
    }

    .mobile-bottom-nav {
        display: block;
        position: fixed;
        left: 0;
        right: 0;
        bottom: max(12px, env(safe-area-inset-bottom));
        z-index: 140;
        pointer-events: none;
    }

    .mobile-bottom-nav__inner {
        width: min(92vw, 540px);
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(6, minmax(0, 1fr));
        align-items: center;
        gap: 4px;
        min-height: 70px;
        padding: 8px 10px;
        border-radius: 999px;
        background:
            radial-gradient(circle at 50% 50%, rgba(111, 91, 255, 0.18), rgba(111, 91, 255, 0) 42%),
            linear-gradient(180deg, rgba(10, 14, 30, 0.97), rgba(6, 9, 20, 0.97));
        border: 1px solid rgba(255,255,255,0.08);
        box-shadow: 0 18px 42px rgba(0,0,0,0.38);
        backdrop-filter: blur(16px);
        pointer-events: auto;
    }

    .mobile-bottom-nav__item {
        appearance: none;
        background: transparent;
        border: none;
        color: rgba(239, 244, 255, 0.74);
        text-decoration: none;
        min-height: 50px;
        border-radius: 18px;
        display: grid;
        place-items: center;
        gap: 4px;
        padding: 4px 0;
        transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
    }

    .mobile-bottom-nav__item i {
        font-size: 1.08rem;
    }

    .mobile-bottom-nav__item span {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 1.55em;
        font-size: 0.64rem;
        font-weight: 700;
        letter-spacing: 0.01em;
        line-height: 1.05;
        text-align: center;
    }

    .mobile-bottom-nav__item--account {
        gap: 3px;
    }

    .mobile-bottom-nav__item--account i {
        transform: translateY(2px);
    }

    .mobile-bottom-nav__item--account span {
        min-height: 2.2em;
        font-size: 0.6rem;
    }

    .mobile-bottom-nav__item.is-active {
        color: #ffffff;
        background: linear-gradient(135deg, rgba(88, 73, 165, 0.34), rgba(46, 36, 93, 0.08));
        box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04);
    }

    .mobile-bottom-nav__item:active {
        transform: scale(0.96);
    }
    
    .hero-stats {
        gap: 30px;
    }

    .pricing-section {
        padding: 15px 0 50px;
    }

    .pricing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .pricing-card {
        gap: 16px;
        padding: 18px 14px;
        border-radius: 20px;
    }

    .pricing-card.popular {
        transform: none;
    }

    .pricing-badge {
        padding: 5px 9px;
        font-size: 0.66rem;
    }

    .pricing-header h3 {
        margin-top: 12px;
        font-size: 1.12rem;
        line-height: 1.15;
    }

    .pricing-price {
        gap: 4px;
        margin-top: 10px;
    }

    .pricing-price .currency {
        margin-top: 8px;
        font-size: 0.82rem;
    }

    .pricing-price .amount {
        font-size: 1.95rem;
    }

    .pricing-features ul {
        gap: 8px;
    }

    .pricing-features li {
        gap: 8px;
        font-size: 0.84rem;
        line-height: 1.35;
    }

    .btn-pricing {
        min-height: 44px;
        padding: 12px;
        border-radius: 12px;
        font-size: 0.9rem;
    }

    .popular-tag {
        top: 10px;
        right: 10px;
        padding: 5px 8px;
        font-size: 0.62rem;
    }
    
    .filmes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .catalog-mobile-search-sticky {
        display: block;
        position: sticky;
        top: calc(env(safe-area-inset-top, 0px) + 8px);
        z-index: 8;
        margin-bottom: 10px;
    }

    .catalog-mobile-search-form {
        padding: 10px;
        border-radius: 18px;
        background: rgba(9, 13, 29, 0.92);
        border: 1px solid rgba(255,255,255,0.08);
        box-shadow: 0 16px 32px rgba(0,0,0,0.24);
        backdrop-filter: blur(16px);
    }

    .catalog-toolbar-shell {
        position: static;
        top: auto;
        z-index: auto;
    }

    .catalog-toolbar {
        flex-direction: column;
        align-items: stretch;
        padding: 16px;
        border-radius: 20px;
    }

    .catalog-toolbar-main {
        grid-template-columns: 1fr;
    }

    .catalog-toolbar-main .catalog-search-field {
        display: none;
    }

    .catalog-toolbar-actions {
        width: 100%;
    }

    .catalog-toolbar-btn {
        flex: 1 1 0;
    }

    .catalog-sort-row {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 4px;
        scrollbar-width: none;
    }

    .catalog-sort-row::-webkit-scrollbar {
        display: none;
    }

    .catalog-sort-btn {
        flex: 0 0 auto;
        white-space: nowrap;
    }

    .filtros {
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 6px;
        margin: 0 -4px 24px;
        scrollbar-width: none;
    }

    .filtros::-webkit-scrollbar {
        display: none;
    }

    .filtro-btn {
        white-space: nowrap;
        flex: 0 0 auto;
    }

    .home-genre-sections {
        gap: 20px;
    }

    .genre-carousel-section {
        padding: 18px 16px;
        border-radius: 20px;
    }

    .genre-carousel-header {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .genre-carousel-actions {
        justify-content: space-between;
    }

    .genre-carousel-nav {
        display: none;
    }

    .genre-carousel-track {
        gap: 14px;
        padding-bottom: 6px;
    }

    .genre-carousel-item {
        flex: 0 0 calc((100% - (14px * 2)) / 3);
        width: calc((100% - (14px * 2)) / 3);
        min-width: calc((100% - (14px * 2)) / 3);
        max-width: calc((100% - (14px * 2)) / 3);
    }

    .sales-points-grid {
        grid-template-columns: 1fr;
    }

    .banner-card img {
        aspect-ratio: 16 / 5;
    }
    
    .footer-container {
        flex-direction: column;
        text-align: left;
    }

    .footer-links {
        width: 100%;
        justify-content: space-between;
        gap: 20px;
    }
    
}

@media (max-width: 640px) {
    .footer {
        padding-top: 24px;
    }

    .footer-links {
        flex-direction: column;
        gap: 18px;
    }

    .footer-bottom {
        padding-top: 14px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    body {
        padding-bottom: 102px;
    }

    .mobile-bottom-nav__inner {
        width: calc(100vw - 24px);
        gap: 2px;
        min-height: 64px;
        padding: 7px 8px;
    }

    .mobile-bottom-nav__item span {
        font-size: 0.6rem;
    }

    .mobile-bottom-nav__item--account span {
        font-size: 0.58rem;
    }
}

@media (max-width: 480px) {
    .pricing-grid {
        gap: 10px;
    }

    .pricing-card {
        gap: 14px;
        padding: 16px 12px;
    }

    .pricing-header h3 {
        font-size: 1rem;
    }

    .pricing-price .amount {
        font-size: 1.75rem;
    }

    .pricing-features li {
    font-size: 0.8rem;
}

.filme-status-badge {
    position: absolute;
    right: 10px;
    bottom: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(255, 184, 0, 0.95), rgba(255, 110, 64, 0.95));
    color: #fff;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.28);
}

    .btn-pricing {
        padding: 10px;
        font-size: 0.84rem;
    }

    .catalog-mobile-search-form .catalog-search-field {
        min-height: 50px;
        padding: 0 14px;
        border-radius: 14px;
    }

    .catalog-mobile-search-submit {
        width: 50px;
        height: 50px;
        border-radius: 14px;
    }

    .catalog-toolbar {
        padding: 14px;
        border-radius: 18px;
    }

    .catalog-search-field,
    .catalog-select-field {
        min-height: 52px;
        padding: 0 14px;
    }

    .catalog-toolbar-actions {
        flex-direction: column;
    }

    .catalog-toolbar-btn {
        width: 100%;
    }

    .catalog-sort-btn {
        min-height: 42px;
    }

    .genre-carousel-link {
        padding: 9px 14px;
        font-size: 0.9rem;
    }

    .genre-carousel-track {
        gap: 12px;
    }

    .genre-carousel-item {
        flex: 0 0 calc((100% - 12px) / 2);
        width: calc((100% - 12px) / 2);
        min-width: calc((100% - 12px) / 2);
        max-width: calc((100% - 12px) / 2);
    }

    .sales-point-card {
        padding: 18px;
        border-radius: 18px;
    }

    .channel-popup-card {
        width: min(94vw, 94vw);
        margin-top: 10vh;
        padding: 24px 18px 18px;
        border-radius: 22px;
    }

    .channel-popup-actions {
        grid-template-columns: 1fr;
    }
}

.pricing-actions {
    display: grid;
    gap: 10px;
}

/* ============================================
   USER ACCESS / MINHA CONTA
   ============================================ */
.user-access-page,
.user-profile-page {
    padding-top: 36px;
    padding-bottom: 120px;
}

.user-access-card {
    max-width: 560px;
    margin: 0 auto;
}

.user-access-hero {
    max-width: 920px;
    margin: 0 auto 24px;
}

.user-access-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.user-access-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.user-access-form label {
    font-size: 1rem;
    font-weight: 700;
    color: var(--light);
}

.user-access-input {
    width: 100%;
    min-height: 60px;
    padding: 0 18px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(255,255,255,0.06);
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-align: center;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.user-access-input:focus {
    border-color: rgba(255,255,255,0.34);
    box-shadow: 0 0 0 4px rgba(233, 69, 96, 0.12);
    background: rgba(255,255,255,0.09);
}

.user-access-submit {
    width: 100%;
    justify-content: center;
}

.user-access-feedback,
.perfil-alert {
    margin-top: 16px;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.1);
    font-size: 0.95rem;
    line-height: 1.5;
}

.user-access-feedback.is-error,
.perfil-alert.is-error {
    color: #ffd5db;
    background: rgba(233, 69, 96, 0.14);
    border-color: rgba(233, 69, 96, 0.28);
}

.user-access-feedback.is-success,
.perfil-alert.is-success {
    color: #d7ffe6;
    background: rgba(39, 174, 96, 0.14);
    border-color: rgba(39, 174, 96, 0.28);
}

.user-access-actions {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.perfil-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.perfil-header,
.perfil-card,
.perfil-section {
    padding: 28px;
    border-radius: 28px;
    background: rgba(16, 20, 42, 0.92);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 24px 48px rgba(0,0,0,0.2);
}

.perfil-header {
    display: flex;
    align-items: center;
    gap: 22px;
}

.perfil-avatar {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    background: linear-gradient(135deg, #ff5c7a, #ff7a45);
    color: #fff;
    font-size: 2rem;
    font-weight: 800;
    box-shadow: 0 18px 32px rgba(233, 69, 96, 0.28);
}

.perfil-eyebrow {
    display: inline-flex;
    margin-bottom: 10px;
    color: #ff7a92;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.78rem;
    font-weight: 800;
}

.perfil-info h1 {
    margin-bottom: 10px;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.05;
}

.perfil-info p {
    max-width: 740px;
    color: var(--gray-light);
    line-height: 1.6;
}

.perfil-header-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    font-size: 0.84rem;
    font-weight: 800;
    margin-top: 14px;
}

.badge-success {
    color: #d7ffe6;
    background: rgba(39, 174, 96, 0.14);
    border: 1px solid rgba(39, 174, 96, 0.3);
}

.badge-danger {
    color: #ffd5db;
    background: rgba(233, 69, 96, 0.14);
    border: 1px solid rgba(233, 69, 96, 0.3);
}

.badge-warning {
    color: #ffe8b3;
    background: rgba(253, 203, 110, 0.14);
    border: 1px solid rgba(253, 203, 110, 0.3);
}

.perfil-plan-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    color: #fff1d6;
    background: rgba(253, 203, 110, 0.14);
    border: 1px solid rgba(253, 203, 110, 0.26);
    font-size: 0.84rem;
    font-weight: 800;
}

.perfil-grid,
.perfil-sections-grid,
.perfil-plans-grid,
.perfil-media-grid {
    display: grid;
    gap: 20px;
}

.perfil-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.perfil-card {
    display: flex;
    align-items: center;
    gap: 18px;
}

.perfil-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    color: #fff;
    font-size: 1.35rem;
}

.perfil-card-icon--password {
    background: linear-gradient(135deg, #e94560, #ff6b6b);
}

.perfil-card-icon--calendar {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.perfil-card-icon--watch {
    background: linear-gradient(135deg, #27ae60, #229954);
}

.perfil-card-content {
    min-width: 0;
    flex: 1;
}

.perfil-card-content h3 {
    margin-bottom: 12px;
    font-size: 1.05rem;
}

.perfil-code-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 18px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
}

.perfil-code-box code {
    font-size: 1.9rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.08em;
}

.perfil-copy-btn {
    appearance: none;
    border: none;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 12px;
    background: rgba(255,255,255,0.1);
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    cursor: pointer;
}

.perfil-card-hint,
.perfil-plan-card p,
.perfil-section-head span {
    color: var(--gray-light);
}

.perfil-dias,
.perfil-numero {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.1;
}

.perfil-dias.urgente {
    color: #ff6f82;
}

.perfil-acoes,
.perfil-form-actions,
.perfil-plan-actions,
.perfil-renew-whatsapp {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 50px;
    padding: 0 22px;
    border-radius: 16px;
    border: 1px solid transparent;
    text-decoration: none;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, #ff5c7a, #ff7a45);
    box-shadow: 0 14px 26px rgba(233, 69, 96, 0.28);
}

.btn-secondary {
    color: #fff;
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.1);
}

.btn-outline {
    color: #dbe4ff;
    background: transparent;
    border-color: rgba(255,255,255,0.14);
}

.perfil-sections-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.perfil-section-head {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 18px;
}

.perfil-section-head h2,
.perfil-section > h2 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.perfil-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.perfil-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.perfil-form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.perfil-form-group--full {
    grid-column: 1 / -1;
}

.perfil-form-group label {
    font-size: 0.95rem;
    font-weight: 700;
    color: #f1f4ff;
}

.perfil-input {
    width: 100%;
    min-height: 52px;
    padding: 0 16px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.06);
    color: #fff;
    outline: none;
}

.perfil-input:focus {
    border-color: rgba(255,255,255,0.28);
    box-shadow: 0 0 0 4px rgba(233, 69, 96, 0.1);
}

.perfil-plans-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.perfil-plan-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 22px;
    border-radius: 24px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
}

.perfil-plan-card.is-current {
    border-color: rgba(233, 69, 96, 0.34);
    box-shadow: inset 0 0 0 1px rgba(233, 69, 96, 0.16);
}

.perfil-plan-card h3 {
    font-size: 1.18rem;
}

.perfil-plan-card strong {
    font-size: 1.9rem;
    color: #fff;
}

.perfil-plan-badge,
.perfil-plan-current {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 800;
}

.perfil-plan-badge {
    background: rgba(255,255,255,0.08);
    color: #ffccb4;
}

.perfil-plan-current {
    color: #d7ffe6;
    background: rgba(39, 174, 96, 0.14);
    border: 1px solid rgba(39, 174, 96, 0.28);
}

.perfil-plan-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: #d9def1;
    padding-left: 18px;
}

.perfil-media-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
}

.perfil-media-grid .filme-info small {
    color: #9aa7d3;
}

.perfil-empty-state {
    min-height: 180px;
    border-radius: 22px;
    border: 1px dashed rgba(255,255,255,0.14);
    background: rgba(255,255,255,0.03);
    color: #cbd4f0;
    display: grid;
    place-items: center;
    text-align: center;
    gap: 12px;
    padding: 22px;
}

.perfil-empty-state i {
    font-size: 1.8rem;
    color: #ff8aa0;
}

.perfil-empty-state p {
    max-width: 420px;
    margin: 0;
    line-height: 1.6;
}

.perfil-section--anchor {
    scroll-margin-top: 110px;
}

@media (max-width: 991px) {
    .header {
        position: static;
    }

    .perfil-grid,
    .perfil-sections-grid,
    .perfil-plans-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .user-access-page,
    .user-profile-page {
        padding-top: 20px;
        padding-bottom: 110px;
    }

    .perfil-header,
    .perfil-card,
    .perfil-section {
        padding: 20px;
        border-radius: 22px;
    }

    .perfil-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .perfil-header-meta {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
    }

    .perfil-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .perfil-code-box {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .perfil-code-box code {
        font-size: 1.45rem;
        text-align: center;
    }

    .perfil-copy-btn,
    .user-access-actions .catalog-toolbar-btn,
    .perfil-acoes .btn,
    .perfil-form-actions .btn,
    .perfil-plan-actions .btn,
    .perfil-renew-whatsapp .btn {
        width: 100%;
    }

    .user-access-actions,
    .perfil-acoes,
    .perfil-form-actions,
    .perfil-plan-actions,
    .perfil-renew-whatsapp {
        flex-direction: column;
    }

    .perfil-form-grid {
        grid-template-columns: 1fr;
    }

    .pwa-page {
        padding: 44px 0 110px;
    }

    .pwa-hero,
    .pwa-guides,
    .pwa-faq {
        grid-template-columns: 1fr;
    }

    .pwa-hero__copy,
    .pwa-preview-card,
    .pwa-guide-card,
    .pwa-faq__item {
        padding: 22px;
        border-radius: 22px;
    }

    .pwa-actions {
        flex-direction: column;
    }

    .pwa-install-button,
    .pwa-outline-button {
        width: 100%;
    }
}

/* Stories */
.stories-strip {
    width: min(1180px, calc(100vw - 24px));
    margin: 18px auto 10px;
    padding: 14px 16px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 26px;
    background: rgba(8, 13, 28, 0.72);
    box-shadow: 0 18px 48px rgba(0,0,0,0.24);
    overflow: hidden;
}

.stories-strip--filme {
    width: 100%;
    margin: 0;
    background: rgba(9, 14, 28, 0.88);
}

.stories-strip__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    color: #fff;
    font-weight: 900;
    letter-spacing: 0.02em;
}

.stories-strip__header i {
    color: #ff5f7a;
}

.stories-strip__rail {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    padding: 2px 2px 6px;
    scrollbar-width: thin;
}

.story-bubble {
    width: 88px;
    flex: 0 0 88px;
    display: grid;
    gap: 8px;
    justify-items: center;
    border: 0;
    background: transparent;
    color: #fff;
    cursor: pointer;
    padding: 0;
    font: inherit;
}

.story-bubble__ring {
    width: 74px;
    height: 74px;
    padding: 3px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ff4d74, #ff8a3d, #7d5cff);
    box-shadow: 0 10px 24px rgba(255, 77, 116, 0.2);
}

.story-bubble.is-seen .story-bubble__ring {
    background: rgba(255,255,255,0.18);
    box-shadow: none;
}

.story-bubble__ring img,
.story-bubble__fallback {
    width: 100%;
    height: 100%;
    border-radius: inherit;
    border: 3px solid #090e1c;
}

.story-bubble__ring img {
    display: block;
    object-fit: cover;
}

.story-bubble__fallback {
    display: grid;
    place-items: center;
    background: radial-gradient(circle at top, rgba(255, 95, 122, 0.5), rgba(13, 20, 40, 0.95));
    color: #fff;
}

.story-bubble__title {
    width: 100%;
    min-height: 32px;
    color: #e8edff;
    font-size: 0.76rem;
    font-weight: 800;
    line-height: 1.18;
    text-align: center;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.story-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 18px;
    background: rgba(0,0,0,0.88);
}

.story-modal.is-open {
    display: flex;
}

.story-modal__frame {
    position: relative;
    width: min(430px, 100%);
    height: min(760px, calc(100vh - 36px));
    overflow: hidden;
    border-radius: 30px;
    background: #05070f;
    box-shadow: 0 30px 90px rgba(0,0,0,0.55);
}

.story-modal__progress {
    position: absolute;
    top: 14px;
    left: 16px;
    right: 16px;
    z-index: 3;
    height: 4px;
    border-radius: 999px;
    background: rgba(255,255,255,0.22);
    overflow: hidden;
}

.story-modal__progress span {
    display: block;
    width: 0%;
    height: 100%;
    border-radius: inherit;
    background: #fff;
}

.story-modal__toolbar {
    position: absolute;
    top: 28px;
    left: 16px;
    right: 68px;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    pointer-events: none;
}

.story-modal__badge,
.story-modal__skip {
    pointer-events: auto;
}

.story-modal__badge {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255, 95, 122, 0.92);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.story-modal__skip {
    min-height: 36px;
    border: 0;
    border-radius: 999px;
    padding: 0 14px;
    background: rgba(7, 12, 25, 0.74);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 800;
    cursor: pointer;
}

.story-modal__skip:disabled {
    opacity: 0.72;
    cursor: wait;
}

.story-modal__close,
.story-modal__nav {
    position: absolute;
    z-index: 4;
    border: 0;
    color: #fff;
    background: rgba(0,0,0,0.35);
    cursor: pointer;
}

.story-modal__close {
    top: 28px;
    right: 16px;
    width: 40px;
    height: 40px;
    border-radius: 999px;
}

.story-modal__nav {
    top: 50%;
    width: 44px;
    height: 74px;
    transform: translateY(-50%);
    border-radius: 999px;
}

.story-modal__nav--prev {
    left: 10px;
}

.story-modal__nav--next {
    right: 10px;
}

.story-modal__media {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    background: #05070f;
}

.story-modal__media img,
.story-modal__media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-modal__copy {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    display: grid;
    gap: 14px;
    padding: 80px 22px 24px;
    background: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,0.72));
    color: #fff;
}

.story-modal__title {
    margin: 0;
    max-width: 320px;
    font-size: 1.32rem;
    line-height: 1.2;
    text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

.story-modal__cta {
    display: none;
    width: fit-content;
    min-height: 46px;
    align-items: center;
    gap: 8px;
    padding: 0 18px;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, #ff4d74, #ff7a45);
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 16px 34px rgba(255, 77, 116, 0.32);
}

.story-modal__cta.is-visible {
    display: inline-flex;
}

body.story-modal-open {
    overflow: hidden;
}

@media (max-width: 767px) {
    .stories-strip {
        width: calc(100vw - 24px);
        padding: 12px;
        border-radius: 22px;
    }

    .story-bubble {
        width: 78px;
        flex-basis: 78px;
    }

    .story-bubble__ring {
        width: 66px;
        height: 66px;
    }

    .story-modal {
        padding: 0;
    }

    .story-modal__frame {
        width: 100%;
        height: 100%;
        border-radius: 0;
    }

    .story-modal__nav {
        width: 38px;
        height: 64px;
    }

    .story-modal__toolbar {
        top: 22px;
        right: 58px;
    }

    .story-modal__skip {
        min-height: 34px;
        padding: 0 12px;
        font-size: 0.74rem;
    }
}
.push-optin-card {
    position: fixed;
    right: 18px;
    bottom: 88px;
    width: min(360px, calc(100vw - 24px));
    padding: 18px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(10, 16, 36, 0.96);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
    z-index: 1200;
    backdrop-filter: blur(16px);
}

.push-optin-card__body strong {
    display: block;
    margin-bottom: 8px;
    color: #fff;
    font-size: 1rem;
}

.push-optin-card__body p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.5;
    font-size: 0.95rem;
}

.push-optin-card__actions {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.push-optin-card__ghost,
.push-optin-card__cta {
    flex: 1;
    min-height: 44px;
    border-radius: 999px;
    border: 0;
    font-weight: 700;
    cursor: pointer;
}

.push-optin-card__ghost {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.88);
}

.push-optin-card__cta {
    background: linear-gradient(135deg, #ff4d6d, #ff7a59);
    color: #fff;
    box-shadow: 0 14px 30px rgba(255, 89, 110, 0.25);
}

@media (max-width: 768px) {
    .push-optin-card {
        left: 12px;
        right: 12px;
        bottom: 88px;
        width: auto;
    }
}

@media (max-width: 900px) {
    .home-social-proof-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .home-social-proof-section {
        padding: 28px 0 10px;
    }

    .home-comments-panel,
    .home-questions-panel {
        padding: 22px 18px;
        border-radius: 24px;
    }

    .home-comment-head {
        flex-wrap: wrap;
        align-items: flex-start;
    }

    .home-comment-pill {
        margin-left: 0;
    }

    .home-question-item summary {
        font-size: 0.98rem;
    }
}

@media (max-width: 480px) {
    .home-comments-panel,
    .home-questions-panel {
        padding: 18px 14px;
    }

    .home-comment-card,
    .home-question-item {
        padding: 16px;
    }

    .home-comment-avatar {
        width: 42px;
        height: 42px;
        font-size: 0.95rem;
    }
}

body .home-social-proof-section {
    padding: 72px 0 28px;
}

body .home-social-proof-section .home-social-proof-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 28px;
    align-items: start;
}

body .home-social-proof-section .home-comments-panel,
body .home-social-proof-section .home-questions-panel {
    display: block;
    padding: 28px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(11, 18, 38, 0.96) 0%, rgba(15, 24, 49, 0.92) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 52px rgba(0, 0, 0, 0.22);
}

body .home-social-proof-section .section-title--left,
body .home-social-proof-section .section-title--left h2,
body .home-social-proof-section .section-title--left p {
    text-align: left;
}

body .home-social-proof-section .section-title--left {
    margin-bottom: 22px;
}

body .home-social-proof-section .section-title--left h2 {
    margin-bottom: 8px;
    font-size: 2rem;
}

body .home-social-proof-section .section-title--left p {
    margin: 0;
    color: rgba(226, 232, 240, 0.72);
}

body .home-social-proof-section .home-comments-list,
body .home-social-proof-section .home-questions-list {
    display: grid;
    gap: 16px;
}

body .home-social-proof-section .home-comment-card,
body .home-social-proof-section .home-question-item {
    display: block;
    margin: 0;
    padding: 18px 18px 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

body .home-social-proof-section .home-comment-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}

body .home-social-proof-section .home-comment-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    flex: 0 0 46px;
    background: linear-gradient(135deg, #ff5f7a 0%, #7c5cff 100%);
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1;
}

body .home-social-proof-section .home-comment-meta {
    display: grid;
    gap: 3px;
}

body .home-social-proof-section .home-comment-meta strong,
body .home-social-proof-section .home-question-item summary span {
    color: #fff;
}

body .home-social-proof-section .home-comment-meta span {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.84rem;
}

body .home-social-proof-section .home-comment-pill {
    display: inline-flex;
    align-items: center;
    margin-left: auto;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffd8df;
    font-size: 0.78rem;
    font-weight: 700;
    white-space: nowrap;
}

body .home-social-proof-section .home-comment-card p,
body .home-social-proof-section .home-question-answer p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.7;
}

body .home-social-proof-section .home-question-item {
    padding: 0;
    overflow: hidden;
}

body .home-social-proof-section .home-question-item summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 20px;
    font-weight: 700;
}

body .home-social-proof-section .home-question-item summary::-webkit-details-marker {
    display: none;
}

body .home-social-proof-section .home-question-item summary i {
    color: rgba(255, 255, 255, 0.7);
    transition: transform 0.2s ease;
}

body .home-social-proof-section .home-question-item[open] summary i {
    transform: rotate(45deg);
}

body .home-social-proof-section .home-question-answer {
    padding: 0 20px 18px;
}

@media (max-width: 900px) {
    body .home-social-proof-section .home-social-proof-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    body .home-social-proof-section {
        padding: 52px 0 18px;
    }

    body .home-social-proof-section .home-comments-panel,
    body .home-social-proof-section .home-questions-panel {
        padding: 22px 18px;
        border-radius: 24px;
    }

    body .home-social-proof-section .section-title--left h2 {
        font-size: 1.7rem;
    }

    body .home-social-proof-section .home-comment-head {
        flex-wrap: wrap;
        align-items: flex-start;
    }

    body .home-social-proof-section .home-comment-pill {
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    body .home-social-proof-section .home-comments-panel,
    body .home-social-proof-section .home-questions-panel {
        padding: 18px 14px;
    }

    body .home-social-proof-section .home-comment-card {
        padding: 16px;
    }

    body .home-social-proof-section .home-comment-avatar {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
        font-size: 0.95rem;
    }
}
