/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #2563eb;
    --primary-orange: #ea580c;
    --primary-green: #16a34a;
    --primary-purple: #9333ea;
    --primary-red: #dc2626;

    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;

    --white: #ffffff;
    --black: #000000;

    --font-family: 'Inter', sans-serif;
    --container-width: 1200px;
    --border-radius: 12px;
    --shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 40px -4px rgba(0, 0, 0, 0.15);
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--gray-700);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--gray-900);
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.8rem;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.5rem;
}

p {
    font-size: 1.1rem;
    line-height: 1.7;
}

.fs-8 {
    font-size: 0.8rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue), #1d4ed8);
    color: var(--white);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-orange {
    background: linear-gradient(135deg, var(--primary-orange), #c2410c);
}

.btn-purple {
    background: linear-gradient(135deg, var(--primary-purple), #7c3aed);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-blue);
}

.btn-white {
    background: var(--white);
    color: var(--primary-green);
}

.btn-whatsapp {
    background: #25d366;
    color: var(--white);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.9rem;
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, var(--primary-orange), #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

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

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

/* Text Colors */
.text-red {
    color: var(--primary-red);
}

/* Section Base */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    margin-bottom: 20px;
}

.section-header p {
    max-width: 800px;
    margin: 0 auto;
    color: var(--gray-600);
}

.section-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.section-badge-red {
    background: #fef2f2;
    color: var(--primary-red);
}

.section-badge-green {
    background: #f0fdf4;
    color: var(--primary-green);
}

.section-badge-blue {
    background: #eff6ff;
    color: var(--primary-blue);
}

.section-badge-purple {
    background: #faf5ff;
    color: var(--primary-purple);
}

.section-badge-orange {
    background: #fff7ed;
    color: var(--primary-orange);
}

.section-badge-white {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.section-cta {
    text-align: center;
    margin-top: 60px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    border-bottom: 1px solid var(--gray-100);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary-blue), #1d4ed8);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 0.9rem;
}

.logo-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gray-800);
}

.logo-badge {
    display: none;
    background: #fff7ed;
    color: var(--primary-orange);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.nav-desktop {
    display: none;
    gap: 32px;
}

.nav-desktop button {
    background: none;
    border: none;
    color: var(--gray-700);
    font-weight: 500;
    cursor: pointer;
    transition: color 0.3s ease;
}

.nav-desktop button:hover {
    color: var(--primary-blue);
}

.header-cta {
    display: none;
}

.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--gray-600);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    background: var(--white);
    border-top: 1px solid var(--gray-100);
    padding: 20px 0;
}

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

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-nav button {
    background: none;
    border: none;
    color: var(--gray-700);
    font-weight: 500;
    padding: 12px 0;
    text-align: left;
    cursor: pointer;
    transition: color 0.3s ease;
}

.mobile-nav button:hover {
    color: var(--primary-blue);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #1e3a8a, #1e40af, #2563eb);
    color: var(--white);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.2;
    background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.15) 1px, transparent 0);
    background-size: 20px 20px;
}

.hero-content {
    display: grid;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-left {
    space-y: 32px;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}

.badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
}

.badge-orange {
    background: rgba(234, 88, 12, 0.2);
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #FFF;
}

.hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #bfdbfe;
    margin-bottom: 32px;
}

.hero-subtitle-highlight {
    display: block;
    margin-top: 16px;
    font-size: 1.1rem;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin: 32px 0;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #fbbf24;
}

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

.hero-ctas {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 32px 0;
}

.hero-footer {
    font-size: 0.9rem;
    color: #bfdbfe;
    margin-top: 24px;
}

.hero-right {
    padding-left: 32px;
}

.dashboard-mockup {
    position: relative;
    background: var(--white);
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--shadow-lg);
    transform: rotate(2deg);
    transition: transform 0.5s ease;
}

.dashboard-mockup:hover {
    transform: rotate(0deg);
}

.dashboard-header {
    height: 16px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
    border-radius: 8px 8px 0 0;
    margin-bottom: 20px;
}

.dashboard-content {
    color: var(--gray-800);
}

.dashboard-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.dashboard-title h3 {
    font-size: 1.1rem;
    color: var(--gray-800);
}

