/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-red: #e50914;
    --dark-red: #b81d24;
    --light-red: #f40612;
    --black: #000000;
    --dark-gray: #141414;
    --medium-gray: #1f1f1f;
    --light-gray: #2a2a2a;
    --text-white: #ffffff;
    --text-gray: #b3b3b3;
    --text-light-gray: #8c8c8c;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-white);
    background-color: var(--black);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(229, 9, 20, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 40px;
    width: auto;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--light-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-cta {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-cta:hover {
    background: linear-gradient(135deg, var(--light-red) 0%, var(--primary-red) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(229, 9, 20, 0.4);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.6) 50%,
        rgba(0, 0, 0, 0.8) 100%
    ),
    url('images/teste-iptv-hero-image.webp') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        rgba(229, 9, 20, 0.1) 0%,
        transparent 50%,
        rgba(229, 9, 20, 0.05) 100%
    );
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
    padding: 140px 0 80px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.highlight {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--light-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--text-gray);
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.hero-features {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--text-white);
    font-weight: 500;
}

.feature-item i {
    color: var(--primary-red);
    font-size: 1.2rem;
    width: 20px;
}

.hero-cta {
    margin-top: 2rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    color: white;
    border: none;
    padding: 18px 36px;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 25px rgba(229, 9, 20, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--light-red) 0%, var(--primary-red) 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(229, 9, 20, 0.4);
}

.cta-subtitle {
    margin-top: 12px;
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Video Container */
.video-container {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    border: 2px solid var(--primary-red);
    aspect-ratio: 16 / 9;
    min-height: 250px;
    background: var(--medium-gray);
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: var(--black);
}

/* Remove download button from video controls */
video::-webkit-media-controls-download-button {
    display: none;
}

video::-webkit-media-controls-enclosure {
    overflow: hidden;
}

video::-webkit-media-controls-panel {
    width: calc(100% + 30px);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.6) 0%,
        rgba(229, 9, 20, 0.1) 50%,
        rgba(0, 0, 0, 0.6) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.play-button {
    width: 80px;
    height: 80px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(229, 9, 20, 0.4);
}

.play-button:hover {
    transform: scale(1.1);
    background: var(--light-red);
    box-shadow: 0 12px 35px rgba(229, 9, 20, 0.6);
}

.play-button i {
    font-size: 2rem;
    color: white;
    margin-left: 5px;
}

.video-overlay p {
    color: white;
    font-weight: 500;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    font-size: 1.1rem;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: var(--dark-gray);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--text-white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.benefit-card {
    text-align: center;
    padding: 2rem;
    background: var(--medium-gray);
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid rgba(229, 9, 20, 0.1);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-red);
    background: var(--light-gray);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon i {
    font-size: 2rem;
    color: white;
}

.benefit-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.benefit-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Comparison Section */
.comparison {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--black) 100%);
    position: relative;
    overflow: hidden;
}

.comparison::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        rgba(229, 9, 20, 0.05) 0%,
        transparent 50%,
        rgba(229, 9, 20, 0.05) 100%
    );
    z-index: 1;
}

.comparison-content {
    position: relative;
    z-index: 2;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
}

.competitor-side,
.our-side {
    background: var(--medium-gray);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(229, 9, 20, 0.1);
    transition: all 0.3s ease;
}

.competitor-side {
    border-color: rgba(255, 0, 0, 0.3);
    background: linear-gradient(135deg, var(--medium-gray) 0%, rgba(139, 0, 0, 0.1) 100%);
}

.our-side {
    border-color: var(--primary-red);
    background: linear-gradient(135deg, var(--medium-gray) 0%, rgba(229, 9, 20, 0.1) 100%);
    transform: scale(1.05);
}

.competitor-side h3,
.our-side h3 {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-white);
}

.competitor-list {
    margin-bottom: 2rem;
}

.competitor-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.service-name {
    color: var(--text-gray);
    font-weight: 500;
}

.service-price {
    color: var(--text-white);
    font-weight: 600;
}

.total-competitor {
    text-align: center;
    padding: 20px;
    background: rgba(139, 0, 0, 0.2);
    border-radius: 8px;
    border: 1px solid rgba(255, 0, 0, 0.3);
}

.total-price {
    color: #ff4444;
    font-size: 2rem;
    font-weight: 700;
}

.total-year {
    color: var(--text-gray);
    margin-top: 8px;
    font-size: 0.9rem;
}

.vs-divider {
    display: flex;
    justify-content: center;
    align-items: center;
}

