/* Reset e estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #0a0a0a;
    color: #fff;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: #fff;
}

ul {
    list-style: none;
}

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

/* Botões */
.primary-btn {
    display: inline-block;
    background: linear-gradient(135deg, #FF0000 0%, #8a0202 100%);
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    animation: pulse 1.5s infinite;
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 0, 0, 0.3);
    animation: none;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7);
    }
    
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 12px rgba(255, 0, 0, 0);
    }
    
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
    }
}

.secondary-btn {
    display: inline-block;
    background: transparent;
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    border: 2px solid #fff;
    transition: all 0.3s ease;
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.unlock-btn {
    display: inline-block;
    background: linear-gradient(135deg, #FF0000 0%, #8a0202 100%);
    color: #fff;
    padding: 10px 22px;
    border-radius: 20px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.unlock-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

.plan-btn {
    display: inline-block;
    background: linear-gradient(135deg, #FF0000 0%, #8a0202 100%);
    padding: 12px 30px;
    border-radius: 30px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
}

.plan-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 0, 0, 0.3);
}

.more-btn {
    display: inline-block;
    background: transparent;
    color: #fff;
    padding: 10px 25px;
    border-radius: 25px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    border: 2px solid #fff;
    transition: all 0.3s ease;
    margin-top: 30px;
}

.more-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Centro do botão */
.center-btn {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

/* Header */
header {
    padding: 20px 0;
    background-color: rgba(0, 0, 0, 0.9);
    position: fixed;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

header.scrolled {
    background-color: #FF0000;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-bottom: 3px solid #000;
}

header .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo h1 {
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
}

.logo span {
    color: #FF0000;
    transition: color 0.3s ease;
}

header.scrolled .logo span {
    color: #000;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-right: 30px;
}

nav ul li a {
    font-weight: 600;
    transition: all 0.3s ease;
}

nav ul li a:hover {
    color: #FF0000;
}

.buttons {
    display: flex;
    gap: 15px;
}

.login-btn {
    display: inline-block;
    background: transparent;
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    border: 2px solid #fff;
    transition: all 0.3s ease;
}

.login-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.signup-btn {
    display: inline-block;
    background: linear-gradient(135deg, #FF0000 0%, #ffb199 100%);
    color: #fff;
    padding: 10px 20px;
    border-radius: 20px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.signup-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.116), rgba(0, 0, 0, 0.205)), url('../images/bg-hero-s1.jpg');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    padding: 120px 0 80px;
    margin-top: 0;
}

.hero-content {
    max-width: 1000px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 24px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.hero h2 {
    font-size: 42px;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 800;
    line-height: 1.1;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
}

/* Benefits Cards no Hero */
.benefits-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 60px;
}

.benefit-card {
    background-color: #111111;
    border-radius: 12px;
    padding: 30px 25px;
    display: flex;
    align-items: center;
    text-align: left;
    transition: all 0.3s ease;
    border: 1px solid #222;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background-color: #0f0f0f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 25px;
    flex-shrink: 0;
}

.benefit-icon i {
    font-size: 30px;
    color: #FF0000;
}

.benefit-content {
    flex: 1;
}

.benefit-content h3 {
    font-size: 16px;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    color: white;
}

.benefit-content p {
    font-size: 14px;
    color: #aaa;
    line-height: 1.5;
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: #0f0f0f;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 30px;
    background-color: #161616;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 20px;
    color: #FF0000;
}

.feature-item h3 {
    font-size: 18px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.feature-item p {
    font-size: 14px;
    color: #aaa;
}

/* Stats Section */
.stats {
    padding: 50px 0 20px;
    background-color: #0A0A0A;
}

.stats .container {
    max-width: 100%;
    padding: 0;
}

.stats .title-container {
    text-align: center;
    margin-bottom: 30px;
}

.stats h2, .stats-title {
    text-align: center;
    font-size: 28px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #fff;
    padding: 0 20px;
    position: relative;
    display: inline-block;
}

.title-text {
    display: inline-block;
}

.top-badge {
    background: linear-gradient(135deg, #FF0000 0%, #8a0202 100%);
    color: #fff;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 30px;
    position: absolute;
    top: -12px;
    right: -35px;
    font-weight: 800;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.5);
    transform: rotate(15deg);
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0% {
        transform: rotate(15deg) scale(1);
    }
    50% {
        transform: rotate(15deg) scale(1.1);
    }
    100% {
        transform: rotate(15deg) scale(1);
    }
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    text-align: center;
    margin-bottom: 50px;
}

.stat-item h3 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #fff;
}

.stat-item p {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    color: #fff;
}

/* Rolagem horizontal de filmes */
.movie-scroll {
    display: flex;
    gap: 15px;
    padding: 10px 20px 30px;
    margin-bottom: 0;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.movie-scroll::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 120px;
    background: linear-gradient(to right, transparent, #0A0A0A);
    z-index: 1;
    pointer-events: none;
}

.movie-scroll::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 120px;
    background: linear-gradient(to left, transparent, #0A0A0A);
    z-index: 1;
    pointer-events: none;
}

@keyframes infiniteScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-12% * 10 - 15px * 10));
    }
}

