/* ========================================
   LaraMenu Whitelabel - Landing Page CSS
   Modern, Dynamic & SEO Optimized
   ======================================== */

/* CSS Variables */
:root {
    --primary: #ef6331;
    --primary-dark: #d54f1f;
    --primary-light: #ff7a4a;
    --primary-glow: rgba(239, 99, 49, 0.5);
    --neon-orange: #ff6b35;
    --neon-yellow: #ffc107;

    --text-dark: #111827;
    --text-medium: #4B5563;
    --text-light: #9CA3AF;

    --bg-white: #ffffff;
    --bg-light: #FFF7F3;
    --bg-lighter: #FDF2EC;
    --skeleton-base: #e5e7eb;
    --skeleton-shine: #f3f4f6;

    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-neon: 0 0 20px var(--primary-glow);

    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    --transition: all 0.3s ease;
    --transition-fast: all 0.2s ease-out;
    --transition-slow: all 0.4s ease-out;
}

/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 80%;

    height: auto;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


.video-commercial-banner {
    width: 100%;
    max-width: 720px; /* aumente bem */
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}


.section-video-commercial {
    padding: 80px 0; /* antes geralmente é 120px ou mais */
}


.video-commercial-wrapper {
    align-items: center;
    gap: 40px;
}






/* ========================================
   Header
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--primary);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 24px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    min-width: 120px;
}

.header .logo {
    position: relative;
    z-index: 10;
}

.logo-img {
    height: 40px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    display: block;
}

/* Header logo - ensure visibility on orange background */
.header .logo-img {
    filter: brightness(0) invert(1);
    min-height: 40px;
}

/* Footer logo - smaller size */
.footer .logo-img {
    height: 25px;
    filter: brightness(0) invert(1);
}

/* Logo text fallback */
.logo-text {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.logo-lara {
    color: white;
}

.video-features li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.video-features .feature-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}


.logo-menu {
    color: white;
}

.footer .logo-lara,
.footer .logo-menu {
    color: white;
}

.nav {
    display: none;
    align-items: center;
}

.hero-features li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-features .check-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}


.nav-list {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    color: white;
    position: relative;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: white;
    transition: var(--transition);
}

.nav-link:hover {
    color: rgba(255, 255, 255, 0.8);
}

.nav-link:hover::after {
    width: 100%;
}

.header-buttons {
    display: none;
    gap: 12px;
    flex-shrink: 0;
}

.header-buttons .btn {
    white-space: nowrap;
}

.header-buttons .btn-outline {
    background: transparent;
    color: white;
    border-color: white;
}

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

.header-buttons .btn-primary {
    background: white;
    color: var(--primary);
    border-color: white;
}

.header-buttons .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.9);
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger {
    width: 24px;
    height: 2px;
    background: white;
    position: relative;
    transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: white;
    transition: var(--transition);
}

.hamburger::before {
    top: -7px;
}

.hamburger::after {
    bottom: -7px;
}

.menu-toggle.active .hamburger {
    background: transparent;
}

.menu-toggle.active .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.menu-toggle.active .hamburger::after {
    bottom: 0;
    transform: rotate(-45deg);
}

/* Mobile Nav */
.nav-logo-mobile {
    display: none;
}

.nav.active {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 999;
    padding-top: 60px;
}

.nav.active .nav-logo-mobile {
    display: block;
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
}