.vs-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 8px 25px rgba(229, 9, 20, 0.4);
    animation: pulseRed 2s infinite;
}

.mega-features {
    margin-bottom: 2rem;
}

.feature-highlight {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--text-white);
    font-weight: 500;
}

.feature-highlight i {
    color: var(--primary-red);
    font-size: 1.2rem;
    width: 20px;
}

.our-price {
    text-align: center;
    margin-bottom: 2rem;
    padding: 20px;
    background: rgba(229, 9, 20, 0.1);
    border-radius: 8px;
    border: 1px solid var(--primary-red);
}

.price-label {
    display: block;
    color: var(--text-gray);
    font-size: 1rem;
    margin-bottom: 8px;
}

.mega-price {
    color: var(--primary-red);
    font-size: 3rem;
    font-weight: 700;
    display: inline-block;
}

.price-period {
    color: var(--text-gray);
    font-size: 1.2rem;
    margin-left: 8px;
}

.savings-highlight {
    text-align: center;
}

.savings-text {
    color: var(--text-white);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.savings-year {
    color: var(--primary-red);
    font-weight: 600;
    font-size: 1.2rem;
}

.comparison-cta {
    text-align: center;
    background: var(--light-gray);
    padding: 3rem 2rem;
    border-radius: 12px;
    border: 2px solid var(--primary-red);
    box-shadow: 0 15px 40px rgba(229, 9, 20, 0.2);
}

.comparison-cta h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-white);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.comparison-cta p {
    color: var(--text-gray);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.urgency-text {
    margin-top: 1rem;
    color: var(--primary-red);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Responsive para Comparison */
@media (max-width: 768px) {
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .vs-divider {
        order: 2;
    }
    
    .competitor-side {
        order: 1;
    }
    
    .our-side {
        order: 3;
        transform: none;
    }
    
    .vs-circle {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }
    
    .mega-price {
        font-size: 2.5rem;
    }
    
    .comparison-cta {
        padding: 2rem 1rem;
    }
    
    .comparison-cta h3 {
        font-size: 1.5rem;
    }
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: var(--black);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--medium-gray);
    border-radius: 8px;
    padding: 2rem;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    border-color: var(--primary-red);
}

.pricing-card.popular {
    border-color: var(--primary-red);
    transform: scale(1.05);
    background: var(--light-gray);
}

.pricing-card.best-value {
    border-color: var(--light-red);
    background: var(--light-gray);
}

.popular-badge,
.best-value-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-red);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    white-space: nowrap;
    max-width: none;
}

.best-value-badge {
    background: var(--light-red);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    margin-bottom: 10px;
}

.currency {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-gray);
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-red);
}

.cents {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-red);
}

.period {
    font-size: 1rem;
    color: var(--text-gray);
    margin-left: 5px;
}

.old-price {
    text-decoration: line-through;
    color: var(--text-light-gray);
    font-size: 1rem;
    margin-right: 10px;
}

.savings {
    background: rgba(229, 9, 20, 0.1);
    color: var(--primary-red);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    border: 1px solid var(--primary-red);
}

.pricing-features {
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--text-white);
}

.feature i {
    color: var(--primary-red);
    font-size: 1rem;
    width: 16px;
}