.growth-indicator {
    color: var(--primary-green);
    font-weight: 600;
}

.dashboard-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
}

.metric {
    padding: 12px;
    border-radius: 8px;
}

.metric-green {
    background: #f0fdf4;
}

.metric-blue {
    background: #eff6ff;
}

.metric-label {
    font-size: 0.8rem;
    color: var(--gray-600);
}

.metric-value {
    font-size: 1.3rem;
    font-weight: 700;
}

.metric-green .metric-value {
    color: var(--primary-green);
}

.metric-blue .metric-value {
    color: var(--primary-blue);
}

.dashboard-chart {
    height: 96px;
    background: var(--gray-100);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
    font-size: 0.9rem;
}

.floating-badge {
    position: absolute;
    padding: 12px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: var(--shadow);
}

.floating-badge-1 {
    top: -24px;
    right: -24px;
    background: var(--primary-orange);
    color: var(--white);
    animation: bounce 2s infinite;
}

.floating-badge-2 {
    bottom: -16px;
    left: -16px;
    background: var(--white);
    color: var(--gray-800);
    box-shadow: var(--shadow-lg);
}

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

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--white);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-wheel {
    width: 4px;
    height: 12px;
    background: var(--white);
    border-radius: 2px;
    animation: pulse 2s infinite;
}

/* Animations */
@keyframes bounce {

    0%,
    20%,
    53%,
    80%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    40%,
    43% {
        transform: translate3d(0, -30px, 0);
    }

    70% {
        transform: translate3d(0, -15px, 0);
    }

    90% {
        transform: translate3d(0, -4px, 0);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

/* Responsive */
@media (min-width: 640px) {
    .logo-badge {
        display: block;
    }

    .header-cta {
        display: block;
    }

    .hero-ctas {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .nav-desktop {
        display: flex;
    }

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

    .hero-content {
        grid-template-columns: 1fr 1fr;
    }

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

    .hero-stats {
        gap: 64px;
    }
}

@media (max-width: 639px) {
    .container {
        padding: 0 16px;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero {
        padding-top: 80px;
    }

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

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

    .dashboard-mockup {
        margin-top: 40px;
    }
}

/* Proof Section */
.proof-section {
    background: var(--gray-50);
}

.cases-grid {
    display: grid;
    gap: 32px;
    margin-bottom: 60px;
}

.case-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-100);
}

.case-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.2);
}

.case-header {
    padding: 24px;
    color: var(--white);
}

