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

:root {
    --dark-bg: #0a0a0a;
    --dark-purple: #1a0a1a;
    --orange-primary: #FF6B35;
    --orange-dark: #E85A00;
    --orange-light: #FF8C61;
    --red-primary: #FF1744;
    --gold: #FFD700;
    --green-whatsapp: #25D366;
    --gradient-orange: linear-gradient(135deg, #FF6B35 0%, #FF8C61 50%, #FFD700 100%);
    --gradient-red-orange: linear-gradient(135deg, #FF1744 0%, #FF6B35 100%);
    --gradient-hero: linear-gradient(135deg, #FF1744 0%, #FF6B35 50%, #E85A00 100%);
    --gradient-gold: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    --text-white: #ffffff;
    --text-light: #f0f0f0;
    --shadow-glow: 0 0 30px rgba(255, 107, 53, 0.5);
    --shadow-hover: 0 10px 40px rgba(255, 107, 53, 0.3);
}

body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header */
.header {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.2);
    border-bottom: 2px solid var(--orange-primary);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 26px;
    font-weight: 800;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo i {
    font-size: 32px;
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav {
    display: flex;
    gap: 35px;
}

.nav a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    position: relative;
    font-size: 15px;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-orange);
    transition: width 0.3s;
}

.nav a:hover {
    color: var(--orange-primary);
}

.nav a:hover::after {
    width: 100%;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 20px;
}

.whatsapp-contact {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
}

.whatsapp-contact i {
    color: var(--green-whatsapp);
    font-size: 22px;
}

.whatsapp-contact a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.whatsapp-contact a:hover {
    color: var(--green-whatsapp);
}

.mobile-menu-toggle {
    display: none;
    color: var(--text-white);
    font-size: 24px;
    cursor: pointer;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    gap: 15px;
    padding: 20px;
    background: var(--dark-purple);
    border-top: 2px solid var(--orange-primary);
}

.mobile-nav a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    padding: 10px;
    transition: all 0.3s;
}

.mobile-nav a:hover {
    color: var(--orange-primary);
    padding-left: 20px;
}

/* Games Carousel Section */
.games-carousel-section {
    background: var(--dark-bg);
    padding: 0;
    position: relative;
    overflow: hidden;
}

.games-carousel-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.games-carousel-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.games-carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.game-slide {
    min-width: 100%;
    position: relative;
    height: 500px;
    overflow: hidden;
}

.game-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.game-slide:hover img {
    transform: scale(1.1);
}

.slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 50%, transparent 100%);
    padding: 60px 40px 40px;
    color: white;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.game-slide:hover .slide-overlay {
    transform: translateY(-10px);
}

.slide-overlay h3 {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 10px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.slide-overlay p {
    font-size: 20px;
    opacity: 0.95;
    font-weight: 600;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 107, 53, 0.9);
    backdrop-filter: blur(10px);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: white;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.5);
}

.carousel-btn:hover {
    background: var(--orange-primary);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.8);
}

.carousel-btn.prev-btn {
    left: 30px;
}

.carousel-btn.next-btn {
    right: 30px;
}

.carousel-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.carousel-dots .carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 107, 53, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dots .carousel-dot.active {
    background: var(--orange-primary);
    border-color: var(--orange-primary);
    transform: scale(1.3);
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.8);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-orange);
    color: var(--text-white);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.btn-gradient {
    background: var(--gradient-orange);
    color: var(--text-white);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--orange-primary);
    border: 2px solid var(--orange-primary);
}

.btn-outline:hover {
    background: var(--orange-primary);
    color: var(--text-white);
}

.btn-large {
    padding: 18px 45px;
    font-size: 16px;
}

.btn-block {
    width: 100%;
    display: block;
}

.btn-whatsapp {
    background: var(--green-whatsapp);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
    background: #20ba5a;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.pulse-btn {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(255, 107, 53, 0.8);
    }
}

