:root {
    --primary-color: #7323a9;
    --accent-color: #fd18f0;
    --dark-color: #1a1a1a;
    --light-gray: #f8f9fa;
    --text-muted: #6c757d;
    --whatsapp-color: #25d366;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--dark-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.5rem;
    color: var(--primary-color) !important;
}

.logo-navbar {
    width: 40px;
}

.navbar-nav .nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #5a1c85;
    border-color: #5a1c85;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(115, 35, 169, 0.3);
}

.btn-accent {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    border: none;
    color: white;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(253, 24, 240, 0.4);
    color: white;
}

.btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    border-width: 2px;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Added WhatsApp button styles */
.btn-whatsapp {
    background-color: var(--whatsapp-color);
    border: none;
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
    padding: 1rem 3rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.btn-whatsapp:hover {
    background-color: #128c7e;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

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

/* Hero Section */
.hero-section {
    padding-top: 80px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.hero-badge {
    display: inline-block;
}

.badge-text {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stats {
    margin-top: 3rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.hero-image-wrapper {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Problem Section */
.problem-section {
    background-color: var(--light-gray);
}

.problem-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.problem-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Solution Section */
.solution-section {
    background: white;
}

.solution-badge span {
    background-color: #e8d4f8;
    color: var(--primary-color);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
}

.solution-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.feature-item i {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.text-accent {
    color: var(--accent-color);
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

.stat-card {
    padding: 2rem;
}

.stat-value {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    line-height: 1;
    margin-bottom: 1rem;
}

.stat-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 500;
}

/* Client Features Section */
.client-features-section {
    background: white;
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 1rem;
    height: 100%;
    transition: all 0.3s ease;
    border: 2px solid #f8f9fa;
}

.feature-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(253, 24, 240, 0.15);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: white;
}

/* Admin Section */
.admin-feature-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    height: 100%;
    border-left: 4px solid var(--accent-color);
    transition: all 0.3s ease;
}

.admin-feature-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateX(5px);
}

.admin-feature-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.admin-feature-header i {
    font-size: 2rem;
    color: var(--accent-color);
}

.admin-list {
    list-style: none;
    padding: 0;
}

.admin-list li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
}

.admin-list i {
    color: var(--accent-color);
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* Differentials Section */
.differentials-section {
    background: white;
}

.differential-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 2.5rem;
    border-radius: 1rem;
    height: 100%;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.differential-card:hover {
    border-color: var(--primary-color);
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(115, 35, 169, 0.15);
}

.differential-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}


/* Seção de Preços */
#pricing {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

#pricing::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(115, 35, 169, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.pricing-card {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #7323a9, #fd18f0);
    opacity: 0.5;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(115, 35, 169, 0.12);
}

/* Card Mais Popular */
.pricing-card-popular {
    border: 2px solid #7323a9;
    box-shadow: 0 20px 60px rgba(115, 35, 169, 0.15);
    transform: scale(1.02);
}

.pricing-card-popular::before {
    height: 4px;
    background: linear-gradient(90deg, #7323a9, #fd18f0);
    opacity: 1;
}

.pricing-card-popular:hover {
    transform: scale(1.02) translateY(-8px);
    box-shadow: 0 30px 80px rgba(115, 35, 169, 0.2);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #7323a9, #fd18f0);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 12px rgba(115, 35, 169, 0.3);
}

.popular-badge i {
    font-size: 12px;
}

.pricing-header {
    text-align: center;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.price-tag {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin: 20px 0;
}

.price-tag .currency {
    font-size: 24px;
    font-weight: 600;
    color: #7323a9;
    margin-right: 4px;
}

.price-tag .amount {
    font-size: 72px;
    font-weight: 700;
    background: linear-gradient(135deg, #7323a9, #fd18f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.price-tag .period {
    font-size: 18px;
    color: #6c757d;
    margin-left: 4px;
}

.pricing-features {
    padding: 30px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    font-size: 15px;
    color: #333;
}

.feature-item i {
    color: #7323a9;
    font-size: 20px;
    margin-right: 12px;
    flex-shrink: 0;
}

.feature-highlight {
    background: linear-gradient(135deg, rgba(115, 35, 169, 0.05), rgba(253, 24, 240, 0.05));
    padding: 12px 16px;
    margin: 8px -16px;
    border-radius: 12px;
}

.feature-highlight i {
    color: #fd18f0;
}

.feature-premium {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.08), rgba(25, 177, 84, 0.08));
    padding: 12px 16px;
    margin: 8px -16px;
    border-radius: 12px;
}

.feature-premium i {
    color: #25D366;
    font-size: 22px;
}

.feature-separator {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.1), transparent);
    margin: 16px 0;
}

.pricing-footer {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    margin-top: 24px;
}

.pricing-footer i {
    color: #7323a9;
}

/* Botão Outline para Plano Premium */
.btn-outline-primary {
    border: 2px solid #7323a9;
    color: #7323a9;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: linear-gradient(135deg, #7323a9, #fd18f0);
    border-color: #7323a9;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(115, 35, 169, 0.3);
}

/* Responsivo para Preços */
@media (max-width: 991px) {
    .pricing-card-popular {
        transform: scale(1);
    }

    .pricing-card-popular:hover {
        transform: translateY(-8px);
    }
}

@media (max-width: 768px) {
    .pricing-card {
        padding: 30px 20px;
    }

    .price-tag .amount {
        font-size: 56px;
    }

    .feature-item {
        font-size: 14px;
    }

    .popular-badge {
        top: 15px;
        right: 15px;
        font-size: 12px;
        padding: 6px 12px;
    }
}


/* Automation Section */
.gradient-bg {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
}

.automation-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.automation-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.automation-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.cta-whatsapp-wrapper {
    margin: 2rem 0;
}

.cta-features {
    max-width: 700px;
    margin: 0 auto;
}

.cta-feature-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: white;
    border-radius: 50px;
    border: 2px solid #f8f9fa;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cta-feature-item:hover {
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.cta-feature-item i {
    font-size: 1.2rem;
}

.cta-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.cta-form .form-control {
    border-radius: 50px;
    padding: 1rem 1.5rem;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.cta-form .form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(253, 24, 240, 0.15);
}

.cta-tagline {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(115, 35, 169, 0.05) 0%, rgba(253, 24, 240, 0.05) 100%);
    border-radius: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .display-3 {
        font-size: 2.5rem;
    }

    .display-4 {
        font-size: 2rem;
    }

    .display-5 {
        font-size: 1.75rem;
    }

    .hero-section {
        padding-top: 100px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-value {
        font-size: 2.5rem;
    }

    .feature-card,
    .admin-feature-card,
    .differential-card {
        padding: 1.5rem;
    }

    /* Added responsive styles for WhatsApp button */
    .btn-whatsapp {
        font-size: 1rem;
        padding: 0.875rem 2rem;
    }

    .cta-feature-item {
        font-size: 0.875rem;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}