.movie-scroll > div {
    display: flex;
    animation: infiniteScroll 30s linear infinite;
    gap: 15px;
    padding: 5px;
}

.movie-scroll:hover > div {
    animation-play-state: paused;
}

.movie-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    transition: all 0.3s ease;
    flex: 0 0 calc(12% - 15px);
    min-width: 150px;
    aspect-ratio: 5/4;
}

.movie-item:hover {
    transform: scale(1.05);
    z-index: 2;
}

.movie-poster {
    height: 100%;
    width: 100%;
    background-color: #161616;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.movie-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.4s ease;
}

.movie-item:hover .movie-overlay {
    opacity: 1;
    transform: translateY(0);
}

.movie-overlay p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 600;
}

.movie-overlay strong {
    color: #FF0000;
    font-size: 22px;
    font-weight: 800;
    display: block;
    margin-top: 5px;
}

.movie-overlay strong {
    color: #FF0000;
    font-size: 18px;
    font-weight: 800;
}

.pagination {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.pagination a {
    display: inline-block;
    padding: 8px 15px;
    margin: 0 5px;
    border-radius: 5px;
    background-color: #161616;
    transition: all 0.3s ease;
}

.pagination a:hover {
    background-color: #2a2a2a;
}

.pagination a.active {
    background-color: #FF0000;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), url('../images/removed.png');
    background-size: cover;
    background-position: center;
}

.benefits h2 {
    font-size: 32px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #FF0000;
}

.subtitle {
    font-size: 18px;
    color: #fff;
    margin-bottom: 50px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.benefit-item {
    padding: 30px;
    background-color: rgba(22, 22, 22, 0.7);
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.benefit-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(255, 0, 0, 0.2);
    background-color: rgba(22, 22, 22, 0.9);
    border-color: rgba(255, 0, 0, 0.3);
}

.benefit-icon {
    font-size: 40px;
    margin-bottom: 20px;
    color: #FF0000;
}

.benefit-item h3 {
    font-size: 18px;
    margin-bottom: 15px;
    letter-spacing: 1px;
    color: #fff;
}

.benefit-item p {
    font-size: 14px;
    color: #ddd;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Actors Section */
.actors {
    padding: 80px 0;
    background-color: #0a0a0a;
}

.actors h2 {
    font-size: 32px;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 0 15px;
}

.actor-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    margin-bottom: 50px;
    max-width: 1050px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 8px;
}

.actor-item {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    height: 310px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 195px;
    margin: 0 auto;
}

.actor-item:hover {
    transform: translateY(-5px);
}

.actor-item a {
    display: block;
    height: 100%;
    width: 100%;
    text-decoration: none;
    border-radius: 6px;
    overflow: hidden;
}

.actor-item a:hover {
    text-decoration: none;
}

.actor-photo {
    height: 100%;
    width: 100%;
    background-color: #161616;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    background-size: cover;
    background-position: center top;
}

.actor-photo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 1;
    transition: all 0.3s ease;
    border-radius: 6px;
    width: 100%;
    height: 100%;
}

.actor-item:hover .actor-photo::before {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 6px;
    width: 100%;
    height: 100%;
}

.lock-icon {
    position: absolute;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s ease;
    width: 50px;
    height: 50px;
    background-image: url('../images/lock.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.actor-item:hover .lock-icon {
    opacity: 1;
}

/* Categories Section */
.categories {
    padding: 80px 0;
    background-color: #0a0a0a;
}

.categories h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
}

.category-item {
    text-align: center;
    transition: all 0.3s ease;
}

.category-item:hover {
    transform: translateY(-5px);
}

.category-thumb {
    height: 100px;
    background-color: #161616;
    border-radius: 10px;
    margin-bottom: 10px;
}

.category-item p {
    font-size: 14px;
    font-weight: 600;
}

/* No Ads Section */
.no-ads {
    padding: 80px 0;
    background-color: #0f0f0f;
    text-align: center;
}

.no-ads h2 {
    font-size: 32px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.description {
    max-width: 600px;
    margin: 0 auto;
    margin-bottom: 30px;
    line-height: 1.8;
    color: #aaa;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background-color: #0a0a0a;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.116), rgba(0, 0, 0, 0.205)), url('../images/bg-hero-s3.jpg');
    background-size: cover;
    background-position: center;
}

.pricing h2 {
    font-size: 32px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #FF0000;
}

.plans-list {
    max-width: 900px;
    margin: 50px auto;
}

.plan-card {
    background-color: #222222;
    border-radius: 10px;
    margin-bottom: 20px;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-5px) scale(1.05);
}

.plan-card.selected {
    border: 2px solid #FF0000;
    background-color: #222222;
    transform: translateY(-8px) scale(1.08);
    padding: 35px;
    box-shadow: none;
}

.radio-circle.checked::after {
    transform: translate(-50%, -50%) scale(1);
}

.plan-card.selected .plan-btn {
    background-color: #FF0000;
}

.plan-info {
    display: flex;
    align-items: center;
}

.radio-circle {
    width: 24px;
    height: 24px;
    border: 2px solid #aaa;
    border-radius: 50%;
    margin-right: 20px;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
}

.radio-circle:hover {
    border-color: #FF0000;
}

.radio-circle::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: #FF0000;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.2s ease;
}