/* Hero Section */
.hero {
    background: var(--gradient-hero);
    padding: 100px 0;
    min-height: 700px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255, 255, 255, 0.05) 10px, rgba(255, 255, 255, 0.05) 20px);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    animation: fadeInLeft 1s ease;
}

.badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-title {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-title .highlight {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 19px;
    margin-bottom: 35px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
}

.hero-description strong {
    color: var(--gold);
}

.hero-features {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-item i {
    color: var(--gold);
    font-size: 18px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.trust-badges {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.badge-item i {
    color: var(--gold);
}

/* Hero Images Grid */
.hero-images {
    position: relative;
    animation: fadeInRight 1s ease;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 12px;
    height: 550px;
}

.grid-item {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s;
}

.grid-item:hover {
    transform: scale(1.05) translateY(-5px);
    z-index: 10;
    box-shadow: var(--shadow-glow);
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-1 { grid-column: 1 / 2; grid-row: 1 / 2; }
.item-2 { grid-column: 2 / 3; grid-row: 1 / 2; }
.item-3 { grid-column: 3 / 4; grid-row: 1 / 3; }
.item-4 { grid-column: 1 / 2; grid-row: 2 / 4; }
.item-5 { grid-column: 2 / 3; grid-row: 2 / 3; }
.item-6 { grid-column: 2 / 4; grid-row: 3 / 4; }

/* Canais Section */
.canais-section {
    background: var(--dark-purple);
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    color: var(--orange-primary);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #ffffff 0%, var(--orange-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.canal-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 107, 53, 0.2);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
}

.canal-card:hover {
    transform: translateY(-10px);
    border-color: var(--orange-primary);
    box-shadow: var(--shadow-glow);
    background: rgba(255, 107, 53, 0.1);
}

.canal-logo {
    width: 100px;
    height: 100px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 10px;
}

.canal-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.canal-name {
    font-weight: 600;
    color: var(--text-light);
    font-size: 14px;
}

.canais-cta {
    text-align: center;
}

.canais-note {
    font-size: 18px;
    color: var(--gold);
    margin-bottom: 30px;
    font-weight: 600;
}

/* Planos Section */
.planos-section {
    background: var(--dark-bg);
    padding: 100px 0;
}

.planos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.plano-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
}

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

.plano-card.popular {
    border-color: var(--gold);
    border-width: 3px;
    transform: scale(1.05);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 107, 53, 0.1) 100%);
}

.plano-card.popular:hover {
    transform: scale(1.08) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-gold);
    color: var(--dark-bg);
    padding: 8px 25px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.plano-header {
    margin-bottom: 30px;
}

.plano-name {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--orange-primary);
}

.plano-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 5px;
}

.plano-price .currency {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-light);
}

.plano-price .amount {
    font-size: 64px;
    font-weight: 900;
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.plano-price .period {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    align-self: flex-end;
    padding-bottom: 10px;
}

.plano-features {
    list-style: none;
    margin-bottom: 35px;
    text-align: left;
}

.plano-features li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: var(--text-light);
}

.plano-features li i {
    color: var(--gold);
    font-size: 18px;
}

/* Features Section */
.features {
    background: var(--dark-purple);
    padding: 100px 0;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin: 60px 0;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--orange-primary);
    box-shadow: var(--shadow-glow);
}

.stat-icon {
    font-size: 40px;
    color: var(--orange-primary);
    margin-bottom: 15px;
}

.stat-number {
    font-size: 56px;
    font-weight: 900;
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label {
    font-size: 18px;
    color: var(--text-light);
    font-weight: 600;
}

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

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 107, 53, 0.2);
    border-radius: 15px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s;
}

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

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-orange);
    border-radius: 50%;
    font-size: 36px;
    color: var(--text-white);
}

.benefit-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--orange-primary);
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.features-cta {
    text-align: center;
    margin-top: 50px;
}

/* Teste Section */
.teste-section {
    background: linear-gradient(135deg, var(--dark-purple) 0%, var(--dark-bg) 100%);
    padding: 100px 0;
}

.teste-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.teste-features {
    margin: 40px 0;
}

