/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #4ecdc4;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    padding: 120px 0 80px;
    display: flex;
    align-items: center;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.05"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.1;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: 100%;
    max-width: 450px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    color: #fff;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #4ecdc4;
}

.btn-secondary:hover {
    background: #4ecdc4;
    color: #1a1a2e;
}

.btn-outline {
    background: transparent;
    color: #333;
    border: 2px solid #333;
}

.btn-outline:hover {
    background: #333;
    color: #fff;
}

/* Features */
.features {
    padding: 80px 0;
    background: #f8f9fa;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card i {
    font-size: 3rem;
    color: #4ecdc4;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.feature-card p {
    color: #666;
}

/* Plans */
.plans {
    padding: 80px 0;
    background: #fff;
}

.plans h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.plans-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.plan-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.plan-card:hover {
    transform: translateY(-10px);
    border-color: #4ecdc4;
}

.plan-card.featured {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-color: #667eea;
}

.popular {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff6b6b;
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.credit-icon {
    font-size: 3rem;
    color: #4ecdc4;
    margin-bottom: 1rem;
}

.plan-card.featured .credit-icon {
    color: #fff;
}

.plan-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.plan-card.featured h3 {
    color: #fff;
}

.credit-info {
    font-size: 1rem;
    color: #666;
    margin-bottom: 2rem;
    font-style: italic;
}

.plan-card.featured .credit-info {
    color: #ccc;
}

.plan-card ul {
    list-style: none;
    margin-bottom: 2rem;
}

.plan-card li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.plan-card li i {
    color: #4ecdc4;
}

.plan-card.featured li i {
    color: #fff;
}

/* Channels */
.channels {
    padding: 80px 0;
    background: #f8f9fa;
}

.channels h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.channels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.channel-category {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.channel-category h3 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.channel-logos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.channel-logos img {
    width: 100%;
    height: 60px;
    object-fit: contain;
    background: #f8f9fa;
    padding: 10px;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.channel-logos img:hover {
    transform: scale(1.1);
}

/* Contact */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    color: #fff;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #4ecdc4;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: #4ecdc4;
    width: 30px;
}

.whatsapp-contact {
    text-align: center;
}

.whatsapp-contact h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #4ecdc4;
}

.whatsapp-contact p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #ccc;
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn-large i {
    margin-right: 10px;
    font-size: 1.3rem;
}

.contact-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.contact-option {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 20px;
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(78, 205, 196, 0.3);
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.contact-option:hover {
    background: rgba(78, 205, 196, 0.2);
    border-color: #4ecdc4;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #1a1a2e;
    color: #fff;
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: #4ecdc4;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #4ecdc4;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #ccc;
}

/* Responsive */
@media (max-width: 1024px) {
    .plans-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .hero-content {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #1a1a2e;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-content {
        order: 1;
    }
    
    .hero-image {
        order: 2;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
        line-height: 1.3;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        min-width: 160px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .plan-card {
        padding: 1.5rem;
    }
    
    .plan-card.featured {
        transform: none;
        order: -1;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .channels-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .channel-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .btn-large {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
    
    .contact-options {
        gap: 0.8rem;
    }
    
    .contact-option {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-wrapper {
        gap: 2rem;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .plans h2 {
        font-size: 2rem;
    }
    
    .plans-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .plan-card {
        padding: 1.2rem;
    }
    
    .plan-card h3 {
        font-size: 1.5rem;
    }
    
    .credit-icon {
        font-size: 2.5rem;
    }
    
    .features h2,
    .channels h2,
    .contact h2 {
        font-size: 2rem;
    }
    
    .feature-card,
    .channel-category {
        padding: 1.5rem;
    }
    
    .channel-logos img {
        height: 50px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .btn-large {
        padding: 12px 25px;
        font-size: 1rem;
    }
}
/*
 About Page Styles */
.about-hero {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    padding: 120px 0 80px;
    text-align: center;
    color: #fff;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about-hero p {
    font-size: 1.2rem;
    color: #ccc;
}

.about-content {
    padding: 80px 0;
    background: #f8f9fa;
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #333;
}

.about-text h3 {
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
    color: #333;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #666;
}

.about-list {
    list-style: none;
    margin: 2rem 0;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #333;
}

.about-list i {
    color: #4ecdc4;
    font-size: 1.2rem;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-card {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-card h3 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #4ecdc4;
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: #666;
    font-size: 1rem;
}

/* Tutorial Page Styles */
.tutorial-hero {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    padding: 120px 0 80px;
    text-align: center;
    color: #fff;
}

.tutorial-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.tutorial-hero p {
    font-size: 1.2rem;
    color: #ccc;
}

.tutorial-content {
    padding: 80px 0;
    background: #f8f9fa;
}

.tutorial-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-button {
    padding: 12px 24px;
    border: none;
    background: #fff;
    color: #333;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.tab-button.active {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    color: #fff;
    transform: translateY(-2px);
}

.tab-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.tab-content {
    display: none;
    background: #fff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    max-width: 800px;
    margin: 0 auto;
}

.tab-content.active {
    display: block;
}

.tab-content h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #333;
    text-align: center;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateX(10px);
}

.step-number {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.step-content p {
    color: #666;
    line-height: 1.6;
}

.support-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    margin-top: 3rem;
}

.support-box h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.support-box i {
    margin-right: 10px;
}

.support-box p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* FAQ Page Styles */
.faq-hero {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    padding: 120px 0 80px;
    text-align: center;
    color: #fff;
}

.faq-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.faq-hero p {
    font-size: 1.2rem;
    color: #ccc;
}

.faq-content {
    padding: 80px 0;
    background: #f8f9fa;
}

.faq-item {
    background: #fff;
    margin-bottom: 1rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #333;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question i {
    color: #4ecdc4;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
}

/* Responsive for new pages */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .tutorial-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .tab-button {
        width: 200px;
    }
    
    .tab-content {
        padding: 2rem 1rem;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .about-hero h1,
    .tutorial-hero h1,
    .faq-hero h1 {
        font-size: 2.5rem;
    }
}/* What
sApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

@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);
    }
}

/* Melhorias no Hero Section - Removido para evitar conflitos */

/* Melhorias nos botões */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::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:hover::before {
    left: 100%;
}

/* Melhorias nos cards de planos */
.plan-card {
    position: relative;
    overflow: hidden;
}

.plan-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(78, 205, 196, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s;
    opacity: 0;
}

.plan-card:hover::before {
    opacity: 1;
    transform: rotate(45deg) translate(50%, 50%);
}

/* Melhorias na seção de contato */
.contact {
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23ffffff" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.1;
}

.contact-content {
    position: relative;
    z-index: 2;
}

/* Animações suaves */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card,
.plan-card,
.channel-category {
    animation: fadeInUp 0.6s ease forwards;
}

.feature-card:nth-child(2) { animation-delay: 0.1s; }
.feature-card:nth-child(3) { animation-delay: 0.2s; }
.feature-card:nth-child(4) { animation-delay: 0.3s; }

.plan-card:nth-child(2) { animation-delay: 0.1s; }
.plan-card:nth-child(3) { animation-delay: 0.2s; }
.plan-card:nth-child(4) { animation-delay: 0.3s; }
.plan-card:nth-child(5) { animation-delay: 0.4s; }
.plan-card:nth-child(6) { animation-delay: 0.5s; }

/* Responsivo para o botão flutuante */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-float a {
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
    }
}
/* IPTV 
Apps Section */
.iptv-apps {
    padding: 80px 0;
    background: #fff;
}

.iptv-apps h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.apps-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

.apps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.app-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.app-card:hover {
    transform: translateY(-10px);
    border-color: #4ecdc4;
    background: #fff;
}

.app-icon {
    font-size: 3rem;
    color: #4ecdc4;
    margin-bottom: 1rem;
}

.app-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

.app-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Responsive para Apps Section */
@media (max-width: 768px) {
    .apps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .app-card {
        padding: 1.5rem;
    }
    
    .app-icon {
        font-size: 2.5rem;
    }
    
    .iptv-apps h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .app-card {
        padding: 1.2rem;
    }
    
    .app-card h3 {
        font-size: 1.2rem;
    }
    
    .app-card p {
        font-size: 0.9rem;
    }
}/* Resell
 Guide Section */
.resell-guide {
    padding: 80px 0;
    background: #f8f9fa;
}

.resell-guide h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.resell-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

.resell-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.resell-card {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.resell-card:hover {
    transform: translateY(-15px);
    border-color: #4ecdc4;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.step-icon {
    font-size: 3rem;
    color: #4ecdc4;
    margin: 1rem 0 1.5rem;
}

.resell-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #333;
}

.resell-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

.resell-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 3rem;
    border-radius: 25px;
    text-align: center;
    color: #fff;
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.3);
}

.resell-cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.resell-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.resell-cta .btn {
    background: #fff;
    color: #667eea;
    border: none;
    font-weight: 600;
}

.resell-cta .btn:hover {
    background: #f8f9fa;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255,255,255,0.3);
}

.resell-cta .btn i {
    color: #25d366;
}

/* Responsive para Resell Guide */
@media (max-width: 1024px) {
    .resell-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .resell-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .resell-card {
        padding: 2rem 1.5rem;
    }
    
    .step-icon {
        font-size: 2.5rem;
    }
    
    .resell-guide h2 {
        font-size: 2rem;
    }
    
    .resell-cta {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .resell-cta h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .resell-card {
        padding: 1.5rem 1rem;
    }
    
    .resell-card h3 {
        font-size: 1.2rem;
    }
    
    .resell-card p {
        font-size: 0.9rem;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .resell-cta {
        padding: 1.5rem;
    }
    
    .resell-cta h3 {
        font-size: 1.4rem;
    }
    
    .resell-cta p {
        font-size: 1rem;
    }
}/* Reselle
r Benefits Section */
.reseller-benefits {
    padding: 80px 0;
    background: #fff;
}

.reseller-benefits h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.benefits-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.benefit-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
    border: 2px solid transparent;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(78, 205, 196, 0.1), transparent);
    transition: left 0.6s;
}

.benefit-card:hover::before {
    left: 100%;
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: #4ecdc4;
    box-shadow: 0 25px 60px rgba(78, 205, 196, 0.15);
}

.benefit-icon {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.5rem;
    color: #fff;
    box-shadow: 0 10px 30px rgba(78, 205, 196, 0.3);
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #333;
    font-weight: 600;
}

.benefit-card p {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.benefit-highlight {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    color: #fff;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    box-shadow: 0 5px 15px rgba(78, 205, 196, 0.3);
}

.benefits-footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 3rem;
    border-radius: 25px;
    color: #fff;
}

.success-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: #ccc;
    font-weight: 500;
}

/* Responsive para Reseller Benefits */
@media (max-width: 1024px) {
    .benefits-grid {
        gap: 2rem;
    }
    
    .benefit-card {
        padding: 2.5rem 2rem;
    }
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .benefit-card {
        padding: 2rem 1.5rem;
    }
    
    .benefit-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    .reseller-benefits h2 {
        font-size: 2rem;
    }
    
    .success-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefits-footer {
        padding: 2rem;
        margin: 0 1rem;
    }
}

@media (max-width: 480px) {
    .benefit-card {
        padding: 1.5rem 1rem;
    }
    
    .benefit-card h3 {
        font-size: 1.3rem;
    }
    
    .benefit-card p {
        font-size: 0.95rem;
    }
    
    .benefit-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
    
    .benefits-footer {
        padding: 1.5rem;
    }
}/* Test
imonials Section */
.testimonials {
    padding: 80px 0;
    background: #f8f9fa;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.testimonials-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    border-left: 4px solid #4ecdc4;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(78, 205, 196, 0.15);
}

.stars {
    display: flex;
    gap: 5px;
    margin-bottom: 1.5rem;
    color: #ffd700;
    font-size: 1.2rem;
}

.testimonial-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-info h4 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 0.3rem;
}

.author-info span {
    font-size: 0.9rem;
    color: #666;
}

/* Profit Calculator Section */
.profit-calculator {
    padding: 80px 0;
    background: #fff;
}

.profit-calculator h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.calculator-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

.calculator-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.calculator-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.calculator-info h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #333;
}

.pricing-info {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.price-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.price-item i {
    color: #4ecdc4;
    font-size: 1.3rem;
    width: 25px;
}

.volume-discount {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 2rem;
    border-radius: 15px;
}

.volume-discount h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.volume-discount p {
    line-height: 1.6;
    opacity: 0.95;
}

.calculator-simulator {
    background: #f8f9fa;
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.calculator-simulator h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #333;
    text-align: center;
}

.simulator-controls {
    margin-bottom: 2.5rem;
}

.control-group {
    margin-bottom: 2rem;
}

.control-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.control-group input[type="range"] {
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: #ddd;
    outline: none;
    margin-bottom: 0.5rem;
}

.control-group input[type="range"]::-webkit-slider-thumb {
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #4ecdc4;
    cursor: pointer;
}

.control-group span {
    font-weight: 700;
    color: #1a1a2e;
    font-size: 1.2rem;
}

.range-value {
    color: #1a1a2e !important;
    font-weight: 700;
    font-size: 1.2rem;
}

.results {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border: 2px solid #4ecdc4;
}

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.result-item:last-child {
    margin-bottom: 0;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.result-label {
    color: #666;
    font-weight: 500;
}

.result-value {
    color: #1a1a2e;
    font-weight: 700;
    font-size: 1.3rem;
    font-size: 1.3rem;
}

.calculator-cta {
    text-align: center;
}

.calculator-cta .btn {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    border: none;
    color: #fff;
    font-weight: 600;
    animation: pulse-button 2s infinite;
}

@keyframes pulse-button {
    0% { box-shadow: 0 0 0 0 rgba(78, 205, 196, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(78, 205, 196, 0); }
    100% { box-shadow: 0 0 0 0 rgba(78, 205, 196, 0); }
}

/* Guarantees Section */
.guarantees {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
}

.guarantees h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.guarantees-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 3rem;
}

.guarantees-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.guarantee-card {
    background: rgba(255,255,255,0.05);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.guarantee-card:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.08);
    border-color: #4ecdc4;
}

.guarantee-icon {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.5rem;
    color: #fff;
    box-shadow: 0 10px 30px rgba(78, 205, 196, 0.3);
}

.guarantee-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.guarantee-card p {
    color: #ccc;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Responsive para novas seções */
@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .calculator-content {
        gap: 3rem;
    }
    
    .guarantees-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .testimonial-card {
        padding: 2rem 1.5rem;
    }
    
    .calculator-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .calculator-simulator {
        padding: 2rem 1.5rem;
    }
    
    .guarantees-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .guarantee-card {
        padding: 2rem 1.5rem;
    }
    
    .testimonials h2,
    .profit-calculator h2,
    .guarantees h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .testimonial-card {
        padding: 1.5rem 1rem;
    }
    
    .calculator-simulator {
        padding: 1.5rem 1rem;
    }
    
    .guarantee-card {
        padding: 1.5rem 1rem;
    }
    
    .guarantee-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    .result-item {
        font-size: 1rem;
    }
    
    .result-value {
        font-size: 1.2rem;
    }
}/* About U
s Section */
.about-us {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
    text-align: center;
}

.story-timeline {
    position: relative;
}

.story-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #4ecdc4, #ff6b6b);
    border-radius: 2px;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-icon {
    background: linear-gradient(45deg, #4ecdc4, #ff6b6b);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 5px 20px rgba(78, 205, 196, 0.3);
    position: relative;
    z-index: 2;
}

.timeline-content {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    flex: 1;
    border-left: 4px solid #4ecdc4;
}

.timeline-content h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #333;
    font-weight: 600;
}

.timeline-content p {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
}

.about-stats-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mission-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);
}

.mission-icon {
    background: rgba(255,255,255,0.2);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    backdrop-filter: blur(10px);
}

.mission-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
}