.btn-plan {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-plan:hover {
    background: linear-gradient(135deg, var(--light-red) 0%, var(--primary-red) 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(229, 9, 20, 0.4);
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: var(--dark-gray);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.testimonial-card {
    background: var(--medium-gray);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    position: relative;
    border: 1px solid rgba(229, 9, 20, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: var(--primary-red);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.stars {
    color: var(--primary-red);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.testimonial-author strong {
    color: var(--text-white);
    font-weight: 600;
}

.testimonial-author span {
    color: var(--text-light-gray);
    font-size: 0.9rem;
    margin-left: 5px;
}

/* FAQ */
.faq {
    padding: 80px 0;
    background: var(--black);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--medium-gray);
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(229, 9, 20, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-red);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--text-white);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--light-gray);
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--primary-red);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: var(--light-gray);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Final CTA */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 0%, rgba(0, 0, 0, 0.1) 50%, transparent 100%);
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-guarantee {
    margin-top: 1.5rem;
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: var(--black);
    color: white;
    padding: 40px 0 20px;
    border-top: 1px solid var(--primary-red);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo img {
    height: 30px;
}

.footer-logo span {
    font-weight: 600;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--light-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-red);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--medium-gray);
    color: var(--text-light-gray);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        min-height: 100vh;
        background-position: center;
        background-size: cover;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        padding: 160px 0 60px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .video-container {
        min-height: 200px;
        aspect-ratio: 16 / 9;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pricing-card.popular {
        transform: none;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav {
        flex-direction: column;
        gap: 20px;
    }
    
    .header {
        background: rgba(0, 0, 0, 0.95);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .nav {
        padding: 1.2rem 0;
    }

    .logo-text {
        font-size: 1.3rem;
    }

    .cta-btn {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .btn-primary {
        padding: 15px 25px;
        font-size: 1rem;
    }
    
    .pricing-card {
        padding: 1.5rem;
    }
    
    .benefit-card {
        padding: 1.5rem;
    }
    
    .hero-content {
        padding: 160px 0 40px;
    }
    
    .video-container {
        min-height: 180px;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
    }
    
    .play-button i {
        font-size: 1.5rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulseRed {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(229, 9, 20, 0.4);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(229, 9, 20, 0);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.pulse-red {
    animation: pulseRed 2s infinite;
}

.shimmer {
    background: linear-gradient(
        90deg,
        var(--primary-red) 0%,
        var(--light-red) 50%,
        var(--primary-red) 100%
    );
    background-size: 200% 100%;
    animation: shimmer 2s ease-in-out infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Netflix-style loading effects */
.loading-skeleton {
    background: linear-gradient(
        90deg,
        var(--medium-gray) 0%,
        var(--light-gray) 50%,
        var(--medium-gray) 100%
    );
    background-size: 200% 100%;
    animation: shimmer 1.5s ease-in-out infinite;
}

/* Glowing border effect */
.glow-border {
    position: relative;
    overflow: hidden;
}

.glow-border::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(229, 9, 20, 0.4),
        transparent
    );
    transition: left 0.5s;
}

.glow-border:hover::before {
    left: 100%;
}

/* Scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--black);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-red);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--light-red);
}

/* Selection colors */
::selection {
    background: var(--primary-red);
    color: white;
}

::-moz-selection {
    background: var(--primary-red);
    color: white;
}

/* Focus states */
button:focus,
a:focus {
    outline: 2px solid var(--primary-red);
    outline-offset: 2px;
}

/* Enhanced button effects */
.btn-primary,
.btn-plan,
.btn-cta {
    position: relative;
    overflow: hidden;
}

.btn-primary::before,
.btn-plan::before,
.btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.5s;
}

.btn-primary:hover::before,
.btn-plan:hover::before,
.btn-cta:hover::before {
    left: 100%;
}

/* Live Notifications */
.notification-container {
    position: fixed;
    top: 100px;
    left: 20px;
    z-index: 9999;
    pointer-events: none;
}

.live-notification {
    background: linear-gradient(135deg, var(--medium-gray) 0%, var(--light-gray) 100%);
    border: 1px solid var(--primary-red);
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    max-width: 350px;
    min-width: 280px;
    transform: translateX(-400px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
}

.live-notification::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(229, 9, 20, 0.1),
        transparent
    );
    animation: shimmer 2s ease-in-out infinite;
}

.live-notification.show {
    transform: translateX(0);
    opacity: 1;
}

.live-notification.hide {
    transform: translateX(-400px);
    opacity: 0;
}

.notification-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.notification-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.notification-info {
    flex: 1;
}

.notification-name {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.notification-action {
    color: var(--primary-red);
    font-size: 0.8rem;
    font-weight: 500;
}

.notification-location {
    color: var(--text-gray);
    font-size: 0.75rem;
    margin-top: 4px;
}

.notification-icon {
    color: var(--primary-red);
    font-size: 1.2rem;
    animation: pulse 2s infinite;
}

.notification-time {
    position: absolute;
    top: 8px;
    right: 12px;
    color: var(--text-light-gray);
    font-size: 0.7rem;
}

/* Notification types */
.notification-signup {
    border-left: 4px solid #4CAF50;
}

.notification-purchase {
    border-left: 4px solid var(--primary-red);
}

.notification-trial {
    border-left: 4px solid #FF9800;
}

/* Responsive para notificações */
@media (max-width: 768px) {
    .notification-container {
        left: 10px;
        right: 10px;
        top: 80px;
    }
    
    .live-notification {
        max-width: none;
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .notification-container {
        left: 5px;
        right: 5px;
    }
    
    .live-notification {
        padding: 12px 15px;
    }
    
    .notification-avatar {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }
}