.nav.active .nav-logo-img {
    height: 36px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.nav.active .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.nav.active .nav-link {
    font-size: 1.25rem;
    color: white;
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: inherit;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    text-align: center;
}

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

.btn-md {
    padding: 12px 24px;
    font-size: 1rem;
}

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

.btn-primary {
    background: linear-gradient(90deg, var(--primary), #ff8c42, var(--primary-dark), var(--primary));
    background-size: 300% 100%;
    color: white;
    border: none;
    animation: gradientMove 3s ease infinite;
    box-shadow: 0 4px 15px rgba(239, 99, 49, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(239, 99, 49, 0.5);
}

.btn-outline {
    background: linear-gradient(90deg, var(--primary), #ff8c42, var(--primary-dark), var(--primary));
    background-size: 300% 100%;
    color: white;
    border: none;
    animation: gradientMove 3s ease infinite;
    box-shadow: 0 4px 15px rgba(239, 99, 49, 0.35);
}

.btn-outline:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(239, 99, 49, 0.5);
}

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

.btn-white:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Botão Demo com Borda Amarela Animada */
.btn-demo-yellow {
    position: relative;
    background: linear-gradient(90deg, var(--primary), #ff8c42, var(--primary-dark), var(--primary));
    background-size: 300% 100%;
    color: white;
    border: none;
    font-weight: 600;
    overflow: visible;
    z-index: 1;
    animation: gradientMove 3s ease infinite;
    box-shadow: 0 4px 15px rgba(239, 99, 49, 0.4);
}

.btn-demo-yellow::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(90deg, #ffd700, #ffec8b, #ffa500, #ffd700, #ffec8b);
    background-size: 300% 100%;
    border-radius: calc(var(--radius-md) + 2px);
    z-index: -1;
    animation: yellowBorderRotate 2s linear infinite;
}

.btn-demo-yellow::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, var(--primary), #ff8c42, var(--primary-dark), var(--primary));
    background-size: 300% 100%;
    border-radius: var(--radius-md);
    z-index: -1;
    animation: gradientMove 3s ease infinite;
}

.btn-demo-yellow:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 20px rgba(239, 99, 49, 0.5);
    color: white;
}

/* Botão Degradê Animado Simples */
.btn-gradient-animated {
    background: linear-gradient(90deg, var(--primary), #ff8c42, var(--primary-dark), var(--primary));
    background-size: 300% 100%;
    color: white;
    border: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    animation: gradientMove 3s ease infinite;
    box-shadow: 0 4px 15px rgba(239, 99, 49, 0.35);
    transition: all 0.3s ease;
}

.btn-gradient-animated:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(239, 99, 49, 0.5);
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.btn-outline-white {
    background: transparent;
    color: white;
    border-color: white;
}

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

.btn-block {
    width: 100%;
}

.whatsapp-icon {
    font-size: 1.1em;
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-light) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

.hero-title {
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.hero-title .highlight {
    color: var(--primary);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 24px;
    line-height: 1.7;
}

.hero-features {
    margin-bottom: 32px;
}

.hero-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 1rem;
    color: var(--text-medium);
}

.check-icon {
    flex-shrink: 0;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Hero Mockup */
.hero-mockup {
    display: flex;
    justify-content: center;
}

.hero-mockup-img {
    width: 115%;
    max-width: 650px;
    height: auto;
    border-radius: var(--radius-lg);
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.15));
}

.mockup-container {
    position: relative;
    width: 100%;
    max-width: 600px;
}

.mockup-desktop {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.mockup-header {
    background: #f3f4f6;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.mockup-dots {
    display: flex;
    gap: 6px;
}

.mockup-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d1d5db;
}

.mockup-dots span:first-child {
    background: #ef4444;
}

.mockup-dots span:nth-child(2) {
    background: #fbbf24;
}

.mockup-dots span:last-child {
    background: #22c55e;
}

.mockup-title {
    font-size: 0.75rem;
    color: var(--text-medium);
    font-weight: 500;
}

.mockup-body {
    display: flex;
    min-height: 200px;
}

.mockup-sidebar {
    width: 140px;
    background: #1f2937;
    padding: 16px 12px;
    display: none;
}

.sidebar-item {
    padding: 8px 12px;
    font-size: 0.7rem;
    color: #9ca3af;
    border-radius: var(--radius-sm);
    margin-bottom: 4px;
    cursor: pointer;
}

.sidebar-item.active {
    background: var(--primary);
    color: white;
}

.mockup-content {
    flex: 1;
    padding: 16px;
    background: #f9fafb;
}

.stat-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 16px;
}

.stat-card {
    background: white;
    padding: 12px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: 0.65rem;
    color: var(--text-light);
}

.chart-placeholder {
    background: white;
    padding: 16px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 80px;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(to top, var(--primary), var(--primary-light));
    border-radius: 4px 4px 0 0;
    transition: var(--transition);
}

/* Mobile Mockup */
.mockup-mobile {
    position: absolute;
    bottom: -20px;
    right: -10px;
    width: 120px;
    background: var(--bg-white);
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    border: 3px solid #1f2937;
}

.mobile-notch {
    width: 50%;
    height: 12px;
    background: #1f2937;
    margin: 0 auto;
    border-radius: 0 0 10px 10px;
}

.mobile-content {
    padding: 8px;
}

.mobile-header-bar {
    background: var(--primary);
    color: white;
    padding: 6px 8px;
    border-radius: var(--radius-sm);
    font-size: 0.55rem;
    font-weight: 600;
    margin-bottom: 8px;
    text-align: center;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px;
    background: #f9fafb;
    border-radius: var(--radius-sm);
    margin-bottom: 4px;
}

.menu-item-img {
    font-size: 1rem;
}

.menu-item-info {
    flex: 1;
}

.menu-item-name {
    display: block;
    font-size: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.menu-item-price {
    font-size: 0.45rem;
    color: var(--primary);
    font-weight: 600;
}

.mobile-btn {
    background: var(--primary);
    color: white;
    text-align: center;
    padding: 6px;
    border-radius: var(--radius-sm);
    font-size: 0.5rem;
    font-weight: 600;
    margin-top: 8px;
}

/* ========================================
   Sections Common Styles
   ======================================== */
.section {
    padding: 80px 0;
}

.section-light {
    background: var(--bg-light);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.3;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-medium);
    line-height: 1.6;
}

/* ========================================
   Para Quem É Section
   ======================================== */
.cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.profile-card {
    background: var(--bg-white);
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.profile-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.profile-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.profile-description {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.6;
}

/* ========================================
   Features Section
   ======================================== */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.feature-card {
    background: var(--bg-white);
    padding: 28px 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.feature-icon img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.feature-description {
    font-size: 0.9rem;
    color: var(--text-medium);
    line-height: 1.6;
}

/* ========================================
   Como Funciona Section
   ======================================== */
.steps-container {
    max-width: 800px;
    margin: 0 auto;
}

.step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.step-number {
    width: 56px;
    height: 56px;
    min-width: 56px;
    min-height: 56px;
    background: linear-gradient(135deg, var(--primary), #ff8c42);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(239, 99, 49, 0.4);
    flex-shrink: 0;
}

.step-content {
    flex: 1;
    padding-bottom: 24px;
}

.step-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.step-description {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.6;
}

.step-connector {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--primary), var(--primary-light));
    margin-left: 27px;
    margin-bottom: 16px;
}

/* ========================================
   Pricing Section
   ======================================== */
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: 32px 24px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
}

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

.pricing-featured {
    border-color: var(--primary);
    transform: scale(1.02);
}

.pricing-featured:hover {
    transform: scale(1.02) translateY(-4px);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

.pricing-header {
    text-align: center;
    margin-bottom: 24px;
}

.pricing-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.pricing-description {
    font-size: 0.9rem;
    color: var(--text-medium);
}

.pricing-price {
    text-align: center;
    margin-bottom: 8px;
}

.price-currency {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    vertical-align: top;
}

.price-value {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
}

.price-period {
    font-size: 1rem;
    color: var(--text-medium);
}

.pricing-setup {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 24px;
}

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

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-size: 0.9rem;
    color: var(--text-medium);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features .check {
    color: var(--primary);
    font-weight: 700;
}

/* ========================================
   Demo Section
   ======================================== */
.demo-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 48px;
}

.demo-card {
    background: var(--bg-white);
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.demo-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.demo-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.demo-description {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 16px;
}

.demo-features {
    list-style: none;
}

.demo-features li {
    padding: 6px 0;
    font-size: 0.85rem;
    color: var(--text-medium);
    display: flex;
    align-items: center;
    gap: 8px;
}

.demo-features li::before {
    content: '→';
    color: var(--primary);
    font-weight: 600;
}

.demo-cta {
    text-align: center;
}

/* ========================================
   Testimonials Section
   ======================================== */
.testimonials-container {
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonials-wrapper {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: 100%;
    padding: 0 20px;
}

.testimonial-content {
    background: var(--bg-white);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin-bottom: 24px;
    position: relative;
}

.testimonial-content::before {
    content: '"';
    position: absolute;
    top: 16px;
    left: 24px;
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--text-medium);
    line-height: 1.7;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 20px;
}

.author-avatar {
    width: 56px;
    height: 56px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
}

.author-role {
    font-size: 0.85rem;
    color: var(--text-light);
}

.testimonials-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

.testimonial-btn {
    width: 44px;
    height: 44px;
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--primary);
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.testimonials-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--primary);
    width: 24px;
    border-radius: 5px;
}

