/* =========================================
   VARIÁVEIS GLOBAIS
   ========================================= */
:root {
    --bg-color: #050508;
    --card-bg: rgba(255, 255, 255, 0.04);
    --card-border: rgba(255, 255, 255, 0.08);
    --text-main: #ffffff;
    --text-sub: #a1a1aa;
    --whatsapp-green: #25D366;
    --whatsapp-dark: #128C7E;
    --accent-blue: #007AFF;
    --accent-red: #E50914;
    --gold-accent: #FFD700;
    --sports-orange: #FF6B00;
    --sports-glow: rgba(255, 107, 0, 0.5);
    --benefits-yellow: #FFC300;
    --benefits-glow: rgba(255, 195, 0, 0.6);
}

/* =========================================
   RESET E BASE
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    -webkit-tap-highlight-color: transparent;
}

body {
    background-color: var(--bg-color);
    background-image:
        radial-gradient(circle at 50% 0%, rgba(0, 122, 255, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 100% 100%, rgba(229, 9, 20, 0.1) 0%, transparent 50%);
    background-attachment: fixed;
    color: var(--text-main);
    display: flex;
    justify-content: center;
    min-height: 100vh;
}

.container {
    width: 100%;
    max-width: 480px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
    z-index: 1;
}

/* =========================================
   CABEÇALHO
   ========================================= */
header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 10px;
}

.avatar-container {
    position: relative;
    margin-bottom: 12px;
}

.avatar {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    border: none;
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.4);
    background-color: #000;
    padding: 0;
    display: block;
}

.verified-badge {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background: var(--accent-blue);
    color: white;
    border-radius: 50%;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    border: 2px solid var(--bg-color);
    box-shadow: 0 2px 8px rgba(0, 122, 255, 0.6);
}

h1 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

/* HEADLINE COM DEGRADÊ (EMOJI NATURAL) */
.headline {
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -0.2px;
    margin-bottom: 5px;
    background: linear-gradient(90deg, #E50914, #FF9500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.headline .emoji {
    -webkit-text-fill-color: initial;
    color: initial;
}

.bio {
    font-size: 0.8rem;
    color: var(--text-sub);
    line-height: 1.4;
    max-width: 95%;
}

.cta-note {
    text-align: center;
    color: #8f8f98;
    font-size: 0.7rem;
    margin-top: -7px;
}

/* =========================================
   BOTÃO WHATSAPP PRINCIPAL
   ========================================= */
.btn-whatsapp-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--whatsapp-green) 0%, var(--whatsapp-dark) 100%);
    color: #ffffff;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.95rem;
    padding: 16px;
    border-radius: 12px;
    width: 100%;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.25);
    text-transform: uppercase;
    transition: all 0.3s ease;
    margin-top: 5px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    letter-spacing: 0.5px;
}

.btn-whatsapp-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
}

/* =========================================
   ACORDEÃO
   ========================================= */
.accordion {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--card-border);
    transition: all 0.3s ease;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    cursor: pointer;
    user-select: none;
    background: transparent;
    z-index: 2;
    position: relative;
}

.header-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #fff;
}

.icon-box {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.icon-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.icon-box.icon-series {
    background: #E50914;
    color: #ffffff;
}

.series-icon {
    font-size: 1.05rem;
}

.chevron {
    color: var(--text-sub);
    transition: transform 0.3s ease;
    font-size: 0.8rem;
}

.accordion.active .chevron {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background: rgba(0, 0, 0, 0.2);
}

.accordion.active .accordion-content {
    max-height: 600px;
}

/* =========================================
   SWIPER CARROSSEL
   ========================================= */
.swiper {
    width: 100%;
    padding: 15px 0 40px 0;
}

.swiper-wrapper {
    display: flex;
}

.swiper-slide {
    width: 130px !important;
    flex-shrink: 0;
}

.swiper-button-next,
.swiper-button-prev {
    color: #ffffff;
    background: rgba(0, 0, 0, 0.6);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-family: Arial, sans-serif;
    font-size: 27px;
    line-height: 1;
    font-weight: 300;
    color: #ffffff;
}

.swiper-button-next:after { content: '›'; }
.swiper-button-prev:after { content: '‹'; }

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--whatsapp-green);
}