.case-header-blue {
    background: linear-gradient(135deg, var(--primary-blue), #1d4ed8);
}

.case-header-purple {
    background: linear-gradient(135deg, var(--primary-purple), #7c3aed);
}

.case-title {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.case-title h3 {
    color: var(--white);
    font-size: 1.4rem;
}

.case-tag {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}

.case-header p {
    color: rgba(255, 255, 255, 0.9);
}

.case-content {
    padding: 24px;
}

.case-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.metric {
    text-align: center;
    padding: 16px;
    border-radius: 8px;
}

.metric-green {
    background: #f0fdf4;
}

.metric-blue {
    background: #eff6ff;
}

.metric-purple {
    background: #faf5ff;
}

.metric-orange {
    background: #fff7ed;
}

.metric-value {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.metric-green .metric-value {
    color: var(--primary-green);
}

.metric-blue .metric-value {
    color: var(--primary-blue);
}

.metric-purple .metric-value {
    color: var(--primary-purple);
}

.metric-orange .metric-value {
    color: var(--primary-orange);
}

.metric-label {
    font-size: 0.8rem;
    color: var(--gray-700);
    font-weight: 500;
}

.case-results {
    margin-bottom: 24px;
}

.result-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--gray-700);
}

.testimonial {
    background: var(--gray-50);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 12px;
    color: var(--gray-700);
}

.testimonial cite {
    font-size: 0.9rem;
    color: var(--gray-600);
    font-style: normal;
}

.case-result {
    background: linear-gradient(135deg, var(--primary-green), #059669);
    color: var(--white);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
}

.case-result-purple {
    background: linear-gradient(135deg, var(--primary-purple), #7c3aed);
}

.result-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.result-value {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.result-period {
    font-size: 0.9rem;
    opacity: 0.9;
}

.summary-stats {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    color: var(--white);
    margin-bottom: 40px;
}

.summary-stats h3 {
    color: var(--white);
    margin-bottom: 24px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 24px;
}

.summary-stat .stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 8px;
}

.summary-stat .stat-label {
    color: #bfdbfe;
}

/* Problem Section */
.problem-section {
    background: #fef2f2;
}

.problems-grid {
    display: grid;
    gap: 24px;
    margin-bottom: 60px;
}

.problem-card {
    background: var(--white);
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-red);
}

.problem-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.problem-content {
    display: flex;
    gap: 16px;
    flex-direction: column;
}

.problem-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    flex-shrink: 0;
}

.problem-title {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 12px;
}

.error-icon {
    color: var(--primary-red);
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.problem-title h3 {
    font-size: 1.1rem;
    color: var(--gray-900);
}

.problem-content p {
    color: var(--gray-600);
    line-height: 1.6;
}

.problem-stats {
    margin-top: 60px;
}

.problem-stat {
    text-align: center;
    padding: 24px;
    background: #fef2f2;
    border-radius: 12px;
}

/* Solution Section */
.solution-section {
    background: linear-gradient(135deg, #f0fdf4, #eff6ff);
}

.solutions-grid {
    display: grid;
    gap: 24px;
    margin-bottom: 60px;
}

.solution-card {
    background: linear-gradient(135deg, var(--gray-50), var(--white));
    border-radius: 16px;
    padding: 32px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-green);
    border: 1px solid var(--gray-100);
    position: relative;
    overflow: hidden;
}

.solution-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
    border-color: #93c5fd;
}

.solution-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.solution-title {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.success-icon {
    color: var(--primary-green);
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.solution-title h3 {
    font-size: 1.3rem;
    color: var(--gray-900);
}

.solution-card p {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 20px;
}

.solution-highlight {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
    color: var(--white);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
}

.comparison {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin: 60px 0;
}

.comparison-header {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
    color: var(--white);
    padding: 24px;
    text-align: center;
}

.comparison-header h3 {
    color: var(--white);
}

.comparison-content {
    display: grid;
    gap: 0;
}

.comparison-side {
    padding: 32px;
}

.comparison-before {
    background: #fef2f2;
}

.comparison-after {
    background: #f0fdf4;
}

.comparison-side h4 {
    margin-bottom: 24px;
    font-size: 1.3rem;
}

.comparison-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.comparison-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.result-promise {
    background: linear-gradient(135deg, var(--primary-green), #059669);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    color: var(--white);
}

.result-promise h3 {
    color: var(--white);
    margin-bottom: 16px;
}

.result-promise p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.result-promise-footer {
    color: rgba(255, 255, 255, 0.8);
    margin-top: 16px !important;
    font-size: 0.9rem;
}

/* Benefits Section */
.benefits-section {
    background: var(--white);
}

.benefits-grid {
    display: grid;
    gap: 32px;
    margin-bottom: 60px;
}

.benefit-card {
    background: linear-gradient(135deg, var(--gray-50), var(--white));
    border-radius: 16px;
    padding: 32px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-100);
    text-align: center;
}

.benefit-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: #93c5fd;
}

.benefit-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

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

.benefit-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.benefit-description {
    color: var(--gray-600);
    font-weight: 500;
    margin-bottom: 24px;
}

.benefit-features {
    text-align: left;
    margin-bottom: 24px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: var(--gray-700);
    line-height: 1.5;
}

.benefit-badge {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
    color: var(--white);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.success-metrics {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
    border-radius: 16px;
    padding: 40px;
    color: var(--white);
}

.success-metrics .section-header h3 {
    color: var(--white);
    margin-bottom: 16px;
}

.success-metrics .section-header p {
    color: #bfdbfe;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.metric-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 24px;
    border-radius: 12px;
    text-align: center;
}

.metric-card .metric-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 8px;
}

.metric-card .metric-label {
    color: #bfdbfe;
    font-weight: 500;
    margin-bottom: 4px;
}

.metric-card .metric-sublabel {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
}

/* Responsive Grid Layouts */
@media (min-width: 768px) {
    .cases-grid {
        grid-template-columns: 1fr 1fr;
    }

    .problems-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .comparison-content {
        grid-template-columns: 1fr 1fr;
    }

    .case-metrics {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (min-width: 1024px) {
    .problems-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .solutions-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* How It Works Section */
.how-it-works-section {
    background: var(--gray-50);
}

.steps-grid {
    display: grid;
    gap: 32px;
    margin-bottom: 60px;
}

.step-card {
    background: var(--white);
    border-radius: 16px;
    padding: 32px;
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
    border: 1px solid var(--gray-100);
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-purple), #7c3aed);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.step-icon {
    font-size: 3rem;
    margin: 20px 0;
}

.step-card h3 {
    margin-bottom: 16px;
    color: var(--gray-900);
}

.step-card p {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 20px;
}

.step-duration {
    background: var(--primary-purple);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
}

.timeline-summary {
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow);
}

.timeline-summary h3 {
    text-align: center;
    margin-bottom: 32px;
    color: var(--gray-900);
}

.timeline-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 16px;
    background: var(--gray-50);
    border-radius: 12px;
}

.timeline-day {
    background: var(--primary-purple);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    min-width: 80px;
    text-align: center;
}

.timeline-desc {
    color: var(--gray-700);
    font-weight: 500;
}

.timeline-guarantee {
    text-align: center;
    padding: 20px;
    background: #f0fdf4;
    border-radius: 12px;
    color: var(--primary-green);
    font-size: 1.1rem;
}

/* Pricing Section */
.pricing-section {
    background: var(--gray-50);
}

/* Billing Toggle */
.billing-toggle {
    text-align: center;
    margin-bottom: 40px;
}

.toggle-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 12px;
}

.toggle-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-700);
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--gray-300);
    transition: .4s;
    border-radius: 34px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

