/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* ===== BACKGROUND EFFECTS ===== */
.background-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(52, 91, 125, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(42, 157, 206, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(52, 91, 125, 0.05) 0%, transparent 50%);
    animation: floatParticles 20s ease-in-out infinite;
}

.gradient-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(10, 10, 10, 0.95) 0%, 
        rgba(20, 20, 20, 0.9) 25%, 
        rgba(30, 30, 30, 0.85) 50%, 
        rgba(20, 20, 20, 0.9) 75%, 
        rgba(10, 10, 10, 0.95) 100%);
    animation: gradientShift 15s ease-in-out infinite;
}

@keyframes floatParticles {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(120deg); }
    66% { transform: translateY(10px) rotate(240deg); }
}

@keyframes gradientShift {
    0%, 100% { opacity: 0.95; }
    50% { opacity: 0.85; }
}

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

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(42, 157, 206, 0.2);
}

.nav {
    padding: 1rem 0;
}

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

.nav-logo h1 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #2A9DCE;
    text-shadow: 0 0 10px rgba(42, 157, 206, 0.5);
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #2A9DCE;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #2A9DCE;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 0 80px;
    position: relative;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-title .highlight {
    color: #2A9DCE;
    text-shadow: 0 0 20px rgba(42, 157, 206, 0.6);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #e5e5e5;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #e5e5e5;
    font-weight: 500;
}

.feature-item i {
    color: #2A9DCE;
    font-size: 1.2rem;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid transparent;
    min-width: 250px;
    justify-content: center;
}

.cta-button.primary {
    background: linear-gradient(135deg, #345B7D, #2A9DCE);
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(42, 157, 206, 0.4);
}

.cta-button.primary:hover {
    background: linear-gradient(135deg, #2A9DCE, #345B7D);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(42, 157, 206, 0.6);
}

.cta-button.secondary {
    background: transparent;
    color: #2A9DCE;
    border: 2px solid #2A9DCE;
}

.cta-button.secondary:hover {
    background: #2A9DCE;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(42, 157, 206, 0.4);
}

.cta-button i {
    font-size: 1.3rem;
}

.hero-disclaimer {
    font-size: 1rem;
    color: #fbbf24;
    font-weight: 600;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== SECTIONS ===== */
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    color: #ffffff;
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #e5e5e5;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== PROBLEMS SECTION ===== */
.problems-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.9), rgba(25, 25, 25, 0.8));
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.problem-card {
    background: rgba(30, 30, 30, 0.8);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(42, 157, 206, 0.2);
    transition: all 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-5px);
    border-color: rgba(42, 157, 206, 0.5);
    box-shadow: 0 10px 30px rgba(42, 157, 206, 0.2);
}

.problem-icon {
    font-size: 3rem;
    color: #2A9DCE;
    margin-bottom: 1rem;
}

.problem-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.problem-card p {
    color: #e5e5e5;
    line-height: 1.6;
}

/* ===== FOOTBALL SECTION ===== */
.football-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.9), rgba(10, 10, 10, 0.8));
}

.football-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.football-card {
    background: rgba(30, 30, 30, 0.8);
    padding: 1.5rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(42, 157, 206, 0.2);
    transition: all 0.3s ease;
}

.football-card:hover {
    transform: translateY(-5px);
    border-color: rgba(42, 157, 206, 0.5);
    box-shadow: 0 10px 30px rgba(42, 157, 206, 0.2);
}

.football-card img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 1rem;
    border-radius: 8px;
}

.football-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.football-card p {
    color: #e5e5e5;
    font-size: 0.9rem;
}

/* ===== CONTENT SECTION ===== */
.content-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.9), rgba(25, 25, 25, 0.8));
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.content-card {
    background: rgba(30, 30, 30, 0.8);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(42, 157, 206, 0.2);
    transition: all 0.3s ease;
}

.content-card:hover {
    transform: translateY(-5px);
    border-color: rgba(42, 157, 206, 0.5);
    box-shadow: 0 10px 30px rgba(42, 157, 206, 0.2);
}

.content-icon {
    font-size: 3rem;
    color: #2A9DCE;
    margin-bottom: 1rem;
}

.content-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.content-card p {
    color: #e5e5e5;
    line-height: 1.6;
}

/* ===== STREAMINGS SECTION ===== */
.streamings-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.9), rgba(10, 10, 10, 0.8));
}

.streamings-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.streaming-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(30, 30, 30, 0.8);
    border-radius: 12px;
    border: 1px solid rgba(42, 157, 206, 0.2);
    transition: all 0.3s ease;
}

.streaming-item:hover {
    transform: translateY(-3px);
    border-color: rgba(42, 157, 206, 0.5);
    box-shadow: 0 8px 25px rgba(42, 157, 206, 0.2);
}

.streaming-logo {
    width: 80px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.7rem;
    color: #ffffff;
}