.swiper-pagination-bullet {
    background: #ffffff;
    opacity: 0.3;
}

.swiper-pagination-bullet-active {
    background: var(--whatsapp-green);
    opacity: 1;
}

/* =========================================
   CARDS DE FILMES/SÉRIES
   ========================================= */
.card {
    background: #1c1c1e;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.05);
    height: 100%;
}

.card-img-container {
    position: relative;
    height: 180px;
    width: 100%;
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-badge {
    position: absolute;
    top: 6px;
    right: 6px;
    background: var(--whatsapp-green);
    color: white;
    font-size: 0.55rem;
    font-weight: 800;
    padding: 3px 6px;
    border-radius: 4px;
    text-transform: uppercase;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.card-info {
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-grow: 1;
    justify-content: space-between;
}

.card-info h3 {
    font-size: 0.7rem;
    font-weight: 600;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #eee;
}

.btn-card {
    display: block;
    text-align: center;
    background: #ffffff;
    color: #000000;
    text-decoration: none;
    font-size: 0.6rem;
    font-weight: 800;
    padding: 6px 0;
    border-radius: 20px;
    transition: all 0.2s;
}

.btn-card:hover {
    background: #e0e0e0;
    transform: scale(1.05);
}

/* =========================================
   BLOCO DE VALOR (RECIBO)
   ========================================= */
.value-block {
    display: flex;
    align-items: stretch;
    gap: 0;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid var(--card-border);
    overflow: hidden;
    margin-top: 8px;
}

.value-accent {
    width: 4px;
    background: linear-gradient(180deg, #007AFF 0%, #E50914 100%);
    flex-shrink: 0;
    box-shadow: 0 0 12px rgba(0, 122, 255, 0.5);
}

.value-content {
    flex: 1;
    padding: 16px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.value-text {
    flex: 1;
    text-align: left;
}

.value-kicker {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.value-description {
    font-size: 0.72rem;
    color: var(--text-sub);
    line-height: 1.35;
}

.value-price-side {
    text-align: right;
    flex-shrink: 0;
}

.value-price {
    font-size: 1.4rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.5px;
    line-height: 1;
    white-space: nowrap;
}

.value-price span {
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--text-sub);
    margin-left: 1px;
}

.value-price-side small {
    display: block;
    font-size: 0.6rem;
    color: #6b6b73;
    margin-top: 4px;
    font-weight: 500;
}

/* =========================================
   ESPORTES
   ========================================= */
.section-sports {
    margin-top: 5px;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text-main);
    padding-left: 5px;
}

.section-title i {
    color: var(--sports-orange);
    text-shadow: 0 0 15px var(--sports-glow);
}

.section-description {
    color: var(--text-sub);
    font-size: 0.72rem;
    line-height: 1.4;
    margin: -5px 5px 12px;
}

.sports-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.sport-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 107, 0, 0.03) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 15px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s;
}

.sport-card:hover {
    background: rgba(255, 107, 0, 0.1);
    border-color: rgba(255, 107, 0, 0.4);
    transform: translateY(-2px);
}

.sport-card i {
    font-size: 1.6rem;
    color: var(--sports-orange);
    text-shadow: 0 0 20px var(--sports-glow);
}

.sport-card span {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-main);
}

/* =========================================
   BENEFÍCIOS
   ========================================= */
.benefits-section {
    margin-top: 2px;
}

.benefits-title {
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.7px;
    margin: 0 0 10px 5px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 195, 0, 0.05) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 15px 10px;
    margin-top: 5px;
    transition: all 0.3s;
}

.benefits-grid:hover {
    background: rgba(255, 195, 0, 0.12);
    border-color: rgba(255, 195, 0, 0.5);
    box-shadow: 0 0 20px rgba(255, 195, 0, 0.2);
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-align: center;
}