.toggle-switch input:checked+.toggle-slider {
    background-color: var(--primary-green);
}

.toggle-switch input:focus+.toggle-slider {
    box-shadow: 0 0 1px var(--primary-green);
}

.toggle-switch input:checked+.toggle-slider:before {
    transform: translateX(26px);
}

.discount-badge {
    background: var(--primary-green);
    color: var(--white);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-left: 8px;
}

.toggle-subtitle {
    color: var(--gray-600);
    font-size: 1rem;
    margin: 0;
}

.pricing-grid {
    display: flex;
    gap: 32px;
    margin-bottom: 60px;
    justify-content: center;
}

@media screen and (max-width: 768px) {
    .pricing-grid {
        flex-direction: column;
    }
}

.pricing-card {
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow);
    border: 2px solid var(--gray-200);
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.pricing-card-popular {
    border-color: var(--primary-orange);
    transform: scale(1.05);
}

.popular-badge {
    background: var(--primary-orange);
    color: var(--white);
    text-align: center;
    padding: 8px;
    font-size: 0.8rem;
    font-weight: 700;
}

.pricing-header {
    padding: 32px 24px 24px;
    text-align: center;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--gray-900);
}

.pricing-header p {
    color: var(--gray-600);
    margin-bottom: 24px;
}

.pricing-content {
    padding: 0 24px 32px;
}

/* New Pricing Structure */
.pricing-details {
    margin-bottom: 24px;
}

.first-month-price,
.recurring-price,
.annual-investment,
.monthly-equivalent {
    text-align: center;
    margin-bottom: 20px;
    padding: 16px;
    background: var(--gray-50);
    border-radius: 12px;
    border: 1px solid var(--gray-200);
}

.price-label {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-bottom: 8px;
    font-weight: 500;
}

.price-value {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 4px;
}

.price-period {
    font-size: 1rem;
    color: var(--gray-500);
    font-weight: 400;
}

.price-breakdown {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-top: 4px;
}

.original-price {
    text-decoration: line-through;
    color: var(--gray-400);
    margin-right: 8px;
}

.savings {
    color: var(--primary-green);
    font-weight: 600;
}

.annual-investment {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border-color: var(--primary-green);
}

.annual-investment .price-value {
    color: var(--primary-green);
}