.teste-feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border-left: 4px solid var(--orange-primary);
}

.teste-feature-item i {
    font-size: 32px;
    color: var(--gold);
    flex-shrink: 0;
}

.teste-feature-item strong {
    display: block;
    font-size: 20px;
    margin-bottom: 5px;
    color: var(--orange-primary);
}

.teste-feature-item p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.teste-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-glow);
}

.teste-image img {
    width: 100%;
    height: auto;
    display: block;
}

.teste-note {
    margin-top: 20px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
}

/* Best Section */
.best {
    background: var(--dark-purple);
    padding: 100px 0;
}

.best-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.best-features-list {
    margin: 30px 0;
}

.best-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 18px;
}

.best-feature i {
    color: var(--gold);
    font-size: 20px;
}

.best-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-glow);
}

.best-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Contact Section */
.contact-section {
    background: var(--dark-bg);
    padding: 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 107, 53, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s;
}

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

.contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 36px;
}

.contact-icon.whatsapp {
    background: var(--green-whatsapp);
    color: white;
}

.contact-icon.clock {
    background: var(--gradient-orange);
    color: white;
}

.contact-icon.support {
    background: var(--gradient-gold);
    color: var(--dark-bg);
}

.contact-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--orange-primary);
}

.contact-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.contact-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: color 0.3s;
}

.contact-link:hover {
    color: var(--orange-primary);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--green-whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float .tooltip {
    position: absolute;
    right: 70px;
    background: var(--dark-bg);
    color: white;
    padding: 10px 15px;
    border-radius: 10px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    border: 1px solid var(--orange-primary);
}

.whatsapp-float:hover .tooltip {
    opacity: 1;
}

/* Footer */
.footer {
    background: #000000;
    padding: 60px 0 30px;
    border-top: 2px solid var(--orange-primary);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 20px;
}

.footer-logo i {
    font-size: 28px;
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-main p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    color: var(--orange-primary);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 12px;
    transition: all 0.3s;
}

.footer-column a:hover {
    color: var(--orange-primary);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 53, 0.2);
    border-radius: 50%;
    color: var(--orange-primary);
    font-size: 18px;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--orange-primary);
    color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

/* Button Ripple Effect */
.btn {
    position: relative;
    overflow: hidden;
}

.btn .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Games Carousel Responsive */
@media (max-width: 768px) {
    .game-slide {
        height: 400px;
    }
    
    .slide-overlay {
        padding: 40px 25px 30px;
    }
    
    .slide-overlay h3 {
        font-size: 32px;
    }
    
    .slide-overlay p {
        font-size: 16px;
    }
    
    .carousel-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .carousel-btn.prev-btn {
        left: 15px;
    }
    
    .carousel-btn.next-btn {
        right: 15px;
    }
}

@media (max-width: 480px) {
    .game-slide {
        height: 300px;
    }
    
    .slide-overlay h3 {
        font-size: 24px;
    }
    
    .slide-overlay p {
        font-size: 14px;
    }
}

/* Responsive */
@media (max-width: 968px) {
    .hero-content,
    .best-content,
    .teste-content {
        grid-template-columns: 1fr;
    }

    .hero-images,
    .best-image,
    .teste-image {
        order: -1;
    }

    .image-grid {
        height: 400px;
    }

    .nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .plano-card.popular {
        transform: scale(1);
    }

    .plano-card.popular:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 38px;
    }

    .section-title {
        font-size: 36px;
    }

    .header-content {
        flex-wrap: wrap;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero {
        padding: 60px 0;
        min-height: auto;
    }

    .canais-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }

    .planos-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }

    .section-title {
        font-size: 28px;
    }

    .image-grid {
        height: 300px;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
    }

    .item-3 {
        grid-column: 2 / 3;
        grid-row: 1 / 2;
    }

    .item-6 {
        grid-column: 1 / 3;
        grid-row: 3 / 4;
    }

    .stats {
        grid-template-columns: 1fr;
    }

    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
        font-size: 28px;
    }
}