.netflix-logo {
    background: #e50914;
}

.streaming-logo.hbo {
    background: #9b59b6;
}

.streaming-logo.prime {
    background: #00a8e1;
}

.streaming-logo.disney {
    background: #113ccf;
}

.streaming-logo.globo {
    background: #0f7dc2;
}

.streaming-logo.crunchyroll {
    background: #f47521;
}

.streaming-logo.star {
    background: #1a1a1a;
}

.streaming-logo.paramount {
    background: #0064ff;
}

.streaming-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #e5e5e5;
    text-align: center;
}

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

/* ===== COMPATIBILITY SECTION ===== */
.compatibility-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.9), rgba(25, 25, 25, 0.8));
}

.compatibility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.compatibility-category h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #2A9DCE;
    text-align: center;
}

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

.device-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(30, 30, 30, 0.8);
    border-radius: 12px;
    border: 1px solid rgba(42, 157, 206, 0.2);
    transition: all 0.3s ease;
}

.device-item:hover {
    transform: translateY(-3px);
    border-color: rgba(42, 157, 206, 0.5);
    box-shadow: 0 8px 25px rgba(42, 157, 206, 0.2);
}

.device-item img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.device-item span {
    font-size: 0.8rem;
    font-weight: 600;
    color: #e5e5e5;
    text-align: center;
}

/* ===== COMPARISON SECTION ===== */
.comparison-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.9), rgba(10, 10, 10, 0.8));
}

.comparison-table {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(30, 30, 30, 0.8);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(42, 157, 206, 0.2);
}

.comparison-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.comparison-col {
    padding: 2rem;
    text-align: center;
}

.comparison-col.playcine {
    background: linear-gradient(135deg, rgba(42, 157, 206, 0.2), rgba(42, 157, 206, 0.1));
    border-right: 1px solid rgba(42, 157, 206, 0.3);
}

.comparison-col.others {
    background: linear-gradient(135deg, rgba(60, 60, 60, 0.2), rgba(60, 60, 60, 0.1));
}

.comparison-col h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.comparison-col.playcine h3 {
    color: #2A9DCE;
}

.comparison-col.others h3 {
    color: #9ca3af;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid rgba(60, 60, 60, 0.3);
}

.comparison-item {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.comparison-item.playcine {
    background: rgba(42, 157, 206, 0.05);
    border-right: 1px solid rgba(42, 157, 206, 0.2);
}

.comparison-item.others {
    background: rgba(60, 60, 60, 0.05);
}

.comparison-item i {
    font-size: 1.2rem;
}

.comparison-item.playcine i {
    color: #10b981;
}

.comparison-item.others i {
    color: #ef4444;
}

.comparison-row.price .comparison-item {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
}

.price-value {
    font-size: 2rem;
    font-weight: 800;
}

.comparison-item.playcine .price-value {
    color: #10b981;
}

.comparison-item.others .price-value {
    color: #ef4444;
}

.price-label {
    font-size: 0.9rem;
    color: #9ca3af;
}

/* ===== WHY PAID SECTION ===== */
.why-paid-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.9), rgba(25, 25, 25, 0.8));
}

.why-paid-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.why-paid-card {
    background: rgba(30, 30, 30, 0.8);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(42, 157, 206, 0.2);
    transition: all 0.3s ease;
}

.why-paid-card:hover {
    transform: translateY(-5px);
    border-color: rgba(42, 157, 206, 0.5);
    box-shadow: 0 10px 30px rgba(42, 157, 206, 0.2);
}

.why-paid-icon {
    font-size: 3rem;
    color: #2A9DCE;
    margin-bottom: 1rem;
}

.why-paid-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.why-paid-card p {
    color: #e5e5e5;
    line-height: 1.6;
}

/* ===== PLANS SECTION ===== */
.plans-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.9), rgba(10, 10, 10, 0.8));
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.plan-card {
    background: rgba(30, 30, 30, 0.8);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    border: 2px solid rgba(42, 157, 206, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.plan-card:hover {
    transform: translateY(-5px);
    border-color: rgba(42, 157, 206, 0.5);
    box-shadow: 0 15px 40px rgba(42, 157, 206, 0.3);
}

.plan-card.featured {
    border-color: #2A9DCE;
    background: linear-gradient(135deg, rgba(42, 157, 206, 0.1), rgba(30, 30, 30, 0.8));
}

.plan-card.special {
    border-color: #fbbf24;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1), rgba(30, 30, 30, 0.8));
}

.plan-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: #2A9DCE;
    color: #ffffff;
    padding: 0.5rem 1.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 0 0 12px 12px;
}

.plan-header h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.plan-header p {
    color: #e5e5e5;
    margin-bottom: 2rem;
}

.plan-price {
    margin-bottom: 2rem;
}

.plan-price .currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2A9DCE;
}