.monthly-equivalent .price-value {
    color: var(--primary-blue);
    font-size: 1.8rem;
}

/* Legacy styles for backwards compatibility */
.pricing-setup,
.pricing-monthly {
    text-align: center;
    margin-bottom: 16px;
}

.setup-label,
.monthly-label {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: 4px;
}

.setup-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gray-900);
}

.monthly-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-orange);
}

.monthly-price span {
    font-size: 1rem;
    color: var(--gray-500);
}

.pricing-card .btn {
    width: 100%;
    margin: 24px 0;
}

.pricing-features {
    margin-top: 24px;
}

.pricing-features .feature {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: var(--gray-700);
    line-height: 1.5;
}

.pricing-features .feature.hidden-feature {
    display: none;
}

.toggle-features {
    display: block;
    width: fit-content;
    margin: 20px auto 0;
    padding: 8px 16px;
    font-size: 0.9rem;
    border: 1px solid var(--gray-300);
    background: var(--white);
    color: var(--gray-700);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.toggle-features:hover {
    background: var(--gray-100);
    border-color: var(--gray-400);
}

.pricing-comparison {
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow);
    margin-bottom: 60px;
}

.comparison-grid {
    display: grid;
    gap: 32px;
    margin-top: 32px;
}

.comparison-cost {
    padding: 24px;
    background: #fef2f2;
    border-radius: 12px;
    border-left: 4px solid var(--primary-red);
}

.comparison-return {
    padding: 24px;
    background: #f0fdf4;
    border-radius: 12px;
    border-left: 4px solid var(--primary-green);
}

.comparison-side h4 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.comparison-items {
    margin-bottom: 20px;
}

.comparison-items div {
    margin-bottom: 8px;
    color: var(--gray-700);
}

.comparison-example {
    padding: 16px;
    background: #fecaca;
    border-radius: 8px;
}

.comparison-example-green {
    background: #bbf7d0;
}

.example-title {
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 4px;
}

.example-cost {
    font-weight: 700;
    color: var(--gray-900);
}

.guarantees {
    display: grid;
    gap: 24px;
    margin-bottom: 40px;
}

.guarantee-card {
    background: var(--white);
    padding: 24px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    border: 1px solid var(--gray-100);
}

.guarantee-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.guarantee-card h4 {
    margin-bottom: 8px;
    color: var(--gray-900);
}

.guarantee-card p {
    color: var(--gray-600);
    font-size: 0.9rem;
}

.cta-subtitle {
    color: var(--gray-600);
    margin-bottom: 24px;
}

/* FAQ Section */
.faq-section {
    background: var(--white);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--gray-50);
    border-radius: 16px;
    margin-bottom: 16px;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-100);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-lg);
}

.faq-question {
    width: 100%;
    padding: 24px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    border-radius: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.faq-question span {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-900);
}

.faq-icon {
    width: 32px;
    height: 32px;
    background: #eff6ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 0 24px 24px;
    border-top: 1px solid var(--gray-200);
    margin-top: 16px;
    padding-top: 20px;
}

.faq-answer.active {
    display: block;
}

.faq-answer p {
    color: var(--gray-700);
    line-height: 1.6;
}

.faq-footer {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: var(--gray-50);
    border-radius: 16px;
}

.faq-footer h3 {
    margin-bottom: 16px;
    color: var(--gray-900);
}

.faq-footer p {
    color: var(--gray-600);
    margin-bottom: 32px;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.contact-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.3;
    background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.15) 1px, transparent 0);
    background-size: 30px 30px;
}

.contact-section .section-header h2 {
    color: var(--white);
}

.contact-section .section-header p {
    color: rgba(255, 255, 255, 0.9);
}

.contact-content {
    display: grid;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 2;
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-form h3 {
    color: var(--white);
    text-align: center;
    margin-bottom: 32px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--white);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--gray-900);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    box-shadow: 0 0 0 2px var(--primary-orange);
    border-color: transparent;
}

.contact-form .btn {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-orange), #c2410c);
    margin-top: 8px;
}

.alternative-cta {
    margin-top: 24px;
    text-align: center;
}

.alternative-cta p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 16px;
}

