/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Fix para API obsoleta H1UserAgentFontSizeInSection */
h1 {
    font-size: 2em !important;
    margin: 0.67em 0;
}

section h1, article h1, aside h1, nav h1 {
    font-size: 2em !important;
}

/* Prevenir mudanças de layout (CLS) */
section {
    min-height: 0;
}

.how-it-works, .why-choose, .apps-section, .plans-section, .reviews-section, .faq-section {
    contain: layout;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(15px);
    border-bottom: 2px solid #00ffff;
    box-shadow: 0 5px 30px rgba(0, 255, 255, 0.3);
    transition: transform 0.3s ease-in-out;
}

.header.header-hidden {
    transform: translateY(-100%);
}

.header.header-visible {
    transform: translateY(0);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    position: relative;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: 170px;
    filter: drop-shadow(0 0 20px #00ffff50) drop-shadow(0 0 40px #00ffff30);
    transition: all 0.3s ease;
    animation: logoGlow 3s ease-in-out infinite;
    object-fit: contain;
}

.logo-img:hover {
    filter: drop-shadow(0 0 30px #00ffff) drop-shadow(0 0 60px #00ffff50);
    transform: scale(1.05);
}

@keyframes logoGlow {
    0%, 100% { 
        filter: drop-shadow(0 0 20px #00ffff50) drop-shadow(0 0 40px #00ffff30);
    }
    50% { 
        filter: drop-shadow(0 0 30px #00ffff80) drop-shadow(0 0 60px #00ffff50);
    }
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.nav a:hover {
    color: #00ffff;
    text-shadow: 0 0 10px #00ffff;
}

/* Mobile CTA Button */
.mobile-cta-btn {
    display: none;
    background: linear-gradient(45deg, #00ff41, #00cc33);
    border: none;
    padding: 10px 15px;
    border-radius: 25px;
    color: #003d4d;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 255, 65, 0.4);
    align-items: center;
    gap: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: none;
    text-decoration: none;
}

.mobile-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 255, 65, 0.6);
    background: linear-gradient(45deg, #00ff55, #00e63d);
}

.mobile-whatsapp-icon {
    width: 16px;
    height: 16px;
    background: #003d4d;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893A11.821 11.821 0 0020.465 3.085'/%3E%3C/svg%3E") no-repeat center;
    mask-size: contain;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893A11.821 11.821 0 0020.465 3.085'/%3E%3C/svg%3E") no-repeat center;
    -webkit-mask-size: contain;
    flex-shrink: 0;
}

.mobile-cta-text {
    font-size: 12px;
    color: #003d4d;
    font-weight: 800;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, #00ffff10 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.hero-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: bold;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #00ffff, #ffffff, #0080ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px #00ffff50;
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 40px;
    color: #cccccc;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

/* Features Icons */
.features-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.hd-icon {
    background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
    box-shadow: 0 0 20px #ff6b6b50;
}

.hd-icon::before {
    content: 'HD';
    font-weight: bold;
    color: white;
}

.k4-icon {
    background: linear-gradient(45deg, #4ecdc4, #44a08d);
    box-shadow: 0 0 20px #4ecdc450;
    animation-delay: -0.5s;
}

.k4-icon::before {
    content: '4K';
    font-weight: bold;
    color: white;
}

.sport-icon {
    background: linear-gradient(45deg, #feca57, #ff9ff3);
    box-shadow: 0 0 20px #feca5750;
    animation-delay: -1s;
}

.sport-icon::before {
    content: '⚽';
    font-size: 24px;
}

.news-icon {
    background: linear-gradient(45deg, #48dbfb, #0abde3);
    box-shadow: 0 0 20px #48dbfb50;
    animation-delay: -1.5s;
}

.news-icon::before {
    content: '📰';
    font-size: 24px;
}

.movie-icon {
    background: linear-gradient(45deg, #ff9ff3, #f368e0);
    box-shadow: 0 0 20px #ff9ff350;
    animation-delay: -2s;
}

.movie-icon::before {
    content: '🎬';
    font-size: 24px;
}

.live-icon {
    background: linear-gradient(45deg, #ff6348, #ff4757);
    box-shadow: 0 0 20px #ff634850;
    animation-delay: -2.5s;
}

.live-icon::before {
    content: '📡';
    font-size: 24px;
}

/* Animated Numbers */
.animated-numbers {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.number {
    font-size: 36px;
    font-weight: bold;
    background: linear-gradient(45deg, #00ffff, #0080ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow 2s ease-in-out infinite alternate;
    min-width: 80px;
    text-align: center;
    display: inline-block;
}

@keyframes glow {
    from { text-shadow: 0 0 10px #00ffff50; }
    to { text-shadow: 0 0 20px #00ffff, 0 0 30px #00ffff; }
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #00ffff, #0080ff);
    border: none;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: bold;
    color: #000;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px #00ffff30;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    text-align: center;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px #00ffff50;
}

.cta-button.secondary {
    background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
    box-shadow: 0 10px 30px #ff6b6b30;
}

.cta-button.secondary:hover {
    box-shadow: 0 15px 40px #ff6b6b50;
}

.cta-button.large {
    padding: 25px 50px;
    font-size: 20px;
}

/* CTA Sections */
.cta-section {
    padding: 60px 0;
    text-align: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    position: relative;
    z-index: 2;
}

/* Sections */
.how-it-works, .why-choose, .apps-section, .plans-section, .reviews-section, .faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
    position: relative;
    z-index: 2;
}

.how-it-works h2, .why-choose h2, .apps-section h2, .plans-section h2, .reviews-section h2, .faq-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    background: linear-gradient(45deg, #00ffff, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Steps Grid */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.step-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #00ffff30;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #00ffff10, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.step-card:hover::before {
    opacity: 1;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px #00ffff20;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #00ffff, #0080ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    color: #000;
    margin: 0 auto 20px;
}

.step-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #00ffff;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #00ffff30;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px #00ffff20;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    animation: rotate 4s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.auto-icon {
    background: linear-gradient(45deg, #00ffff, #0080ff);
}

.auto-icon::before {
    content: '⚡';
}

.hours-icon {
    background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
}

.hours-icon::before {
    content: '⏰';
}

.quality-icon {
    background: linear-gradient(45deg, #4ecdc4, #44a08d);
}

.quality-icon::before {
    content: '💎';
}

.support-icon {
    background: linear-gradient(45deg, #feca57, #ff9ff3);
}

.support-icon::before {
    content: '💬';
}

.time-icon {
    background: linear-gradient(45deg, #48dbfb, #0abde3);
}

.time-icon::before {
    content: '🕐';
}

.calendar-icon {
    background: linear-gradient(45deg, #ff9ff3, #f368e0);
}

.calendar-icon::before {
    content: '📅';
}

.benefit-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #00ffff;
}

/* Apps Grid */
.apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.app-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #00ffff30;
    transition: all 0.3s ease;
}

.app-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px #00ffff20;
}

.app-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    color: white;
}

.ssiptv-icon { background: linear-gradient(45deg, #ff6b6b, #ff8e8e); }
.kodai-icon { background: linear-gradient(45deg, #4ecdc4, #44a08d); }
.mx-icon { background: linear-gradient(45deg, #feca57, #ff9ff3); }
.vlc-icon { background: linear-gradient(45deg, #48dbfb, #0abde3); }
.kodi-icon { background: linear-gradient(45deg, #ff9ff3, #f368e0); }
.perfect-icon { background: linear-gradient(45deg, #ff6348, #ff4757); }
.tivimate-icon { background: linear-gradient(45deg, #00ffff, #0080ff); }
.smart-icon { background: linear-gradient(45deg, #a55eea, #8854d0); }
.iptv-icon { background: linear-gradient(45deg, #26de81, #20bf6b); }
.gse-icon { background: linear-gradient(45deg, #fd79a8, #e84393); }
.lazy-icon { background: linear-gradient(45deg, #fdcb6e, #e17055); }
.duplex-icon { background: linear-gradient(45deg, #6c5ce7, #a29bfe); }

.ssiptv-icon::before { content: 'SS'; }
.kodai-icon::before { content: 'KD'; }
.mx-icon::before { content: 'MX'; }
.vlc-icon::before { content: 'VLC'; }
.kodi-icon::before { content: 'KO'; }
.perfect-icon::before { content: 'PP'; }
.tivimate-icon::before { content: 'TM'; }
.smart-icon::before { content: 'SI'; }
.iptv-icon::before { content: 'IS'; }
.gse-icon::before { content: 'GSE'; }
.lazy-icon::before { content: 'LZ'; }
.duplex-icon::before { content: 'DX'; }

.app-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #00ffff;
}

.app-card p {
    font-size: 14px;
    color: #cccccc;
}

/* Plans Grid */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.plan-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #00ffff30;
    transition: all 0.3s ease;
    position: relative;
}

.plan-card.popular {
    border: 2px solid #00ffff;
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #00ffff, #0080ff);
    color: #000;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 14px;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px #00ffff20;
}

.plan-card.popular:hover {
    transform: translateY(-10px) scale(1.05);
}

.plan-card h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #00ffff;
}

.plan-features {
    margin-bottom: 30px;
}

.plan-features p {
    margin-bottom: 10px;
    color: #cccccc;
}

.plan-button {
    display: inline-block;
    background: linear-gradient(45deg, #00ffff, #0080ff);
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: bold;
    color: #000;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-decoration: none;
    text-align: center;
}

.plan-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px #00ffff30;
}

/* Reviews Grid */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.review-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #00ffff30;
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px #00ffff20;
}

.stars {
    font-size: 20px;
    margin-bottom: 15px;
}

.review-card p {
    margin-bottom: 20px;
    color: #cccccc;
    font-style: italic;
}

.reviewer strong {
    color: #00ffff;
}

.reviewer span {
    color: #999;
    font-size: 14px;
}

/* FAQ Grid */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.faq-item {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid #00ffff30;
    transition: all 0.3s ease;
    margin-bottom: 15px;
    overflow: visible;
}

.faq-item:hover {
    border-color: #00ffff60;
    box-shadow: 0 5px 20px #00ffff15;
}

.faq-item h3 {
    font-size: 18px;
    margin-bottom: 0;
    color: #ffffff;
    transition: color 0.3s ease;
    font-weight: 600;
}

.faq-item h3:hover {
    color: #00ffff;
}

.faq-item p {
    color: #cccccc;
    line-height: 1.8;
    margin: 0;
    word-wrap: break-word;
}

.faq-item p a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.faq-item p a:hover {
    color: #00ffff;
}

/* Final CTA */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, #00ffff15 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

.final-cta-content {
    position: relative;
    z-index: 2;
}

.animated-icons {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}

.final-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.play-icon {
    background: linear-gradient(45deg, #00ffff, #0080ff);
    animation-delay: 0s;
}

.play-icon::before {
    content: '▶️';
}

.rocket-icon {
    background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
    animation-delay: -0.7s;
}

.rocket-icon::before {
    content: '🚀';
}

.star-icon {
    background: linear-gradient(45deg, #feca57, #ff9ff3);
    animation-delay: -1.4s;
}

.star-icon::before {
    content: '⭐';
}

.final-cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #00ffff, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.final-cta p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #cccccc;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 60px 0 30px;
    text-align: center;
    border-top: 1px solid #00ffff30;
}

.footer-logo {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.footer-logo-img {
    height: 60px;
    width: 200px;
    max-width: 200px;
    filter: drop-shadow(0 0 15px #00ffff40) drop-shadow(0 0 30px #00ffff20);
    transition: all 0.3s ease;
    object-fit: contain;
    aspect-ratio: 600 / 159;
}

.footer-logo-img:hover {
    filter: drop-shadow(0 0 25px #00ffff60) drop-shadow(0 0 50px #00ffff40);
    transform: scale(1.02);
}

.footer p {
    color: #cccccc;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #00ffff;
    text-shadow: 0 0 10px #00ffff;
}

.copyright {
    color: #999;
    font-size: 14px;
    border-top: 1px solid #333;
    padding-top: 20px;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #25d366, #128c7e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 10px 30px #25d36650;
    animation: pulse-whatsapp 2s ease-in-out infinite;
    text-decoration: none;
}

@keyframes pulse-whatsapp {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.whatsapp-icon {
    width: 30px;
    height: 30px;
    background: white;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893A11.821 11.821 0 0020.465 3.085'/%3E%3C/svg%3E") no-repeat center;
    mask-size: contain;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .mobile-cta-btn {
        display: flex;
        position: fixed;
        right: 20px;
        top: 15px;
        z-index: 1001;
    }
    
    .header {
        position: fixed;
        transform: translateY(0) !important;
    }
    
    .header .container {
        justify-content: flex-start;
        align-items: center;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .footer-logo-img {
        height: 50px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .features-icons {
        gap: 20px;
    }
    
    .animated-numbers {
        gap: 20px;
    }
    
    .number {
        font-size: 28px;
    }
    
    .steps-grid,
    .benefits-grid,
    .apps-grid,
    .plans-grid,
    .reviews-grid,
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .animated-icons {
        gap: 20px;
    }
    
    .final-cta h2 {
        font-size: 28px;
    }
    
    .footer-links {
        gap: 20px;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-icon {
        width: 25px;
        height: 25px;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 16px;
    }
    
    .cta-button.large {
        padding: 20px 40px;
        font-size: 18px;
    }
    
    .mobile-cta-btn {
        padding: 8px 12px;
        box-shadow: 0 3px 10px rgba(0, 255, 65, 0.3);
    }
    
    .mobile-cta-btn:hover {
        box-shadow: 0 5px 15px rgba(0, 255, 65, 0.5);
    }
    
    .mobile-whatsapp-icon {
        width: 14px;
        height: 14px;
    }
    
    .mobile-cta-text {
        font-size: 11px;
        color: #003d4d;
        font-weight: 800;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .logo-img {
        height: 35px;
    }
    
    .footer-logo-img {
        height: 45px;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
    
    .icon {
        width: 50px;
        height: 50px;
    }
    
    .number {
        font-size: 24px;
    }
    
    .step-card,
    .benefit-card,
    .app-card,
    .plan-card,
    .review-card,
    .faq-item {
        padding: 20px;
    }
    
    .final-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .final-cta h2 {
        font-size: 24px;
    }
    
    .final-cta p {
        font-size: 16px;
    }
}