.plan-price .amount {
    font-size: 3rem;
    font-weight: 900;
    color: #2A9DCE;
}

.plan-price .period {
    font-size: 1rem;
    color: #e5e5e5;
}

.plan-features {
    margin-bottom: 2rem;
    text-align: left;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.feature i {
    color: #10b981;
    font-size: 1.1rem;
}

.feature span {
    color: #e5e5e5;
    font-weight: 500;
}

.plan-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #2A9DCE, #345B7D);
    color: #ffffff;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
    width: 100%;
    justify-content: center;
}

.plan-button:hover {
    background: linear-gradient(135deg, #345B7D, #345B7D);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(42, 157, 206, 0.4);
}

.plan-guarantee {
    font-size: 0.8rem;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.9), rgba(25, 25, 25, 0.8));
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: rgba(30, 30, 30, 0.8);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(42, 157, 206, 0.2);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(42, 157, 206, 0.5);
    box-shadow: 0 10px 30px rgba(42, 157, 206, 0.2);
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2A9DCE, #345B7D);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: #ffffff;
    margin: 0 auto 1rem;
}

.testimonial-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-align: center;
    color: #ffffff;
}

.testimonial-rating {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.testimonial-rating i {
    color: #fbbf24;
    font-size: 1rem;
}

.testimonial-card p {
    color: #e5e5e5;
    line-height: 1.6;
    font-style: italic;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.9), rgba(10, 10, 10, 0.8));
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #e5e5e5;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(30, 30, 30, 0.8);
    border-radius: 12px;
    border: 1px solid rgba(42, 157, 206, 0.2);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: #2A9DCE;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #e5e5e5;
    font-weight: 600;
}

/* ===== FINAL CTA SECTION ===== */
.final-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.9), rgba(25, 25, 25, 0.8));
    text-align: center;
}

.final-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.cta-button.large {
    padding: 1.25rem 2.5rem;
    font-size: 1.2rem;
    min-width: 280px;
}

.final-cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.final-disclaimer {
    font-size: 1rem;
    color: #fbbf24;
    font-weight: 600;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== FOOTER ===== */
.footer {
    background: rgba(10, 10, 10, 0.95);
    padding: 60px 0 20px;
    border-top: 1px solid rgba(42, 157, 206, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #2A9DCE;
    margin-bottom: 0.5rem;
}

.footer-logo p {
    color: #e5e5e5;
}

.footer-links h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #e5e5e5;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-contact h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-contact p {
    color: #e5e5e5;
    margin-bottom: 1rem;
}

.footer-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #25d366;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-whatsapp:hover {
    background: #128c7e;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(60, 60, 60, 0.3);
    color: #9ca3af;
}

/* ===== WHATSAPP FLOAT BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

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

.whatsapp-float i {
    font-size: 1.8rem;
    color: #ffffff;
}

@keyframes pulse {
    0% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.8); }
    100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
}

/* ===== WHATSAPP POPUP ===== */
.whatsapp-popup {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 300px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    z-index: 1001;
    transform: scale(0);
    opacity: 0;
    transition: all 0.3s ease;
}

.whatsapp-popup.show {
    transform: scale(1);
    opacity: 1;
}

.popup-content {
    padding: 0;
}

.popup-header {
    background: #25d366;
    color: #ffffff;
    padding: 1rem;
    border-radius: 16px 16px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.popup-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
}