/* ========================================
   FAQ Section
   ======================================== */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    margin-bottom: 16px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: var(--transition-fast);
}

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

.faq-item.active {
    border-color: var(--primary);
    box-shadow: 0 4px 20px rgba(239, 99, 49, 0.15);
}

.faq-question {
    width: 100%;
    padding: 24px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: left;
    transition: var(--transition);
    gap: 16px;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 50%;
    background: var(--bg-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: var(--transition);
    font-weight: 400;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: var(--primary);
    color: white;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    border-top: 0 solid transparent;
}

.faq-item.active .faq-answer {
    max-height: 400px;
    border-top: 2px solid var(--primary);
}

.faq-answer p {
    padding: 20px 28px 24px;
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.8;
    background: linear-gradient(to bottom, var(--bg-light), var(--bg-white));
}

/* ========================================
   CTA Section
   ======================================== */
.section-cta {
    background: #fff7f3;
    padding: 80px 0;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
    line-height: 1.3;
}

.cta-subtitle {
    font-size: 1.05rem;
    color: #4b5563;
    margin-bottom: 32px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: center;
    margin-bottom: 32px;
}

.cta-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.cta-features span {
    font-size: 0.9rem;
    color: #4b5563;
}

/* ========================================
   Footer Premium - Estilo Moderno
   ======================================== */
.footer-premium {
    background: linear-gradient(135deg, var(--primary) 0%, #d4541d 100%);
    color: white;
    padding: 60px 0 0;
    position: relative;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

/* Brand Column */
.footer-brand-col {
    max-width: 280px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 16px;
}

.footer-logo-img {
    height: 22px;
    width: auto;
    filter: brightness(0) invert(1);
        max-width: 100%;
}

.footer-tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-email {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: white;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    transition: var(--transition);
}

.footer-email:hover {
    background: rgba(255, 255, 255, 0.25);
}

/* Links Columns */
.footer-links-col {
    min-width: 140px;
}

.footer-col-title {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.footer-links-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-col a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
    transition: var(--transition);
}

.footer-links-col a:hover {
    color: white;
    padding-left: 5px;
}

/* Contact Column */
.footer-contact-col {
    max-width: 220px;
}

.footer-contact-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Social Buttons */
.footer-social {
    display: flex;
    gap: 12px;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-btn svg {
    width: 18px;
    height: 18px;
    fill: white;
}

.social-btn:hover {
    background: white;
    transform: translateY(-3px);
}

.social-btn:hover svg {
    fill: var(--primary);
}

/* Footer Bottom Bar */
.footer-bottom-bar {
    background: rgba(0, 0, 0, 0.15);
    padding: 20px 0;
    margin: 0 -9999px;
    padding-left: 9999px;
    padding-right: 9999px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    text-align: center;
}

.footer-bottom-bar p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.footer-bottom-bar strong {
    color: white;
}

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-legal-links a {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-legal-links a:hover {
    color: white;
}

.footer-legal-links .divider {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
}

/* Footer Responsive */
@media (min-width: 768px) {
    .footer-main {
        grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    }

    .footer-bottom-bar {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (min-width: 1024px) {
    .footer-premium {
        padding: 80px 0 0;
    }

    .footer-main {
        padding-bottom: 60px;
    }
}

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

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

/* Staggered animation delays */
.cards-grid .animate-on-scroll:nth-child(1) {
    transition-delay: 0.1s;
}

.cards-grid .animate-on-scroll:nth-child(2) {
    transition-delay: 0.2s;
}

.cards-grid .animate-on-scroll:nth-child(3) {
    transition-delay: 0.3s;
}

.cards-grid .animate-on-scroll:nth-child(4) {
    transition-delay: 0.4s;
}

.features-grid .animate-on-scroll:nth-child(1) {
    transition-delay: 0.05s;
}

.features-grid .animate-on-scroll:nth-child(2) {
    transition-delay: 0.1s;
}

.features-grid .animate-on-scroll:nth-child(3) {
    transition-delay: 0.15s;
}

.features-grid .animate-on-scroll:nth-child(4) {
    transition-delay: 0.2s;
}

.features-grid .animate-on-scroll:nth-child(5) {
    transition-delay: 0.25s;
}

.features-grid .animate-on-scroll:nth-child(6) {
    transition-delay: 0.3s;
}

.features-grid .animate-on-scroll:nth-child(7) {
    transition-delay: 0.35s;
}

.features-grid .animate-on-scroll:nth-child(8) {
    transition-delay: 0.4s;
}

.pricing-grid .animate-on-scroll:nth-child(1) {
    transition-delay: 0.1s;
}

.pricing-grid .animate-on-scroll:nth-child(2) {
    transition-delay: 0.2s;
}

.pricing-grid .animate-on-scroll:nth-child(3) {
    transition-delay: 0.3s;
}

/* ========================================
   Video Section
   ======================================== */
.section-video {
    background: var(--primary);
    padding: 60px 0;
    overflow: hidden;
}

.video-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.video-wrapper {
    position: relative;
}

.video-frame {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    background: #000;
}

.video-frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-badge {
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    color: var(--text-dark);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.video-badge span {
    color: var(--primary);
}

.video-content {
    color: white;
}

.video-title {
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 16px;
}

.video-title .highlight {
    color: #fbbf24;
}

.video-description {
    font-size: 1rem;
    opacity: 0.95;
    line-height: 1.6;
    margin-bottom: 24px;
}

.video-features {
    margin-bottom: 28px;
}

.video-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.video-features li:last-child {
    border-bottom: none;
}

.video-features .feature-icon {
    font-size: 1.25rem;
}

.video-buttons .btn-primary {
    background: white;
    color: var(--primary);
    border-color: white;
}

.video-buttons .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ========================================
   Metrics Bar
   ======================================== */
.metrics-bar {
    background: linear-gradient(135deg, var(--text-dark) 0%, #374151 100%);
    padding: 40px 0;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    text-align: center;
}

.metric-item {
    padding: 16px;
}

.metric-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 4px;
}

.metric-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* ========================================
   Carrossel de Integrações (Logos PNG)
   ======================================== */
.integrations-section {
    padding: 40px 0;
    background-color: #fff7f3;
    overflow: hidden;
    max-width: 100vw;
}

.integrations-title-wrapper {
    text-align: center;
    margin-bottom: 24px;
    padding: 0 20px;
}

.integrations-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #6b7280;
}

/* Quebra de linha apenas no mobile */
.mobile-break {
    display: none;
}

@media (max-width: 480px) {
    .mobile-break {
        display: block;
    }

    .integrations-title {
        font-size: 0.85rem;
        line-height: 1.5;
    }
}

.integrations-carousel {
    position: relative;
    width: 100%;
}

.integrations-viewport {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 15px 0;
}

.integrations-track {
    display: inline-flex;
    align-items: center;
    gap: 64px;
    /* ESSA LINHA É OBRIGATÓRIA: anima o movimento */
    animation: integrations-scroll 30s linear infinite;
}

.integration-item {
    flex-shrink: 0;
}

.integration-item img {
    height: 30px;
    width: auto;
    display: block;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: opacity 0.3s ease, filter 0.3s ease, transform 0.3s ease;
}

.integration-item img:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: translateY(-3px) scale(1.1);
}

/* Fade nas bordas */
.integrations-viewport::before,
.integrations-viewport::after {
    content: "";
    position: absolute;
    top: 0;
    width: 80px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.integrations-viewport::before {
    left: 0;
    background: linear-gradient(to right, #fff7f3 0%, rgba(255, 247, 243, 0) 100%);
}

.integrations-viewport::after {
    right: 0;
    background: linear-gradient(to left, #fff7f3 0%, rgba(255, 247, 243, 0) 100%);
}

/* ANIMAÇÃO DO MARQUEE */
@keyframes integrations-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .integrations-track {
        gap: 40px;
    }

    .integration-item img {
        height: 40px;
    }
}

/* ========================================
   Section Dark (Vantagens) - Agora com fundo laranja
   ======================================== */
.section-dark {
    background: linear-gradient(135deg, var(--primary) 0%, #d4541d 50%, #ff8c42 100%);
    padding: 80px 0;
    position: relative;
}

.section-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 200, 100, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

.section-title-light {
    color: white;
}

.section-subtitle-light {
    color: rgba(255, 255, 255, 0.9);
}

.advantages-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.advantage-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    transition: var(--transition);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.advantage-card:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.advantage-icon-wrapper {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.advantage-icon {
    font-size: 1.75rem;
}

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

.advantage-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* ========================================
   Simulator Section - Premium Design
   ======================================== */
.section-simulator {
    background: linear-gradient(135deg, var(--primary) 0%, #d4541d 50%, #ff8c42 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.section-simulator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 200, 100, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

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

.section-simulator .section-title {
    color: white;
}

.section-simulator .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

/* Simulator Premium Card */
.simulator-premium {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    position: relative;
}

/* Badge */
.simulator-badge {
    background: linear-gradient(135deg, var(--primary), #ff8c42);
    padding: 14px 24px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.simulator-content {
    padding: 40px;
}

/* Sliders */
.simulator-sliders {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 40px;
}

.slider-group {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #e9ecef;
}

.slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 12px;
}

.slider-header label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #374151;
}

.slider-value-display {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.value-currency {
    font-size: 1rem;
    color: #6b7280;
}

.value-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.value-label {
    font-size: 0.85rem;
    color: #6b7280;
}

.slider-track-wrapper {
    position: relative;
}

/* Premium Slider */
.premium-slider {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: linear-gradient(90deg, rgba(239, 99, 49, 0.3), rgba(255, 140, 66, 0.3));
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
}

.premium-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #ff8c42);
    cursor: pointer;
    box-shadow:
        0 0 20px rgba(239, 99, 49, 0.5),
        0 4px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.2s ease;
    border: 3px solid white;
}

.premium-slider::-webkit-slider-thumb:hover {
    transform: scale(1.15);
    box-shadow:
        0 0 30px rgba(239, 99, 49, 0.7),
        0 6px 12px rgba(0, 0, 0, 0.4);
}

.premium-slider::-moz-range-thumb {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #ff8c42);
    cursor: pointer;
    border: 3px solid white;
    box-shadow: 0 0 20px rgba(239, 99, 49, 0.5);
}

.slider-marks {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    font-size: 0.7rem;
    color: #9ca3af;
}

/* Results Grid */
.simulator-results-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 32px;
}

.result-card {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.result-card:hover {
    background: #f1f3f4;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.result-card.highlight {
    background: linear-gradient(135deg, rgba(239, 99, 49, 0.08), rgba(255, 140, 66, 0.05));
    border-color: rgba(239, 99, 49, 0.2);
}

.result-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 12px;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.result-info {
    flex: 1;
}

.result-card .result-label {
    font-size: 0.8rem;
    color: #6b7280;
    display: block;
    margin-bottom: 4px;
}

.result-card .result-value {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1f2937;
    display: block;
}

.result-card.highlight .result-value {
    color: var(--primary);
}

.result-note {
    font-size: 0.7rem;
    color: #9ca3af;
    display: block;
    margin-top: 2px;
}

/* Insights */
.simulator-insights {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.insight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: #4b5563;
}

.insight-icon {
    font-size: 1.2rem;
}

.insight-text strong {
    color: var(--primary);
    font-weight: 700;
}

/* Quote */
.simulator-quote {
    text-align: center;
    margin-bottom: 32px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(239, 99, 49, 0.08), rgba(255, 140, 66, 0.04));
    border-radius: 12px;
    border-left: 3px solid var(--primary);
}

.simulator-quote p {
    font-size: 1.1rem;
    font-style: italic;
    color: #374151;
    margin: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

#simulator-quote-text {
    display: block;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out !important;
}

.simulator-quote strong {
    color: var(--primary);
}

/* Timeline */
.simulator-timeline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.timeline-step {
    display: flex;
    align-items: center;
    gap: 10px;
}

.step-number {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--primary), #ff8c42);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: white;
}

.step-text {
    font-size: 0.85rem;
    color: #4b5563;
}

.timeline-divider {
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), #fcd5c5);
}

/* CTA Button */
.btn-simulator-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 18px 32px;
    background: linear-gradient(90deg, var(--primary), #ff8c42, var(--primary));
    background-size: 200% 100%;
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: gradientMove 3s ease infinite;
    box-shadow:
        0 0 30px rgba(239, 99, 49, 0.4),
        0 10px 30px rgba(0, 0, 0, 0.3);
}

.btn-simulator-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow:
        0 0 50px rgba(239, 99, 49, 0.6),
        0 15px 40px rgba(0, 0, 0, 0.4);
}

.cta-icon {
    font-size: 1.3rem;
}

/* Disclaimer */
.simulator-disclaimer {
    font-size: 0.75rem;
    color: #9ca3af;
    text-align: center;
    margin-top: 20px;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
    .simulator-content {
        padding: 24px;
    }

    .simulator-results-grid {
        grid-template-columns: 1fr;
    }

    .slider-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .value-number {
        font-size: 1.6rem;
    }

    .result-card .result-value {
        font-size: 1.2rem;
    }

    .simulator-timeline {
        flex-direction: column;
        gap: 8px;
        margin-bottom: 20px;
        align-items: flex-start;
        padding-left: 20px;
    }

    .timeline-step {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 12px;
        width: 100%;
    }

    .step-number {
        width: 40px;
        height: 40px;
        min-width: 40px;
        min-height: 40px;
        flex-shrink: 0;
        border-radius: 50%;
        font-size: 0.9rem;
    }

    .step-text {
        font-size: 0.9rem;
        text-align: left;
    }

    .timeline-divider {
        width: 2px;
        height: 16px;
        margin-left: 19px;
        background: linear-gradient(180deg, var(--primary), #fcd5c5);
    }

    .btn-simulator-cta {
        padding: 16px 24px;
        font-size: 1rem;
        flex-direction: row;
        gap: 10px;
    }

    .cta-icon {
        font-size: 1.2rem;
    }

    .cta-text {
        font-size: 1rem;
    }
}

/* ========================================
   Comparison Table
   ======================================== */
.comparison-table {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.comparison-header,
.comparison-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
}

.comparison-header {
    background: var(--bg-light);
    font-weight: 600;
}

.comparison-col {
    padding: 16px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 0.85rem;
}

.comparison-icon {
    font-size: 1.5rem;
    margin-bottom: 4px;
}

.comparison-bad {
    color: #dc2626;
}

.comparison-good {
    color: #16a34a;
    background: rgba(22, 163, 74, 0.1);
}

.comparison-label {
    font-weight: 600;
    color: var(--text-dark);
    text-align: left;
    align-items: flex-start;
}

.comparison-row {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-bad-cell {
    color: var(--text-medium);
    background: rgba(220, 38, 38, 0.05);
}

.comparison-good-cell {
    color: #16a34a;
    font-weight: 600;
    background: rgba(22, 163, 74, 0.05);
}

/* ========================================
   Guarantee Section
   ======================================== */
.guarantee-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 48px 32px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--primary);
}

.guarantee-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    color: white;
}

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

.guarantee-days {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.guarantee-text {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.guarantee-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.guarantee-description {
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 24px;
}

/* ========================================
   Etapas Section
   ======================================== */
.section-divider {
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), #fbbf24, #a855f7);
    margin: 16px auto 20px;
    border-radius: 2px;
}

.timeline-progress {
    max-width: 800px;
    margin: 0 auto 48px;
    position: relative;
}

.timeline-line {
    height: 6px;
    background: #e5e7eb;
    border-radius: 3px;
    position: relative;
    overflow: hidden;
}

.timeline-line-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, #22c55e, #22c55e 25%, #fbbf24 25%, #fbbf24 50%, #f97316 50%, #f97316 75%, #a855f7 75%, #a855f7 100%);
    border-radius: 3px;
}

.timeline-points {
    display: flex;
    justify-content: space-between;
    margin-top: -9px;
}

.timeline-point {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.point-dot {
    width: 18px;
    height: 18px;
    background: #22c55e;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.timeline-point:nth-child(2) .point-dot {
    background: #fbbf24;
}

.timeline-point:nth-child(3) .point-dot {
    background: #f97316;
}

.timeline-point:nth-child(4) .point-dot {
    background: #a855f7;
}

.point-label {
    font-size: 0.75rem;
    color: var(--text-medium);
    font-weight: 500;
}

.etapas-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.etapa-card {
    border-radius: var(--radius-xl);
    padding: 32px 24px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

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

.etapa-orange {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: white;
}

.etapa-yellow {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: white;
}

.etapa-purple {
    background: linear-gradient(135deg, #a855f7 0%, #9333ea 100%);
    color: white;
}

.etapa-number {
    position: absolute;
    top: 16px;
    left: 20px;
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
}

.etapa-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    display: block;
}

.etapa-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.etapa-subtitle {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 16px;
    font-weight: 500;
}

.etapa-description {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.95;
    margin-bottom: 20px;
}

.etapa-badge {
    display: inline-block;
    background: rgba(0, 0, 0, 0.2);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* ========================================
   Filter Section (Quem NÃO é para)
   ======================================== */
.section-filter {
    background: #f8fafc;
    padding: 60px 0;
}

.filter-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.filter-column {
    padding: 28px 24px;
    border-radius: var(--radius-lg);
}

.filter-no {
    background: #fef2f2;
    border: 1px solid #fecaca;
}

.filter-yes {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
}

.filter-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.filter-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.filter-list li {
    font-size: 0.9rem;
    color: var(--text-medium);
    padding-left: 8px;
}

.filter-no .filter-list li {
    color: #991b1b;
}

.filter-yes .filter-list li {
    color: #166534;
}

/* ========================================
   Why Pay Section
   ======================================== */
.section-why-pay {
    background: white;
    padding: 60px 0;
}

.why-pay-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: 700px;
    margin: 0 auto 32px;
}

.why-pay-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    color: var(--text-dark);
}

.why-icon {
    font-size: 1.25rem;
}

.why-pay-quote {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.why-pay-quote p {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-medium);
    padding: 20px;
    background: linear-gradient(135deg, var(--bg-light), var(--bg-lighter));
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary);
}

/* ========================================
   Pricing ROI Tags
   ======================================== */
.pricing-roi-tag {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-medium);
    background: #f3f4f6;
    padding: 4px 10px;
    border-radius: 12px;
    display: block;
    text-align: center;
    margin-bottom: 12px;
}

.pricing-roi-tag.featured {
    background: #fef3c7;
    color: #92400e;
}

.pricing-roi {
    background: var(--bg-light);
    padding: 12px 16px;
    border-radius: var(--radius-md);
    margin: 16px 0 12px;
    font-size: 0.85rem;
    color: var(--text-dark);
    text-align: center;
    font-weight: 500;
}

.pricing-roi span {
    display: inline-block;
}

.pricing-featured .pricing-roi {
    background: var(--bg-light);
    color: var(--text-dark);
    border: none;
}

.pricing-featured .pricing-roi span {
    color: var(--text-dark);
}

.pricing-micro-text {
    display: none;
}

/* ========================================
   Video Commercial Section
   ======================================== */
.section-video-commercial {
    background: linear-gradient(135deg, var(--primary) 0%, #d4541d 50%, #ff8c42 100%);
    padding: 60px 0;
    position: relative;
}

.section-video-commercial::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(255, 200, 100, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.video-commercial-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.video-commercial-content {
    text-align: center;
}

.video-commercial-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: white;
    margin-bottom: 12px;
    line-height: 1.3;
}

.video-commercial-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
}

/* Botão com borda amarela animada */
.btn-video-cta {
    position: relative;
    background: linear-gradient(90deg, var(--primary), #ff8c42, var(--primary-dark), var(--primary));
    background-size: 300% 100%;
    color: white;
    border: none;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    overflow: visible;
    z-index: 1;
    animation: gradientMove 3s ease infinite;
    box-shadow: 0 4px 15px rgba(239, 99, 49, 0.4);
}

.btn-video-cta::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(90deg,
            #ffd700,
            #ffec8b,
            #ffa500,
            #ffd700,
            #ffec8b);
    background-size: 300% 100%;
    border-radius: calc(var(--radius-md) + 3px);
    z-index: -1;
    animation: yellowBorderRotate 2s linear infinite;
}

.btn-video-cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, var(--primary), #ff8c42, var(--primary-dark), var(--primary));
    background-size: 300% 100%;
    border-radius: var(--radius-md);
    z-index: -1;
    animation: gradientMove 3s ease infinite;
}

.btn-video-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(239, 99, 49, 0.5);
}

@keyframes yellowBorderRotate {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 300% 50%;
    }
}

.video-commercial-frame {
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
    padding: 0;
}

.video-commercial-frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ========================================
   Transparency Section
   ======================================== */
.section-transparency {
    background: var(--bg-light);
    padding: 50px 0;
}

.transparency-card {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 32px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.transparency-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.transparency-table {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.transparency-col {
    padding: 20px 24px;
    border-radius: var(--radius-lg);
    min-width: 140px;
}

.transparency-col.cost {
    background: #fef2f2;
}

.transparency-col.profit {
    background: #f0fdf4;
}

.transparency-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-light);
    margin-bottom: 4px;
}

.transparency-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
}

.transparency-col.cost .transparency-value {
    color: #dc2626;
}

.transparency-col.profit .transparency-value {
    color: #16a34a;
}

.transparency-note {
    display: block;
    font-size: 0.65rem;
    color: var(--text-light);
    margin-top: 4px;
}

.transparency-vs {
    font-size: 1.5rem;
    color: var(--text-light);
}

.transparency-quote {
    font-size: 0.95rem;
    color: var(--text-medium);
    font-style: italic;
    margin-bottom: 16px;
}

/* Transparency Card - Mobile */
@media (max-width: 480px) {
    .transparency-card {
        padding: 24px 16px;
        margin: 0 16px;
    }

    .transparency-title {
        font-size: 1rem;
    }

    .transparency-table {
        flex-direction: column;
        gap: 12px;
    }

    .transparency-col {
        width: 100%;
        padding: 16px 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .transparency-vs {
        display: none;
    }

    .transparency-value {
        font-size: 1.8rem;
    }

    .transparency-quote {
        font-size: 0.85rem;
        padding: 0 10px;
    }
}

/* ========================================
   Showcase Section (Carousels)
   ======================================== */
.section-showcase {
    background: linear-gradient(180deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 80px 0;
    overflow: hidden;
}

.showcase-carousel {
    margin-bottom: 60px;
}

.showcase-carousel:last-child {
    margin-bottom: 0;
}

.carousel-label {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.carousel-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 950px;
    margin: 0 auto;
}

.carousel-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: white;
    border: 1px solid #e5e7eb;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.carousel-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.carousel-btn svg {
    width: 24px;
    height: 24px;
}

/* Desktop Carousel Frame */
.desktop-frame-carousel {
    flex: 1;
    background: #1f2937;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.desktop-header {
    background: #374151;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.desktop-dots {
    display: flex;
    gap: 6px;
}

.dot-red,
.dot-yellow,
.dot-green {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot-red {
    background: #ef4444;
}

.dot-yellow {
    background: #fbbf24;
}

.dot-green {
    background: #22c55e;
}

.desktop-url {
    flex: 1;
    background: #1f2937;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    color: #9ca3af;
    display: flex;
    align-items: center;
    gap: 6px;
}

.desktop-screen-carousel {
    position: relative;
    overflow: hidden;
    background: #f9fafb;
}

.carousel-track {
    display: flex;
    transition: transform 0.4s ease;
}

.carousel-slide {
    min-width: 100%;
    display: none;
}

.carousel-slide.active {
    display: block;
}

.carousel-slide img {
    width: 100%;
    height: auto;
    display: block;
}

/* Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: var(--transition);
}

.carousel-dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

.carousel-dot:hover {
    background: var(--primary-light);
}

/* ========================================
   Mobile Gallery - Smartphone Central
   ======================================== */
.showcase-mobile-gallery {
    margin-top: 60px;
}

.mobile-gallery-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 40px 0;
    overflow: hidden;
}

.gallery-side {
    display: none;
    flex-direction: column;
    gap: 16px;
}

.gallery-screen {
    width: 140px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    opacity: 0.7;
    transition: var(--transition);
}

.gallery-screen:hover {
    opacity: 1;
    transform: scale(1.05);
}

.gallery-screen img {
    width: 100%;
    height: auto;
    display: block;
}

.gallery-center {
    position: relative;
    z-index: 10;
}

/* Smartphone Frame Realista */
.smartphone-frame {
    width: 280px;
    background: linear-gradient(145deg, #e8e8e8 0%, #d4d4d4 50%, #c0c0c0 100%);
    border-radius: 45px;
    padding: 12px;
    box-shadow:
        0 50px 100px -20px rgba(0, 0, 0, 0.25),
        0 30px 60px -30px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.6),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    position: relative;
}

.smartphone-speaker {
    width: 60px;
    height: 6px;
    background: #333;
    border-radius: 3px;
    margin: 8px auto 12px;
}

.smartphone-screen {
    background: #000;
    border-radius: 32px;
    overflow: hidden;
    aspect-ratio: 9/19.5;
}

.smartphone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.smartphone-home-btn {
    width: 40px;
    height: 40px;
    background: linear-gradient(145deg, #f0f0f0, #d0d0d0);
    border-radius: 50%;
    margin: 12px auto 8px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Responsive Gallery */
@media (min-width: 768px) {
    .gallery-side {
        display: flex;
    }

    .gallery-screen {
        width: 160px;
    }

    .smartphone-frame {
        width: 300px;
    }
}

@media (min-width: 1024px) {
    .mobile-gallery-container {
        gap: 40px;
    }

    .gallery-screen {
        width: 180px;
    }

    .smartphone-frame {
        width: 320px;
    }
}

/* Mobile Carousel */
.mobile-wrapper {
    max-width: 400px;
}

.mobile-carousel-container {
    flex: 1;
    overflow: hidden;
}

.carousel-track-mobile {
    display: flex;
    transition: transform 0.4s ease;
}

.carousel-slide-mobile {
    min-width: 100%;
    display: none;
    justify-content: center;
}

.carousel-slide-mobile.active {
    display: flex;
}

/* iPhone Frame for Images */
.iphone-frame-img {
    width: 220px;
    background: #1c1c1e;
    border-radius: 36px;
    padding: 8px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.3);
}

.iphone-notch {
    width: 80px;
    height: 24px;
    background: #1c1c1e;
    border-radius: 0 0 16px 16px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.iphone-screen-img {
    background: white;
    border-radius: 28px;
    overflow: hidden;
    margin-top: -12px;
}

.iphone-screen-img img {
    width: 100%;
    height: auto;
    display: block;
}

.iphone-home-bar {
    width: 100px;
    height: 4px;
    background: #3a3a3c;
    border-radius: 2px;
    margin: 8px auto;
}

/* ========================================
   Chat Widget
   ======================================== */
.chat-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.chat-modal-content {
    width: 340px;
    max-width: calc(100vw - 48px);
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    display: none;
    animation: slideInUp 0.4s ease;
}

.chat-widget.open .chat-modal-content {
    display: block;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideOutDown {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(30px);
    }
}

.chat-modal-content.closing {
    animation: slideOutDown 0.3s ease forwards;
}

/* Toggle Button */
.chat-toggle-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    position: relative;
}

.chat-toggle-btn:hover {
    background: #20bd5a;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.chat-toggle-icon {
    position: absolute;
    width: 28px;
    height: 28px;
    transition: all 0.3s ease;
}

.chat-toggle-icon svg {
    width: 100%;
    height: 100%;
    fill: white;
}

/* Estado fechado - mostra ícone de chat */
.chat-toggle-close {
    opacity: 0;
    transform: rotate(-90deg) scale(0.5);
}

.chat-toggle-open {
    opacity: 1;
    transform: rotate(0) scale(1);
}

/* Estado aberto - mostra ícone de fechar */
.chat-widget.open .chat-toggle-close {
    opacity: 1;
    transform: rotate(0) scale(1);
}

.chat-widget.open .chat-toggle-open {
    opacity: 0;
    transform: rotate(90deg) scale(0.5);
}

.chat-header {
    background: #25D366;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    background: white;
    flex-shrink: 0;
}

.chat-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.chat-header-info h4 {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.chat-header-info p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.75rem;
    line-height: 1.3;
}

.chat-body {
    padding: 20px;
    background: #e5ddd5;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4ccc4' fill-opacity='0.4'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.chat-time {
    text-align: center;
    font-size: 0.7rem;
    color: #667781;
    background: rgba(255, 255, 255, 0.7);
    padding: 4px 12px;
    border-radius: 8px;
    margin: 0 auto 16px;
    width: fit-content;
}

.chat-message {
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.message-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    background: white;
    flex-shrink: 0;
}

.message-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.message-bubble {
    background: white;
    padding: 10px 14px;
    border-radius: 0 12px 12px 12px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    max-width: 220px;
}

.message-bubble p {
    font-size: 0.85rem;
    color: var(--text-dark);
    line-height: 1.5;
}

.message-bubble strong {
    color: var(--primary);
}

.chat-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #25D366;
    color: white;
    padding: 14px 20px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.chat-cta:hover {
    background: #20bd5a;
}

.whatsapp-icon-chat {
    width: 20px;
    height: 20px;
    display: flex;
}

.whatsapp-icon-chat svg {
    width: 100%;
    height: 100%;
}

/* ========================================
   ANIMATIONS & KEYFRAMES
   ======================================== */

/* Fade In Up Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Fade In Left Animation */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Fade In Right Animation */
@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Scale In Animation */
@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Neon Border Animation */
@keyframes neonBorderRotate {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Subtle Pulse Animation */
@keyframes subtlePulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 var(--primary-glow);
    }

    50% {
        box-shadow: 0 0 20px 5px var(--primary-glow);
    }
}

/* Skeleton Shimmer Animation */
@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

/* Animation Classes for Scroll */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
    will-change: opacity, transform;
}

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

.animate-on-scroll.fade-in-left {
    transform: translateX(-30px);
}

.animate-on-scroll.fade-in-left.animated {
    transform: translateX(0);
}

.animate-on-scroll.fade-in-right {
    transform: translateX(30px);
}

.animate-on-scroll.fade-in-right.animated {
    transform: translateX(0);
}

.animate-on-scroll.scale-in {
    transform: scale(0.9);
}

.animate-on-scroll.scale-in.animated {
    transform: scale(1);
}

/* Stagger Animation Delays */
.animate-on-scroll:nth-child(1) {
    transition-delay: 0s;
}

.animate-on-scroll:nth-child(2) {
    transition-delay: 0.1s;
}

.animate-on-scroll:nth-child(3) {
    transition-delay: 0.2s;
}

.animate-on-scroll:nth-child(4) {
    transition-delay: 0.3s;
}

.animate-on-scroll:nth-child(5) {
    transition-delay: 0.4s;
}

.animate-on-scroll:nth-child(6) {
    transition-delay: 0.5s;
}

/* ========================================
   NEON BUTTON STYLES
   ======================================== */

.btn-neon {
    background: linear-gradient(90deg, var(--primary), #ff8c42, var(--primary-dark), var(--primary));
    background-size: 300% 100%;
    color: white;
    border: none;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
    animation: gradientMove 3s ease infinite;
    box-shadow: 0 4px 15px rgba(239, 99, 49, 0.35);
}

.btn-neon:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(239, 99, 49, 0.5);
}

.btn-neon:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(239, 99, 49, 0.3), 0 6px 20px rgba(239, 99, 49, 0.5);
}

/* Neon White Button (for dark backgrounds) */
.btn-neon-white {
    position: relative;
    background: white;
    color: var(--primary);
    border: none;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-lg);
    cursor: pointer;
    overflow: hidden;
    z-index: 1;
    transition: var(--transition-fast);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.btn-neon-white::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(90deg,
            #ffffff,
            var(--neon-yellow),
            #ffffff,
            var(--neon-orange),
            #ffffff);
    background-size: 300% 100%;
    border-radius: calc(var(--radius-lg) + 2px);
    z-index: -2;
    animation: neonBorderRotate 3s linear infinite;
}

.btn-neon-white::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: white;
    border-radius: calc(var(--radius-lg) - 2px);
    z-index: -1;
    transition: var(--transition-fast);
}

.btn-neon-white:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 25px rgba(255, 255, 255, 0.4);
    color: var(--primary-dark);
}