.contact-benefits h3 {
    color: var(--white);
    margin-bottom: 32px;
}

.benefit-step {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.step-icon {
    width: 56px;
    height: 56px;
    background: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    margin: 10px auto 20px;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    text-align: center;
    flex-shrink: 0;
}

.step-content h4 {
    color: var(--white);
    margin-bottom: 8px;
}

.step-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.contact-guarantees {
    margin-top: 40px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

.contact-guarantees h4 {
    color: var(--white);
    margin-bottom: 16px;
}

.guarantee-item {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: var(--white);
    margin-bottom: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo .logo-text {
    color: var(--white);
}

.footer-section p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-stats {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-stats div {
    font-size: 0.9rem;
    color: var(--primary-orange);
    font-weight: 500;
}

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

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: var(--gray-300);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-orange);
}

.contact-info {
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.contact-item i {
    width: 20px;
    height: 20px;
    color: var(--primary-orange);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid var(--gray-700);
    flex-wrap: wrap;
    gap: 20px;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--primary-orange);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1000;
}

.whatsapp-pulse {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: #25d366;
    opacity: 0.2;
    animation: pulse-ring 2s infinite;
}

.whatsapp-button {
    width: 64px;
    height: 64px;
    background: #25d366;
    border: none;
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    animation: bounce 2s infinite;
}

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

.whatsapp-button svg {
    width: 32px;
    height: 32px;
}

.whatsapp-tooltip {
    position: absolute;
    bottom: 100%;
    right: 0;
    margin-bottom: 8px;
    width: 256px;
    background: var(--gray-900);
    color: var(--white);
    padding: 12px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    transform: translateY(10px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.whatsapp-tooltip.show {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    right: 16px;
    border: 8px solid transparent;
    border-top-color: var(--gray-900);
}

.tooltip-title {
    font-weight: 600;
    margin-bottom: 4px;
}

.tooltip-subtitle {
    font-size: 0.8rem;
    color: var(--gray-300);
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.2;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Additional Responsive Styles */
@media (min-width: 768px) {
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .pricing-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .guarantees {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .contact-content {
        grid-template-columns: 1fr 1fr;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .timeline-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (min-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 767px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .pricing-card-popular {
        transform: none;
        margin: 0;
    }

    .whatsapp-tooltip {
        width: 200px;
        right: -80px;
    }
}

.social-icons {
    margin-bottom: 1rem;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #333;
    margin: 0 8px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: linear-gradient(to right, var(--theme-teal), var(--theme-blue));
    color: #37adee;
    transform: translateY(-3px);
}

/* Estilo para garantir que elementos animados comecem invisíveis */
.case-card,
.problem-card,
.solution-card,
.benefit-card,
.step-card,
.pricing-card {
    opacity: 0;
}

.dashboard-chart {
    position: relative;
    width: 100%;
    height: 150px;
    /* Ajuste conforme necessário */
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 15px;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* Para garantir que o SVG não vaze */
}

.dashboard-chart svg {
    width: 100%;
    height: 100%;
    overflow: visible;
    /* Permite que elementos como tooltips ou rótulos fiquem fora da viewBox se necessário */
}

.chart-line {
    fill: none;
    stroke: #4CAF50;
    /* Cor da linha de crescimento */
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    /* stroke-dasharray e stroke-dashoffset serão definidos e animados pelo JS */
}

.chart-points {
    fill: #4CAF50;
    stroke: #fff;
    stroke-width: 2;
}

/* Estilo simples para o texto original que será substituído, apenas para garantir centralização se o JS não carregar */
.dashboard-chart .placeholder-text {
    text-align: center;
    color: #666;
}

.chart-line.orders {
    stroke: #007bff;
}

/* Azul para Pedidos */
.chart-line.revenue {
    stroke: #28a745;
}

/* Verde para Faturamento */

.chart-legend {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 0.8em;
    color: #555;
    display: flex;
    gap: 15px;
}

.legend-item {
    display: flex;
    align-items: center;
}

.legend-color {
    width: 15px;
    height: 3px;
    margin-right: 5px;
}

.legend-color.orders {
    background-color: #007bff;
}

.legend-color.revenue {
    background-color: #28a745;
}