.popup-close {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-body {
    padding: 1.5rem;
    color: #333333;
}

.popup-body p {
    margin-bottom: 1rem;
    line-height: 1.5;
}

.popup-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #25d366;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

.popup-button:hover {
    background: #128c7e;
}

/* ===== LIVE NOTIFICATIONS ===== */
.live-notifications {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
}

.notification {
    background: rgba(30, 30, 30, 0.95);
    color: #ffffff;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(42, 157, 206, 0.3);
    margin-bottom: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transform: translateX(-100%);
    opacity: 0;
    transition: all 0.5s ease;
    max-width: 300px;
}

.notification.show {
    transform: translateX(0);
    opacity: 1;
}

.notification.hide {
    transform: translateX(-100%);
    opacity: 0;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.notification-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2A9DCE, #345B7D);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: #ffffff;
}

.notification-text {
    flex: 1;
}

.notification-name {
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.notification-message {
    font-size: 0.8rem;
    color: #e5e5e5;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    /* Navigation */
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    /* Hero Section */
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-features {
        gap: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        min-width: 280px;
        padding: 1.2rem 2rem;
        font-size: 1rem;
    }
    
    .cta-button i {
        font-size: 1.2rem;
    }
    
    /* Sections */
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    /* Grids */
    .problems-grid,
    .content-grid,
    .why-paid-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .football-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .streamings-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .streaming-item {
        padding: 0.75rem;
    }
    
    .streaming-logo {
        width: 60px;
        height: 30px;
        font-size: 0.6rem;
    }
    
    .streaming-name {
        font-size: 0.8rem;
    }
    
    /* Compatibility */
    .compatibility-grid {
        grid-template-columns: 1fr;
    }
    
    .devices-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Comparison */
    .comparison-table {
        margin: 0 10px;
    }
    
    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr;
    }
    
    .comparison-item.playcine {
        border-right: none;
        border-bottom: 1px solid rgba(42, 157, 206, 0.2);
    }
    
    .comparison-item.others {
        border-top: 1px solid rgba(60, 60, 60, 0.3);
    }
    
    /* Plans */
    .plans-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    /* About */
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr 1fr;
    }
    
    /* Final CTA */
    .final-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .final-cta-features {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    /* WhatsApp */
    .whatsapp-popup {
        right: 10px;
        left: 10px;
        width: auto;
        bottom: 100px;
    }
    
    .live-notifications {
        left: 10px;
        right: 10px;
    }
    
    .notification {
        max-width: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .cta-button {
        min-width: 250px;
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .live-notifications {
        bottom: 90px;
        left: 16px;
    }
    
    .football-grid {
        grid-template-columns: 1fr;
    }
    
    .streamings-showcase {
        grid-template-columns: 1fr;
    }
    
    .devices-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .final-cta-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu.active {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.95);
        padding: 1rem 2rem;
        z-index: 999;
        border-top: 1px solid rgba(42, 157, 206, 0.2);
    }
}



/* ===== HERO PROMO SECTION ===== */
.hero-promo {
    background: linear-gradient(135deg, rgba(42, 157, 206, 0.15), rgba(52, 91, 125, 0.1));
    border: 2px solid rgba(42, 157, 206, 0.3);
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 35px rgba(42, 157, 206, 0.2);
}

.hero-promo::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(42, 157, 206, 0.1), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    50% { transform: translateX(100%) translateY(100%) rotate(45deg); }
    100% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
}

.promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #2A9DCE, #345B7D);
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 20px rgba(42, 157, 206, 0.4);
    animation: pulse-promo 2s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

@keyframes pulse-promo {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.promo-badge i {
    font-size: 1.2rem;
    animation: fire-flicker 1.5s ease-in-out infinite;
}

@keyframes fire-flicker {
    0%, 100% { color: #ffffff; }
    25% { color: #fbbf24; }
    50% { color: #f59e0b; }
    75% { color: #ffffff; }
}

.promo-offer {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.promo-offer h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.price-highlight {
    color: #fbbf24;
    font-size: 2.2rem;
    text-shadow: 0 0 15px rgba(251, 191, 36, 0.6);
    animation: glow-price 2s ease-in-out infinite;
}

@keyframes glow-price {
    0%, 100% { text-shadow: 0 0 15px rgba(251, 191, 36, 0.6); }
    50% { text-shadow: 0 0 25px rgba(251, 191, 36, 0.9); }
}

.promo-detail {
    font-size: 1.2rem;
    color: #e5e5e5;
    font-weight: 600;
}

.promo-test {
    position: relative;
    z-index: 2;
}

.test-info {
    display: inline-block;
    align-items: center;
    gap: 0.75rem;
    background: rgba(30, 30, 30, 0.8);
    padding: 1rem 2rem;
    border-radius: 15px;
    border: 1px solid rgba(42, 157, 206, 0.3);
    font-size: 1.1rem;
    color: #ffffff;
    font-weight: 600;
    margin: 0;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.test-info i {
    color: #2A9DCE;
    font-size: 1.2rem;
}

.test-info:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(42, 157, 206, 0.4);
    border-color: rgba(42, 157, 206, 0.5);
    background: rgba(42, 157, 206, 0.1);
}

.test-info:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(42, 157, 206, 0.3);
}

.test-price {
    color: #10b981;
    font-weight: 800;
    font-size: 1.2rem;
}

/* Responsividade para mobile */
@media (max-width: 768px) {
    .hero-promo {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .promo-badge {
        font-size: 1rem;
        padding: 0.6rem 1.2rem;
    }
    
    .promo-offer h3 {
        font-size: 1.5rem;
    }
    
    .price-highlight {
        font-size: 1.8rem;
    }
    
    .promo-detail {
        font-size: 1.1rem;
    }
    
    .test-info {
        flex-direction: column;
        gap: 0.5rem;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-promo {
        padding: 1rem;
        margin: 1rem 0;
    }
    
    .promo-offer h3 {
        font-size: 1.3rem;
    }
    
    .price-highlight {
        font-size: 1.6rem;
    }
    
    .promo-detail {
        font-size: 1rem;
    }
    
    .test-info {
        font-size: 0.95rem;
        padding: 0.8rem 2rem;
    }
}