.benefit-item i {
    font-size: 1.2rem;
    color: var(--benefits-yellow);
    text-shadow: 0 0 15px var(--benefits-glow);
}

.benefit-item span {
    font-size: 0.6rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.2;
}

/* =========================================
   BLOCO FINAL (INGRESSO DE CINEMA)
   ========================================= */
.final-cta {
    position: relative;
    margin-top: 8px;
}

.ticket-body {
    background: linear-gradient(135deg, rgba(255, 195, 0, 0.08) 0%, rgba(255, 149, 0, 0.05) 100%);
    border: 1px solid rgba(255, 195, 0, 0.2);
    border-bottom: none;
    border-radius: 16px 16px 0 0;
    padding: 28px 20px 22px;
    text-align: center;
    position: relative;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    overflow: hidden;
}

.ticket-body::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 195, 0, 0.22) 0%, transparent 70%);
    pointer-events: none;
}

.ticket-kicker {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 3px;
    color: var(--benefits-yellow);
    text-transform: uppercase;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.ticket-price {
    display: inline-flex;
    align-items: baseline;
    gap: 3px;
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1;
    color: #ffffff;
    position: relative;
    z-index: 1;
}

.ticket-price span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-sub);
    letter-spacing: 0;
    margin-left: 4px;
}

.ticket-subtitle {
    font-size: 0.72rem;
    color: var(--text-sub);
    margin-top: 8px;
    position: relative;
    z-index: 1;
}

.ticket-stub {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 195, 0, 0.2);
    border-top: none;
    border-radius: 0 0 16px 16px;
    padding: 22px 20px 24px;
    position: relative;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.ticket-divider {
    position: relative;
    height: 1px;
    background-image: linear-gradient(to right, rgba(255, 195, 0, 0.5) 50%, transparent 50%);
    background-size: 12px 1px;
    background-repeat: repeat-x;
    margin-bottom: 20px;
}

.ticket-divider::before,
.ticket-divider::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--bg-color);
    top: 50%;
    transform: translateY(-50%);
    border: 1px solid rgba(255, 195, 0, 0.2);
}

.ticket-divider::before {
    left: -30px;
    border-left: none;
    box-shadow: inset -1px 0 0 rgba(255, 195, 0, 0.2);
}

.ticket-divider::after {
    right: -30px;
    border-right: none;
    box-shadow: inset 1px 0 0 rgba(255, 195, 0, 0.2);
}

.final-cta .btn-whatsapp-main {
    margin-top: 0;
}

/* =========================================
   FAQ
   ========================================= */
.faq-section {
    margin-top: 4px;
}

.faq-title {
    font-size: 0.9rem;
    font-weight: 800;
    margin: 0 0 12px 5px;
    color: #ffffff;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid var(--card-border);
    border-radius: 11px;
    overflow: hidden;
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 14px 15px;
    font-size: 0.78rem;
    font-weight: 700;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    color: var(--text-sub);
    font-size: 1.1rem;
    font-weight: 400;
    flex-shrink: 0;
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-item p {
    padding: 0 15px 14px;
    color: var(--text-sub);
    font-size: 0.72rem;
    line-height: 1.5;
}

.faq-item strong {
    color: #ffffff;
}

/* =========================================
   BLOCO PÓS-FAQ
   ========================================= */
.help-block {
    text-align: center;
    padding: 20px 20px 22px;
    border-radius: 14px;
    background: rgba(37, 211, 102, 0.04);
    border: 1px solid rgba(37, 211, 102, 0.2);
    margin-top: 4px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.help-block p {
    color: var(--text-sub);
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 14px;
}

.help-block p strong {
    color: #ffffff;
    font-weight: 800;
}

.btn-whatsapp-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 14px;
    border-radius: 12px;
    border: 1px solid rgba(37, 211, 102, 0.45);
    color: #ffffff;
    background: rgba(37, 211, 102, 0.08);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
}

.btn-whatsapp-secondary:hover {
    background: rgba(37, 211, 102, 0.15);
    border-color: rgba(37, 211, 102, 0.7);
    transform: translateY(-2px);
}

.spacer {
    height: 20px;
}