.btn-neon-white:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3), 0 6px 25px rgba(255, 255, 255, 0.4);
}

/* ========================================
   SKELETON LOADING
   ======================================== */

.skeleton {
    background: linear-gradient(90deg,
            var(--skeleton-base) 25%,
            var(--skeleton-shine) 50%,
            var(--skeleton-base) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: var(--radius-md);
}

.skeleton-text {
    height: 16px;
    margin-bottom: 8px;
    width: 100%;
}

.skeleton-text.short {
    width: 60%;
}

.skeleton-title {
    height: 28px;
    margin-bottom: 12px;
    width: 80%;
}

.skeleton-card {
    padding: 24px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.skeleton-image {
    height: 200px;
    margin-bottom: 16px;
}

.skeleton-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
}

.skeleton-btn {
    height: 48px;
    width: 150px;
}

/* Hide content while loading */
.is-loading .content-loaded {
    display: none;
}

.is-loading .skeleton-wrapper {
    display: block;
}

.skeleton-wrapper {
    display: none;
}

/* ========================================
   ENHANCED CARD HOVER EFFECTS
   ======================================== */

.profile-card,
.feature-card,
.pricing-card,
.testimonial-card,
.demo-card,
.advantage-card {
    transition: var(--transition-fast);
    will-change: transform, box-shadow;
}

.profile-card:hover,
.feature-card:hover,
.demo-card:hover,
.advantage-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

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

.pricing-featured:hover {
    transform: translateY(-12px) scale(1.02);
}

.testimonial-card:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-xl);
}