.mission-card p {
    line-height: 1.6;
    opacity: 0.95;
}

.experience-highlights {
    background: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.experience-highlights h3 {
    font-size: 1.6rem;
    margin-bottom: 2rem;
    color: #333;
    text-align: center;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.highlight-item {
    text-align: center;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
}

.highlight-number {
    font-size: 2.5rem;
    font-weight: bold;
    background: linear-gradient(45deg, #4ecdc4, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.highlight-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.founder-message {
    background: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    position: relative;
}

.message-content {
    text-align: center;
}

.message-content i {
    font-size: 2rem;
    color: #4ecdc4;
    margin-bottom: 1rem;
}

.message-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    font-style: italic;
    margin-bottom: 2rem;
}

.founder-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.founder-info strong {
    color: #333;
    font-size: 1.1rem;
}

.founder-info span {
    color: #666;
    font-size: 0.9rem;
}

/* Responsive para About Us */
@media (max-width: 1024px) {
    .about-content {
        gap: 3rem;
    }
    
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .story-timeline::before {
        left: 20px;
    }
    
    .timeline-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .timeline-item {
        gap: 1.5rem;
    }
    
    .timeline-content {
        padding: 1.5rem;
    }
    
    .mission-card,
    .experience-highlights,
    .founder-message {
        padding: 2rem;
    }
    
    .about-text h2 {
        font-size: 2rem;
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .timeline-content {
        padding: 1.2rem;
    }
    
    .timeline-content h3 {
        font-size: 1.2rem;
    }
    
    .timeline-content p {
        font-size: 0.95rem;
    }
    
    .mission-card,
    .experience-highlights,
    .founder-message {
        padding: 1.5rem;
    }
    
    .mission-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    .highlight-number {
        font-size: 2rem;
    }
    
    .message-content p {
        font-size: 1rem;
    }
}/*
 Join Team CTA Styles */
.join-team-cta {
    margin-top: 3rem;
    text-align: center;
    padding: 2.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.join-team-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h3 {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.cta-content p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.join-team-btn {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.join-team-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.4);
    background: linear-gradient(135deg, #ff5252 0%, #d84315 100%);
}

.join-team-btn:active {
    transform: translateY(-1px);
}

.join-team-btn i {
    font-size: 1.2rem;
}

/* Responsive adjustments for join team CTA */
@media (max-width: 768px) {
    .join-team-cta {
        margin-top: 2rem;
        padding: 2rem 1.5rem;
    }
    
    .cta-content h3 {
        font-size: 1.5rem;
    }
    
    .cta-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .join-team-btn {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .join-team-cta {
        padding: 1.5rem 1rem;
    }
    
    .cta-content h3 {
        font-size: 1.3rem;
    }
    
    .join-team-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}/* 
Accessibility Improvements */

/* Skip link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #000;
    color: #fff;
    padding: 12px 16px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 10000;
    font-weight: bold;
    font-size: 14px;
    transition: top 0.2s ease-in-out;
}

.skip-link:focus {
    top: 6px;
    outline: 2px solid #4ecdc4;
    outline-offset: 2px;
}

/* Screen reader only text */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Improved contrast for calculator values */
.calculator-simulator span {
    color: #1a1a2e !important;
    font-weight: 700;
    text-shadow: none;
}

.result-value {
    color: #1a1a2e !important;
    font-weight: 700;
    text-shadow: none;
}

/* Focus indicators */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 3px solid #4ecdc4;
    outline-offset: 2px;
}

/* High contrast for navigation links */
.nav-menu a:focus {
    background: rgba(78, 205, 196, 0.2);
    border-radius: 4px;
}

/* Improved button contrast */
.btn:focus {
    box-shadow: 0 0 0 3px rgba(78, 205, 196, 0.5);
}

/* WhatsApp button accessibility */
.whatsapp-float a:focus {
    outline: 3px solid #fff;
    outline-offset: 2px;
}/*
 Focus indicators for better keyboard navigation */
button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus,
.btn:focus {
    outline: 2px solid #4ecdc4;
    outline-offset: 2px;
}

/* High contrast focus for form elements */
input[type="range"]:focus {
    outline: 2px solid #4ecdc4;
    outline-offset: 2px;
}

/* Ensure focus is visible on all interactive elements */
*:focus {
    outline: 2px solid #4ecdc4;
    outline-offset: 2px;
}

/* Remove default outline and add custom one */
*:focus:not(:focus-visible) {
    outline: none;
}

*:focus-visible {
    outline: 2px solid #4ecdc4;
    outline-offset: 2px;
}/* 
Font display optimization for Font Awesome */
@font-face {
    font-family: "Font Awesome 6 Free";
    font-display: swap;
}

@font-face {
    font-family: "Font Awesome 6 Brands";
    font-display: swap;
}

/* Performance optimizations */
.fa, .fas, .far, .fab {
    font-display: swap;
}/
* Performance optimizations */
img {
    content-visibility: auto;
    contain-intrinsic-size: 300px 200px;
}

/* Optimize animations for better performance */
* {
    will-change: auto;
}

.hero-image img,
.plan-card,
.testimonial-card {
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Reduce layout shifts */
.hero-image {
    aspect-ratio: 16/9;
}

.plan-card {
    contain: layout style paint;
}

/* Optimize font loading */
body {
    font-display: swap;
}/* 404
 Error Page */
.error-404 {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    padding: 4rem 0;
}

.error-content h1 {
    font-size: 8rem;
    font-weight: 900;
    margin: 0;
    line-height: 1;
    opacity: 0.8;
}

.error-content h2 {
    font-size: 2.5rem;
    margin: 1rem 0;
    font-weight: 600;
}

.error-content p {
    font-size: 1.2rem;
    margin: 2rem 0;
    opacity: 0.9;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.error-actions {
    margin-top: 3rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.error-actions .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    min-width: 180px;
}

@media (max-width: 768px) {
    .error-content h1 {
        font-size: 6rem;
    }
    
    .error-content h2 {
        font-size: 2rem;
    }
    
    .error-actions {
        flex-direction: column;
        align-items: center;
    }
}