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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #000;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(239, 68, 68, 0.2);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.main-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.main-logo:hover {
    transform: scale(1.05);
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #ef4444;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 1rem;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #b91c1c, #991b1b);
    transform: scale(1.05);
}

.btn-secondary {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    color: #fff;
    border: 1px solid rgba(239, 68, 68, 0.3);
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-secondary:hover {
    background: rgba(239, 68, 68, 0.2);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #000 0%, rgba(127, 29, 29, 0.4) 30%, rgba(220, 38, 38, 0.2) 50%, rgba(127, 29, 29, 0.4) 70%, #000 100%);
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(239, 68, 68, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(220, 38, 38, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(185, 28, 28, 0.2) 0%, transparent 60%),
        radial-gradient(circle at 70% 30%, rgba(239, 68, 68, 0.25) 0%, transparent 40%);
    animation: redGlow 8s ease-in-out infinite alternate;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(239, 68, 68, 0.1) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(220, 38, 38, 0.15) 50%, transparent 70%);
    animation: redWaves 12s linear infinite;
}

@keyframes redGlow {
    0% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 0.9;
        transform: scale(1.05);
    }
    100% {
        opacity: 0.7;
        transform: scale(1.02);
    }
}

@keyframes redWaves {
    0% {
        transform: translateX(-100%) rotate(0deg);
    }
    100% {
        transform: translateX(100%) rotate(360deg);
    }
}

/* Enhanced Red Glow Particles */
.fire-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.fire-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: radial-gradient(circle, #ff3333 0%, #ff6666 30%, #ff4444 60%, transparent 100%);
    border-radius: 50%;
    animation: fireRise 8s infinite linear;
    opacity: 0;
    box-shadow: 
        0 0 20px rgba(255, 51, 51, 0.8),
        0 0 40px rgba(255, 68, 68, 0.6),
        0 0 60px rgba(255, 102, 102, 0.4);
}

.fire-particle::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: radial-gradient(circle, transparent, rgba(239, 68, 68, 0.3));
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite alternate;
}

.fire-trail {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 20px;
    background: linear-gradient(to bottom, rgba(255, 68, 68, 0.8), transparent);
    border-radius: 50%;
    animation: trailFade 2s ease-out infinite;
}

@keyframes fireRise {
    0% {
        transform: translateY(100vh) translateX(var(--diagonal-offset, 0px)) scale(0.8);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(-50px) translateX(var(--diagonal-offset, 0px)) scale(0.3);
        opacity: 0;
    }
}

