:root {
    --primary-color: #516ac5;
    --primary-blue: #516ac5;
    --secondary-blue: #5a6fd8;
    --secondary-color: #5a6fd8;
    --dark-bg: #2c3e50;
    --light-bg: #f8f9fb;
    --yellow: #ffd700;
    --text-gray: #6c757d;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f8fafc;
    --shadow: 0 20px 40px rgba(37, 211, 102, 0.1);

    --primary-color: #25D366;
            --secondary-color: #128C7E;
            --dark-color: #1a1a1a;
            --light-gray: #f8f9fa;
            --text-gray: #6c757d;
            --gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            --shadow: 0 20px 40px rgba(37, 211, 102, 0.1);
}

/* Base Styles */
body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; line-height: 1.6; }
img { max-width: 100%; }
.navbar-brand img{ height: 50px; }

/* Navigation */
.navbar { padding: 5px 0; background: var(--primary-blue) !important; box-shadow: 0 2px 10px rgba(0,0,0,0.1); }
.nav-link { color: white !important; font-weight: 500; margin: 0 10px; transition: color 0.3s ease; }
.nav-link:hover { color: #ffd700 !important; }
.navbar-toggler { border: none; padding: 4px 8px; }
.navbar-toggler:focus { box-shadow: none; }

/* Buttons */
.btn-primary { background: #ffd700; border: none; color: #333; padding: 10px 25px; border-radius: 25px; font-weight: 600; transition: all 0.3s ease; }
.btn-primary:hover { background: #ffed4e; color: #333; transform: translateY(-2px); }
.btn-outline-primary { border: 2px solid var(--primary-blue); color: var(--primary-blue); padding: 10px 25px; border-radius: 25px; font-weight: 600; transition: all 0.3s ease; }
.btn-outline-primary:hover { background: var(--primary-blue); border-color: var(--primary-blue); transform: translateY(-2px); }

/* Hero Section */
.hero-section { padding: 80px 0; text-align: center; }
.hero { max-width: 850px; margin: 0 auto; }
.gray-bg { background: linear-gradient(135deg, #f8f9fb 0%, #e9ecef 100%); }
.hero-title { font-size: 3rem; font-weight: 700; color: var(--primary-blue); margin-bottom: 20px; }
.hero-subtitle { font-size: 1.2rem; color: var(--primary-blue); margin-bottom: 40px; max-width: 700px; margin-left: auto; margin-right: auto; }

/* Feature Sections */
.feature-section { padding: 80px 0; }
.feature-section:nth-child(odd) { background: var(--light-bg); }
.section-title { font-size: 2.5rem; font-weight: 700; color: var(--text-dark); margin-bottom: 1rem; text-align: center; }
.section-subtitle { font-size: 1.1rem; color: var(--text-light); text-align: center; max-width: 600px; margin: 0 auto 4rem; }
.feature-title { font-size: 2rem; font-weight: 700; color: #2c3e50; margin-bottom: 20px; }
.feature-text { font-size: 1.1rem; color: #6c757d; line-height: 1.8; margin-bottom: 30px; }

/* Feature Cards */
.feature-card { background: white; border-radius: 20px; padding: 2.5rem; box-shadow: 0 10px 30px rgba(0,0,0,0.1); transition: transform 0.3s ease; height: 100%; }
.feature-card:hover { transform: translateY(-10px); }
.feature-icon { width: 80px; height: 80px; background: linear-gradient(135deg, var(--primary-color), #8b5cf6); border-radius: 20px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; color: white; font-size: 2rem; }
.feature-description { color: var(--text-light); line-height: 1.6; }

/* Distribution Visual */
.distribution-visual { background: white; border-radius: 20px; padding: 3rem; box-shadow: 0 10px 30px rgba(0,0,0,0.1); text-align: center; margin: 3rem 0; }
.lead-flow { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 2rem; margin: 2rem 0; }
.platform-icon { width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.5rem; position: relative; }
.whatsapp { background: #25d366; }
.instagram { background: linear-gradient(45deg, #833ab4, #fd1d1d, #fcb045); }
.facebook { background: #1877f2; }
.email { background: #ea4335; }
.central-hub { width: 80px; height: 80px; background: var(--text-dark); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 2rem; position: relative; }
.arrow { color: var(--secondary-color); font-size: 1.5rem; margin: 0 1rem; }

/* Team */
.team-members { display: flex; flex-direction: column; gap: 0.5rem; align-items: center; }
.team-member { background: var(--primary-color); color: white; padding: 0.5rem 1rem; border-radius: 25px; font-size: 0.9rem; display: flex; align-items: center; gap: 0.5rem; }

/* WhatsApp Section */
.whatsapp-section { background: linear-gradient(135deg, #25d366, #128c7e); color: white; padding: 80px 0; }
.whatsapp-visual { background: rgba(255,255,255,0.1); border-radius: 20px; padding: 2rem; backdrop-filter: blur(10px); }
.phone-mockup { background: white; border-radius: 25px; padding: 1rem; margin: 0 auto; max-width: 300px; box-shadow: 0 20px 40px rgba(0,0,0,0.2); }
.message-bubble { background: #dcf8c6; border-radius: 15px; padding: 0.75rem; margin: 0.5rem 0; color: var(--text-dark); font-size: 0.9rem; }
.schedule-badge { background: var(--secondary-color); color: white; padding: 0.25rem 0.5rem; border-radius: 10px; font-size: 0.8rem; display: inline-block; margin-bottom: 1rem; }

/* Stats */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; margin: 3rem 0; }
.stat-card { text-align: center; padding: 1.5rem; }
.stat-number { font-size: 2.5rem; font-weight: 700; display: block; }
.stat-label { font-size: 0.9rem; margin-top: 0.5rem; }

/* CTA Section */
.cta-section { background: linear-gradient(135deg, var(--text-dark), #374151); color: white; padding: 80px 0; text-align: center; }

/* FAQ Styles */
.faq-container { background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); border-radius: 20px; padding: 3rem 2rem; margin: 2rem 0; box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); max-width: 800px; margin-left: auto; margin-right: auto; }
.faq-title { font-size: 2.5rem; font-weight: 700; color: #2c3e50; text-align: center; margin-bottom: 2.5rem; }
.faq-accordion { margin-bottom: 2rem; }
.faq-item { background: #f8f9fa; border-radius: 10px; margin-bottom: 1rem; overflow: hidden; transition: all 0.3s ease; border: 1px solid #e9ecef; }
.faq-item:hover { box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); }
.faq-item.active { background: white; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); }
.faq-header { padding: 1.5rem 2rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; user-select: none; }
.faq-question { font-size: 1.1rem; font-weight: 600; color: #2c3e50; flex: 1; margin-right: 1rem; }
.faq-icon { width: 30px; height: 30px; border-radius: 50%; border: 2px solid #dee2e6; display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; color: #6c757d; }
.faq-item.active .faq-icon { border-color: #2c3e50; color: #2c3e50; }
.faq-content { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.active .faq-content { max-height: 200px; }
.faq-answer { padding: 0 2rem 1.5rem; color: #495057; line-height: 1.6; }
.demo-link { color: #27ae60; text-decoration: none; font-weight: 600; }
.demo-link:hover { text-decoration: underline; }
.expand-all-container { text-align: right; position: relative; }
.expand-all-btn { background: none; border: none; color: #6c757d; font-size: 0.9rem; cursor: pointer; display: flex; align-items: center; gap: 0.5rem; transition: all 0.3s ease; padding: 0.5rem; border-radius: 5px; }
.expand-all-btn:hover { color: #2c3e50; background: #f8f9fa; }
.expand-all-btn i { transition: transform 0.3s ease; }
.expand-all-btn.expanded i { transform: rotate(180deg); }

/* Contact Styles */
.contact-container { background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); border-radius: 20px; padding: 3rem; margin: 2rem 0; box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); }
.page-title { font-size: 3rem; font-weight: 800; color: #2c3e50; text-align: center; margin-bottom: 1rem; }
.page-subtitle { color: #6c757d; text-align: center; font-size: 1.2rem; margin-bottom: 3rem; max-width: 600px; margin-left: auto; margin-right: auto; }
.contact-info-card { background: white; border-radius: 15px; padding: 2rem; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); transition: transform 0.3s ease; }
.contact-info-card:hover { transform: translateY(-5px); }
.contact-icon { width: 60px; height: 60px; background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.5rem; margin-bottom: 1.5rem; }
.contact-title { font-size: 1.3rem; font-weight: 700; color: #2c3e50; margin-bottom: 1rem; }
.contact-detail { color: #495057; margin-bottom: 0.5rem; display: flex; align-items: center; }
.contact-detail i { margin-right: 0.75rem; color: #667eea; width: 20px; }

/* Form Styles */
.form-container { background: white; border-radius: 15px; padding: 2.5rem; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); }
.form-title { font-size: 1.8rem; font-weight: 700; color: #2c3e50; margin-bottom: 1.5rem; text-align: center; }
.form-group { margin-bottom: 1.5rem; }
.form-label { font-weight: 600; color: #2c3e50; margin-bottom: 0.5rem; display: block; }
.required { color: #dc3545; }
.form-control { border: 2px solid #e9ecef; border-radius: 10px; padding: 0.75rem 1rem; font-size: 1rem; transition: all 0.3s ease; }
.form-control:focus { border-color: #667eea; box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25); }
.form-select { border: 2px solid #e9ecef; border-radius: 10px; padding: 0.75rem 1rem; font-size: 1rem; transition: all 0.3s ease; }
.form-select:focus { border-color: #667eea; box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25); }
.form-check { margin-bottom: 1.5rem; }
.form-check-input { margin-top: 0.25rem; }
.form-check-label { color: #495057; font-size: 0.95rem; }
.privacy-link { color: #667eea; text-decoration: none; }
.privacy-link:hover { text-decoration: underline; }
.submit-btn { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); border: none; color: white; padding: 1rem 3rem; border-radius: 10px; font-size: 1.1rem; font-weight: 600; cursor: pointer; transition: all 0.3s ease; width: 100%; }
.submit-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3); }
.submit-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.loading-spinner { display: none; margin-right: 0.5rem; }
.success-message { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; border-radius: 10px; padding: 1rem; margin-bottom: 1.5rem; display: none; }
.error-message { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; border-radius: 10px; padding: 1rem; margin-bottom: 1.5rem; display: none; }

/* Office Hours */
.office-hours { background: #f8f9fa; border-radius: 10px; padding: 1.5rem; margin-top: 2rem; }
.office-hours-title { font-weight: 700; color: #2c3e50; margin-bottom: 1rem; }
.hours-list { list-style: none; padding: 0; margin: 0; }
.hours-list li { display: flex; justify-content: space-between; padding: 0.5rem 0; border-bottom: 1px solid #dee2e6; }
.hours-list li:last-child { border-bottom: none; }
.day { font-weight: 600; color: #495057; }
.time { color: #6c757d; }

/* Pricing Styles */
.pricing-container { background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); border-radius: 20px; padding: 3rem 2rem; margin: 2rem 0; box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); }
.main-title { font-size: 3.5rem; font-weight: 700; color: #2c3e50; text-align: center; margin-bottom: 2rem; }
.features-list { display: flex; justify-content: center; flex-wrap: wrap; gap: 2rem; margin-bottom: 3rem; }
.feature-item { display: flex; align-items: center; color: #59748d; font-weight: 600; }
.feature-item i { margin-right: 0.5rem; font-size: 1.2rem; }
.currency-toggle { display: flex; gap: 1rem; justify-content: center; margin-bottom: 1rem; }
.currency-btn { background: none; border: none; color: #6c757d; font-weight: 600; padding: 0.5rem 1rem; cursor: pointer; border-bottom: 2px solid transparent; transition: all 0.3s ease; }
.currency-btn.active { color: #2c3e50; border-bottom-color: #667eea; }
.pricing-toggle { background: #e9ecef; border-radius: 50px; padding: 0.25rem; display: flex; margin: 0 auto 2rem; width: fit-content; position: relative; }
.toggle-btn { background: none; border: none; padding: 0.75rem 2rem; border-radius: 50px; font-weight: 600; color: #6c757d; cursor: pointer; transition: all 0.3s ease; position: relative; z-index: 2; }
.toggle-btn.active { color: white; background: #2c3e50; }
.toggle-slider { position: absolute; top: 0.25rem; left: 0.25rem; width: calc(50% - 0.25rem); height: calc(100% - 0.5rem); border-radius: 50px; transition: transform 0.3s ease; }
.toggle-slider.yearly { transform: translateX(100%); }
.pricing-cards { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; }
.pricing-card { background: white; border-radius: 15px; padding: 2rem; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); position: relative; width: 280px; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.pricing-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15); }
.pricing-card.popular { border: 3px solid #27ae60; transform: scale(1.05); }
.popular-badge { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: #27ae60; color: white; padding: 0.1rem 1rem; border-radius: 20px; font-size: 0.9rem; font-weight: 600; }
.new-badge { position: absolute; top: 15px; right: 15px; background: #17a2b8; color: white; padding: 0.25rem 0.75rem; border-radius: 15px; font-size: 0.8rem; font-weight: 600; }
.plan-name { font-size: 1.5rem; font-weight: 700; color: #2c3e50; text-align: center; margin-bottom: 1rem; }
.price-section { text-align: center; margin-bottom: 2rem; }
.original-price { text-decoration: line-through; color: #6c757d; font-size: 1.1rem; display: block; }
.current-price { font-size: 2.5rem; font-weight: 700; color: #2c3e50; display: flex; align-items: baseline; justify-content: center; gap: 0.5rem; }
.currency { font-size: 1.2rem; color: #6c757d; }
.billing-period { color: #6c757d; font-size: 0.9rem; margin-top: 0.5rem; }
.cta-button { display: block; text-align: center; text-decoration: none; width: 100%; padding: 1rem; border: none; border-radius: 10px; background: #dc3545; color: white; font-weight: 600; font-size: 1rem; cursor: pointer; transition: all 0.3s ease; margin-bottom: 2rem; }
.cta-button:hover { background: #c82333; transform: translateY(-2px); }
.features-title { color: #2c3e50; font-weight: 600; margin-bottom: 1rem; }
.feature-list { list-style: none; padding: 0; }
.feature-list li { display: flex; align-items: flex-start; margin-bottom: 0.75rem; color: #495057; }
.feature-list i { color: #27ae60; margin-right: 0.75rem; margin-top: 0.25rem; font-size: 0.9rem; }
.navbar-toggler-icon{ background-image: #fff;}

/* Mobile Responsive */
@media (max-width: 768px) {
    .navbar{ padding: 3px 0 ;}
    .navbar-brand img {  height: 40px; }
    .hero-title { font-size: 2.2rem; }
    .feature-section { padding: 50px 0; }
    .main-title { font-size: 2.5rem; }
    .page-title { font-size: 2.5rem; }
    .contact-container { padding: 2rem 1.5rem; }
    .form-container { padding: 2rem 1.5rem; }
    .submit-btn { padding: 1rem 2rem; }
    .features-list { flex-direction: column; align-items: center; gap: 1rem; }
    .pricing-cards { flex-direction: column; align-items: center; }
    .pricing-card { width: 100%; max-width: 350px; }
    .pricing-card.popular { transform: none; }
    .faq-title { font-size: 2rem; }
    .faq-header { padding: 1rem 1.5rem; }
    .faq-answer { padding: 0 1.5rem 1rem; }
    .faq-question { font-size: 1rem; }
    .expand-all-container { text-align: center; }
    .lead-flow { flex-direction: column; }
    .arrow { transform: rotate(90deg); }
}

.whatsapp-icon {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background-color: #25D366;
    color: white;
    font-size: 24px;
    padding: 12px;
    border-radius: 50%;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 1000;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 26px;
  }

  .whatsapp-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.6);
  }

        /* CTA Buttons */
        .cta-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            margin-top: 2rem;
        }

        .btn-primary-custom {
            background: var(--gradient);
            border: none;
            padding: 15px 30px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            color: white;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
        }

        .btn-primary-custom:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
            color: white;
        }

        .btn-outline-custom {
            background: transparent;
            border: 2px solid var(--primary-color);
            padding: 13px 28px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            color: var(--primary-color);
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
        }

        .btn-outline-custom:hover {
            background: var(--primary-color);
            color: white;
            transform: translateY(-3px);
        }


        /* Stats Section */
        .stats-section {
            background: var(--gradient);
            color: white;
            padding: 80px 0;
        }

        .stat-item {
            text-align: center;
            padding: 2rem;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            display: block;
        }

        .stat-label {
            font-size: 1.1rem;
            opacity: 0.9;
        }

        /* Features Grid */
        .features-grid {
            padding: 100px 0;
        }

        .feature-card {
            background: white;
            border-radius: 20px;
            padding: 2.5rem;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            height: 100%;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.15);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: var(--gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
            color: white;
        }

        .feature-card h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--dark-color);
        }

        .feature-card p {
            color: var(--text-gray);
            line-height: 1.6;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            
            
            .feature-section {
                padding: 60px 0;
            }
            
            .cta-buttons {
                justify-content: center;
            }
            
            .hero-image {
                margin-top: 2rem;
                transform: none;
            }
        }