/* ========================================
   FOCUS STATES (Accessibility)
   ======================================== */

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px var(--primary-glow);
}

/* ========================================
   PERFORMANCE OPTIMIZATIONS
   ======================================== */

.hero-mockup,
.mockup-container,
.carousel-slide,
.carousel-slide-mobile {
    will-change: transform;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    /* Exceção: manter carrossel de integrações funcionando */
    .integrations-track {
        animation-duration: 30s !important;
        animation-iteration-count: infinite !important;
    }

    .animate-on-scroll {
        opacity: 1;
        transform: none;
    }

    .btn-neon::before,
    .btn-neon-white::before {
        animation: none;
    }
}

/* ========================================
   Responsive Design
   ======================================== */

/* Tablet */
@media (min-width: 640px) {
    .hero-title {
        font-size: 2.75rem;
    }

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

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

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

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

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

    .cta-buttons {
        flex-direction: row;
    }

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

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

    .mockup-sidebar {
        display: block;
    }

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

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

    .guarantee-container {
        flex-direction: row;
        text-align: left;
    }

    .guarantee-content {
        flex: 1;
    }

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

    .screen-sidebar {
        display: block;
    }

    .iphone-frame {
        width: 200px;
    }

    .iphone-screen {
        min-height: 380px;
    }

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

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

    .video-commercial-wrapper {
        grid-template-columns: 1fr 1.2fr;
        text-align: left;
    }

    .video-commercial-content {
        text-align: left;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .nav {
        display: flex;
        align-items: center;
    }

    .header-buttons {
        display: flex;
        align-items: center;
        flex-shrink: 0;
    }

    .menu-toggle {
        display: none;
    }

    .hero {
        padding: 140px 0 100px;
    }

    .hero-container {
        grid-template-columns: 1fr 1fr;
        gap: 64px;
    }

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

    .section {
        padding: 100px 0;
    }

    .section-title {
        font-size: 2.5rem;
    }

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

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

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

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

    .cta-title {
        font-size: 2.5rem;
    }

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

    .mockup-mobile {
        width: 150px;
        right: -30px;
        bottom: -30px;
    }

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

    .metric-number {
        font-size: 2.5rem;
    }

    .video-container {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }

    .video-title {
        font-size: 2rem;
    }

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

/* Large Desktop */
@media (min-width: 1280px) {
    .hero-title {
        font-size: 3.25rem;
    }

    .container {
        padding: 0 40px;
    }
}

/* ========================================
   CARROSSEL DE INTEGRAÇÕES - FINAL DO ARQUIVO
   Garantir que não seja sobrescrito
   ======================================== */
.integrations-track {
    display: inline-flex !important;
    align-items: center !important;
    gap: 60px !important;
    animation: integrations-scroll 30s linear infinite !important;
    will-change: transform;
}

.integration-item {
    flex-shrink: 0 !important;
}

.integration-item img {
    height: 30px !important;
    width: auto !important;
    max-width: none !important;
    min-width: auto !important;
}

@keyframes integrations-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-20%);
    }
}