.plan-card:hover .radio-circle::after {
    transform: translate(-50%, -50%) scale(1);
}

.plan-details h3 {
    font-size: 22px;
    margin-bottom: 5px;
    color: #fff;
    text-align: left;
}

.plan-details p {
    font-size: 14px;
    color: #FF0000;
    text-align: left;
}

.plan-price-action {
    display: flex;
    align-items: center;
    gap: 30px;
}

.price {
    text-align: right;
    white-space: nowrap;
}

.currency {
    font-size: 22px;
    font-weight: 700;
    vertical-align: top;
}

.amount {
    font-size: 56px;
    font-weight: 700;
    line-height: 1;
    color: #fff;
}

.cents {
    font-size: 24px;
    font-weight: 700;
}

.plan-btn {
    display: inline-block;
    background-color: #FF0000;
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-align: center;
    white-space: nowrap;
}

.plan-btn:hover {
    background-color: #ff2e2e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

.payment-methods {
    margin: 40px 0;
}

.payment-methods > p {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.payment-icon {
    text-align: center;
    background-color: #fff;
    border-radius: 10px;
    padding: 10px;
    width: 120px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-icon img {
    height: 40px;
    max-width: 100px;
    object-fit: contain;
}

.payment-icon p {
    font-size: 14px;
    color: #333;
    font-weight: 600;
}

.payment-notice {
    max-width: 800px;
    margin: 0 auto;
    font-size: 12px;
    color: #777;
    line-height: 1.6;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: #000;
    background-position: center;
}

.faq h2, .faq .subtitle {
    text-align: center;
}

.faq h2 {
    font-size: 32px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.faq-items {
    margin-top: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    margin-bottom: 20px;
    background-color: rgb(19, 19, 19);
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 18px;
}

.faq-question i {
    font-size: 18px;
    color: #FF0000;
    transition: all 0.3s ease;
}

.faq-answer {
    padding: 0 20px 20px;
    display: none;
}

/* Footer */
footer {
    padding: 60px 0 30px;
    background-color: #000;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.footer-links a {
    font-size: 14px;
    color: #aaa;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #FF0000;
}

.copyright-notice {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 12px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.footer-branding {
    text-align: center;
    font-size: 12px;
    color: #eb0202;
    line-height: 1.6;
}

/* Responsividade */
@media screen and (max-width: 768px) {
    /* Ajuste para o header fixo em mobile */
    body {
        padding-top: 60px;
    }
    
    header {
        padding: 15px 0;
        top: 0;
        left: 0;
        right: 0;
        position: fixed;
        width: 100%;
        z-index: 1000;
    }
    
    .logo h1 {
        font-size: 20px;
        margin: 0;
    }
    
    /* Ajuste para a tag de campeão em mobile */
    .champion-icon {
        margin: 0 5px;
        font-size: 14px;
    }
    
    nav ul {
        margin-bottom: 20px;
    }
    
    .hero h1 {
        font-size: 18px;
        line-height: 1.4;
        margin-top: 10px;
    }
    
    .hero h2 {
        font-size: 32px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .benefits-cards {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .benefit-card {
        padding: 20px;
    }
    
    .actor-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 0 15px;
    }
    
    .actor-item {
        height: 280px;
        max-width: 180px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 30px;
    }
    
    .plan-card {
        flex-direction: column;
        text-align: center;
        padding: 15px;
        margin-bottom: 15px;
    }
    
    .plan-info {
        margin-bottom: 15px;
        justify-content: center;
    }
    
    .plan-details h3 {
        font-size: 18px;
        margin-bottom: 3px;
    }
    
    .plan-details p {
        font-size: 12px;
    }
    
    .amount {
        font-size: 42px;
    }
    
    .currency, .cents {
        font-size: 18px;
    }
    
    .plan-card.selected {
        padding: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .hero {
        min-height: auto;
        padding: 80px 0 60px;
    }
    
    .actors h2 {
        font-size: 26px;
        padding: 0 20px;
        margin-bottom: 40px;
    }
    
    .champion-icon {
        margin: 0 5px;
        font-size: 16px;
    }
    
    .stats-title {
        font-size: 24px;
        max-width: 90%;
        padding: 0 30px 0 0;
    }
    
    .top-badge {
        font-size: 10px;
        padding: 3px 6px;
        right: -15px;
        top: -10px;
    }
    
    .actor-item, .actor-photo, .actor-photo::before, .actor-item a {
        border-radius: 6px;
        overflow: hidden;
    }
    
    .lock-icon {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        position: absolute;
        z-index: 3;
    }
}

@media screen and (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero h1 {
        font-size: 14px;
        line-height: 1.3;
        padding: 0 10px;
        margin-top: 5px;
    }
    
    .hero h2 {
        font-size: 26px;
    }
    
    .primary-btn, .secondary-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .actor-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .actor-item {
        height: 250px;
        max-width: 160px;
    }
    
    .amount {
        font-size: 38px;
    }
    
    .currency, .cents {
        font-size: 16px;
    }
    
    .stats h2, .actors h2, .categories h2, .pricing h2, .faq h2 {
        font-size: 24px;
    }
    
    .payment-icons {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 15px;
    }
    
    .payment-icon {
        width: 100px;
        height: 45px;
    }
    
    .actors h2 {
        font-size: 22px;
    }
    
    .champion-icon {
        margin: 0 3px;
        font-size: 14px;
    }
    
    .stats-title {
        font-size: 20px;
        padding: 0 15px 0 0;
        max-width: 95%;
    }
    
    .top-badge {
        font-size: 8px;
        padding: 2px 5px;
        right: 5px;
        top: -5px;
        transform: rotate(5deg);
    }
    
    .stats h2 {
        padding-right: 10px;
        position: relative;
    }
    
    .actor-item, .actor-photo, .actor-photo::before, .actor-item a {
        border-radius: 6px;
        overflow: hidden;
    }
    
    .actor-photo.blurred::before {
        border-radius: 6px;
    }
}

/* Seção do botão de acesso */
.access-button {
    padding: 60px 0;
    background-color: #0a0a0a;
    text-align: center;
}

.access-button .center-btn {
    margin-top: 0;
}

.access-button .primary-btn {
    font-size: 18px;
    padding: 15px 40px;
}

/* Logo com bandeira do Brasil */
.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

/* Removendo estilos da bandeira */

.champion-icon {
    background: linear-gradient(135deg, #FF0000 0%, #8a0202 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin: 0 10px;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.7);
    animation: champion-shine-red 2s infinite;
}

@keyframes champion-shine-red {
    0% {
        text-shadow: 0 0 10px rgba(255, 0, 0, 0.7);
    }
    50% {
        text-shadow: 0 0 20px rgba(255, 0, 0, 0.9);
    }
    100% {
        text-shadow: 0 0 10px rgba(255, 0, 0, 0.7);
    }
}

/* Animações para elementos quando entram na viewport */
.benefit-card, .actor-item, .plan-card {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.benefit-card.in-view, .actor-item.in-view, .plan-card.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Efeito de blur para toque em mobile */
.actor-photo.blurred::before {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 6px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
}

/* Melhorias adicionais para mobile */
@media screen and (max-width: 768px) {
    /* Ajuste para o header fixo em mobile */
    body {
        padding-top: 60px;
    }
    
    header {
        padding: 15px 0;
        top: 0;
        left: 0;
        right: 0;
        position: fixed;
        width: 100%;
        z-index: 1000;
    }
    
    .logo h1 {
        font-size: 20px;
        margin: 0;
    }
    
    /* Ajuste para a tag de campeão em mobile */
    .champion-icon {
        margin: 0 5px;
        font-size: 14px;
    }
    
    /* Aumentar tamanho de toque em elementos interativos */
    .plan-btn, .primary-btn, .secondary-btn, .unlock-btn {
        padding: 12px 25px;
        font-size: 15px;
    }
    
    .radio-circle {
        width: 28px;
        height: 28px;
    }
    
    .radio-circle::after {
        width: 14px;
        height: 14px;
    }
    
    /* Melhorar espaçamento para leitura */
    .pricing, .actors, .benefits, .faq {
        padding: 60px 0;
    }
    
    .hero {
        min-height: auto;
        padding: 80px 0 60px;
    }
    
    /* Ajustes para os cards de benefícios */
    .benefit-icon {
        width: 50px;
        height: 50px;
        margin-right: 15px;
    }
    
    .benefit-icon i {
        font-size: 24px;
    }
}

.mobile-title {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.mobile-title span {
    display: inline-block;
    margin: 0 5px;
}

.mobile-trophy {
    display: inline-block;
}

@media screen and (max-width: 768px) {
    .actors h2 {
        font-size: 24px;
        padding: 0 20px;
        margin-bottom: 40px;
    }
    
    .champion-icon {
        margin: 0 5px;
        font-size: 16px;
    }
    
    .mobile-trophy {
        font-size: 20px;
        margin-right: 8px;
    }
}

@media screen and (max-width: 480px) {
    .mobile-title {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 0 15px;
    }
    
    .actors h2 {
        font-size: 20px;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .champion-icon.mobile-trophy {
        font-size: 26px;
        margin-right: 15px;
        margin-bottom: 0;
    }
    
    .mobile-title span {
        margin: 0;
    }
}

.stats h2, .actors h2, .categories h2, .pricing h2, .faq h2 {
    font-size: 24px;
}

@media screen and (max-width: 480px) {
    .stats-title, .actors h2 {
        font-size: 20px;
    }
    
    .categories h2, .pricing h2, .faq h2 {
        font-size: 20px;
    }
    
    .champion-icon.mobile-trophy {
        font-size: 26px;
        margin-right: 15px;
        margin-bottom: 0;
    }
}

@media screen and (max-width: 768px) {
    .pricing {
        padding: 60px 0;
    }
    
    .pricing h2 {
        font-size: 28px;
    }
    
    .subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .plans-list {
        margin: 30px auto;
    }
    
    .plan-price-action {
        flex-direction: column;
        gap: 15px;
    }
    
    .price {
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 480px) {
    .pricing {
        padding: 40px 0;
    }
    
    .pricing h2 {
        font-size: 24px;
    }
    
    .subtitle {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .plans-list {
        margin: 20px auto;
    }
    
    .payment-methods {
        margin: 25px 0;
    }
    
    .payment-methods > p {
        font-size: 16px;
        margin-bottom: 15px;
    }
}

@media screen and (max-width: 768px) {
    .actor-photo::before,
    .actor-item:hover .actor-photo::before,
    .actor-photo.blurred::before {
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        border-radius: 6px;
    }
}

@media screen and (max-width: 480px) {
    .actor-photo::before,
    .actor-item:hover .actor-photo::before,
    .actor-photo.blurred::before {
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        border-radius: 6px;
        position: absolute;
    }
} 