@keyframes trailFade {
    0% {
        opacity: 0.8;
        height: 20px;
    }
    100% {
        opacity: 0;
        height: 5px;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    100% {
        transform: scale(1.5);
        opacity: 0.2;
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 10;
    padding: 5rem 0;
}

.hero-text {
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s ease forwards;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(239, 68, 68, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    border: 1px solid rgba(239, 68, 68, 0.3);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: #fca5a5;
}

.hero-title {
    font-size: 4rem;
    font-weight: bold;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.hero-description {
    font-size: 1.5rem;
    color: #d1d5db;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.highlight {
    color: #ef4444;
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.stat {
    text-align: center;
}

.stat i {
    color: #ef4444;
    margin-bottom: 0.5rem;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
}

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

.hero-media {
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s ease 0.3s forwards;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Video Player Styles */
.video-container {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    width: 500px;
    height: 450px;
}

.video-container:hover {
    transform: scale(1.02);
}

.hero-video {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 1rem;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.3) 0%,
        transparent 30%,
        transparent 70%,
        rgba(0, 0, 0, 0.3) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: 1rem;
}

.video-container:hover .video-overlay {
    opacity: 1;
}

.video-controls {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.play-btn,
.sound-btn {
    width: 4rem;
    height: 4rem;
    background: rgba(220, 38, 38, 0.9);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-btn:hover,
.sound-btn:hover {
    background: #dc2626;
    transform: scale(1.1);
}

.sound-btn {
    width: 3rem;
    height: 3rem;
    font-size: 1.2rem;
}

.video-info {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
}

.video-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    border: 1px solid rgba(239, 68, 68, 0.3);
    font-size: 0.8rem;
    font-weight: 500;
    color: #fca5a5;
}

.video-glow {
    position: absolute;
    inset: -1rem;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.2), rgba(185, 28, 28, 0.2));
    filter: blur(2rem);
    border-radius: 1.5rem;
    z-index: -1;
}

/* Fallback Image Styles */
.hero-image {
    position: relative;
}

.image-glow {
    position: absolute;
    inset: -1rem;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.2), rgba(185, 28, 28, 0.2));
    filter: blur(2rem);
    border-radius: 1.5rem;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    position: relative;
}

.online-indicator {
    position: absolute;
    top: 2.5rem;
    right: 2.5rem;
    background: rgba(34, 197, 94, 0.9);
    backdrop-filter: blur(10px);
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-mouse {
    width: 1.5rem;
    height: 2.5rem;
    border: 2px solid #ef4444;
    border-radius: 1.5rem;
    display: flex;
    justify-content: center;
}

.scroll-dot {
    width: 0.25rem;
    height: 0.75rem;
    background: #ef4444;
    border-radius: 0.25rem;
    margin-top: 0.5rem;
    animation: pulse 2s infinite;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40%, 43% {
        transform: translateX(-50%) translateY(-30px);
    }
    70% {
        transform: translateX(-50%) translateY(-15px);
    }
    90% {
        transform: translateX(-50%) translateY(-4px);
    }
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: linear-gradient(180deg, #000 0%, rgba(127, 29, 29, 0.1) 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.section-description {
    font-size: 1.25rem;
    color: #d1d5db;
    max-width: 48rem;
    margin: 0 auto 1.5rem;
}

.section-divider {
    width: 6rem;
    height: 0.25rem;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    margin: 0 auto;
    border-radius: 0.25rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 5rem;
}

.feature-card {
    padding: 2rem;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    border: 1px solid rgba(239, 68, 68, 0.2);
    transition: all 0.5s ease;
    opacity: 0;
    transform: translateY(50px);
}

.feature-card:hover {
    border-color: rgba(239, 68, 68, 0.5);
    transform: translateY(-10px) scale(1.02);
}

.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: #fff;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.gradient-1 { background: linear-gradient(135deg, #ef4444, #f97316); }
.gradient-2 { background: linear-gradient(135deg, #dc2626, #ef4444); }
.gradient-3 { background: linear-gradient(135deg, #f97316, #dc2626); }
.gradient-4 { background: linear-gradient(135deg, #b91c1c, #ef4444); }

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #fff;
}

.feature-card p {
    color: #d1d5db;
    line-height: 1.6;
}

.features-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.showcase-image {
    position: relative;
}

.showcase-image img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.benefit-card {
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    border: 1px solid rgba(239, 68, 68, 0.2);
    transition: all 0.5s ease;
    opacity: 0;
    transform: translateY(50px);
}

.benefit-card:hover {
    border-color: rgba(239, 68, 68, 0.5);
    transform: translateY(-5px) scale(1.02);
}

.benefit-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.benefit-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: #fff;
}

.benefit-card h3 {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 0.75rem;
    color: #fff;
}

.benefit-card p {
    color: #d1d5db;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background: linear-gradient(180deg, #000 0%, rgba(127, 29, 29, 0.1) 100%);
}

.testimonials-carousel {
    position: relative;
    max-width: 75rem;
    margin: 0 auto;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 3rem;
    height: 3rem;
    background: rgba(220, 38, 38, 0.8);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: #dc2626;
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
    left: 0;
}

.carousel-btn.next {
    right: 0;
}

.testimonials-container {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 0 3rem 1rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.testimonials-container::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex-shrink: 0;
    width: 20rem;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    border: 1px solid rgba(239, 68, 68, 0.2);
    transition: all 0.5s ease;
}

.testimonial-card:hover {
    border-color: rgba(239, 68, 68, 0.5);
    transform: scale(1.05);
}

.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.stars i {
    color: #fbbf24;
}

.testimonial-card p {
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(239, 68, 68, 0.3);
}

.testimonial-author h4 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: #ef4444;
    font-size: 0.9rem;
}

/* Mobile Testimonial Indicators */
.testimonial-indicators {
    display: none;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.testimonial-indicator {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    border: none;
    background: rgba(239, 68, 68, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-indicator.active {
    background: #ef4444;
    transform: scale(1.2);
}

/* Pricing Section */
.pricing {
    padding: 5rem 0;
    background: linear-gradient(180deg, rgba(127, 29, 29, 0.1) 0%, #000 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 75rem;
    margin: 0 auto 4rem;
}

.pricing-card {
    position: relative;
    padding: 2rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(239, 68, 68, 0.2);
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    transition: all 0.7s ease;
    opacity: 0;
    transform: translateY(50px);
}

.pricing-card:hover {
    border-color: rgba(239, 68, 68, 0.5);
    transform: translateY(-10px) scale(1.05);
}

.pricing-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.pricing-card.popular {
    background: linear-gradient(180deg, rgba(185, 28, 28, 0.5) 0%, rgba(127, 29, 29, 0.5) 100%);
    border-color: #ef4444;
    transform: scale(1.05);
}

.pricing-card.popular.visible {
    transform: scale(1.05);
}

.pricing-card.popular:hover {
    transform: scale(1.1);
}

.popular-badge {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.pricing-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #fff;
}

.price {
    text-align: center;
    margin-bottom: 2rem;
}

.currency {
    font-size: 1.5rem;
    color: #ef4444;
}

.amount {
    font-size: 3rem;
    font-weight: bold;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.period {
    color: #9ca3af;
    margin-left: 0.5rem;
}

.features-list {
    list-style: none;
    margin-bottom: 2rem;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #d1d5db;
}

.features-list i {
    width: 1.5rem;
    height: 1.5rem;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.75rem;
}

.btn-plan {
    width: 100%;
    padding: 1rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(239, 68, 68, 0.3);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
}

.btn-plan:hover {
    background: rgba(239, 68, 68, 0.2);
    transform: scale(1.05);
}

.btn-plan.primary {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    border: none;
}

.btn-plan.primary:hover {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
}

.cta-section {
    text-align: center;
    margin-top: 4rem;
}

.cta-card {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(239, 68, 68, 0.2);
    max-width: 32rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cta-icon {
    font-size: 4rem;
    color: #ef4444;
    margin-bottom: 1.5rem;
}

.cta-card h3 {
    font-size: 1.875rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #fff;
}

.cta-card p {
    color: #d1d5db;
    margin-bottom: 1.5rem;
}

.cta-card .btn-primary {
    margin: 0 auto;
}

/* Footer */
.footer {
    background: #000;
    border-top: 1px solid rgba(239, 68, 68, 0.2);
    padding: 3rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    color: #9ca3af;
    margin: 1.5rem 0;
    max-width: 28rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(220, 38, 38, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ef4444;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: rgba(220, 38, 38, 0.3);
}

.footer-section h3 {
    color: #fff;
    font-weight: bold;
    margin-bottom: 1rem;
}

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

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

.footer-section a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ef4444;
}

.footer-bottom {
    border-top: 1px solid rgba(239, 68, 68, 0.2);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: #9ca3af;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    z-index: 1000;
    width: 4rem;
    height: 4rem;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    opacity: 0;
    transform: translateY(100px);
}

.whatsapp-btn.visible {
    opacity: 1;
    transform: translateY(0);
}

.whatsapp-btn:hover {
    background: #128c7e;
    transform: scale(1.1);
}

.whatsapp-btn i {
    font-size: 2rem;
    color: #fff;
}

.whatsapp-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #25d366;
    border-radius: 50%;
    animation: ping 2s infinite;
    opacity: 0.2;
}

@keyframes ping {
    75%, 100% {
        transform: scale(2);
        opacity: 0;
    }
}

.whatsapp-tooltip {
    position: absolute;
    right: 100%;
    margin-right: 0.75rem;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -0.25rem;
    transform: translateY(-50%) rotate(45deg);
    width: 0.5rem;
    height: 0.5rem;
    background: rgba(0, 0, 0, 0.8);
}

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

/* Purchase Notification Popup */
.purchase-notification {
    position: fixed;
    z-index: 1001;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 1rem;
    padding: 1rem 1.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform: translateX(-120%);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    max-width: 350px;
    min-width: 300px;
}

/* Desktop positioning */
@media (min-width: 769px) {
    .purchase-notification {
        bottom: 2rem;
        left: 2rem;
    }
}

/* Mobile positioning */
@media (max-width: 768px) {
    .purchase-notification {
        top: 2rem;
        left: 1rem;
        right: 1rem;
        max-width: none;
        min-width: auto;
        transform: translateY(-120%);
    }
    
    .purchase-notification.show {
        transform: translateY(0);
    }
}

.purchase-notification.show {
    transform: translateX(0);
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
}

.notification-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    animation: pulse-green 2s infinite;
}

.notification-icon i {
    color: #fff;
    font-size: 1.2rem;
}

@keyframes pulse-green {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(34, 197, 94, 0);
    }
}

.notification-text {
    flex: 1;
    color: #fff;
}

.notification-name {
    font-weight: 600;
    font-size: 1rem;
    color: #22c55e;
    margin-bottom: 0.25rem;
}

.notification-message {
    font-size: 0.9rem;
    color: #d1d5db;
    margin-bottom: 0.25rem;
}

.notification-plan {
    font-weight: 600;
    font-size: 0.95rem;
    color: #ef4444;
}

.notification-close {
    position: absolute;
    top: -0.5rem;
    right: -0.5rem;
    width: 1.5rem;
    height: 1.5rem;
    background: rgba(239, 68, 68, 0.8);
    border: none;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.notification-close:hover {
    background: #dc2626;
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .video-container {
        width: 450px;
        height: 400px;
    }
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

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

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

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.25rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .section-title {
        font-size: 2rem;
    }

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

    .features-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .carousel-btn {
        display: none;
    }

    .testimonials-container {
        padding: 0 1rem 1rem;
    }

    .testimonial-indicators {
        display: flex;
    }

    /* Video controls adjustments for mobile */
    .video-container {
        width: 400px;
        height: 350px;
    }
    
    .play-btn,
    .sound-btn {
        width: 3rem;
        height: 3rem;
        font-size: 1.2rem;
    }

    .sound-btn {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.5rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .btn-large {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

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

    .whatsapp-btn {
        width: 3.5rem;
        height: 3.5rem;
        right: 1rem;
        bottom: 1rem;
    }

    .whatsapp-btn i {
        font-size: 1.5rem;
    }

    /* Smaller video controls for mobile */
    .video-container {
        width: 320px;
        height: 280px;
    }
    
    .play-btn {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1rem;
    }

    .sound-btn {
        width: 2rem;
        height: 2rem;
        font-size: 0.9rem;
    }

    /* Mobile notification adjustments */
    .purchase-notification {
        left: 0.5rem;
        right: 0.5rem;
        top: 1rem;
        padding: 0.75rem 1rem;
    }

    .notification-content {
        gap: 0.75rem;
    }

    .notification-icon {
        width: 2.5rem;
        height: 2.5rem;
    }

    .notification-name {
        font-size: 0.9rem;
    }

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

    .notification-plan {
        font-size: 0.85rem;
    }
}


    .whatsapp-tooltip {
      position: fixed !important;   /* força a posição fixa */
      top: 0 !important;            /* gruda no topo */
      right: 0 !important;          /* canto direito */
      margin: 10px !important;      /* espaçamento */
      background-color: #25D366;
      color: white;
      padding: 12px 20px;
      border-radius: 0 0 0 10px;
      font-weight: bold;
      z-index: 99999;
      cursor: pointer;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      transition: 0.3s ease;
    }

    .whatsapp-tooltip:hover {
      background-color: #1ebe5d;
    }
