/* ========================================
   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:  98%;

    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-micro-text {
    margin-top: 16px;
    font-size: 0.85rem;
    color: var(--text-light);
    opacity: 0.8;
    letter-spacing: 0.5px;
}

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

.hero-mockup-img {
    width: 130%;
    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-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.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-out;
    border-top: 0 solid transparent;
}

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

.faq-answer-inner {
    padding: 20px 28px 24px;
    background: linear-gradient(to bottom, var(--bg-light), var(--bg-white));
}

.faq-answer p {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 12px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-cta {
    text-align: center;
    margin-top: 40px;
    padding: 32px;
    background: linear-gradient(135deg, #fff7f3, #fff);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(239, 99, 49, 0.2);
}

.faq-cta p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.faq-cta strong {
    color: var(--primary);
}

/* ========================================
   LaraMarket Updates Section (Carrossel de Atualizações)
   ======================================== */
.lara-market-updates {
    background: var(--bg-light);
}

.lmu-carousel {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
}

.lmu-track {
    display: flex;
    width: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.lmu-slide {
    width: 100%;
    min-width: 100%;
    flex-shrink: 0;
    box-sizing: border-box;
    padding: 0;
    display: flex;
    flex-direction: column;
}

/* Imagem retangular */
.lmu-image {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 24px;
}

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

/* Badge "Nova Atualização" */
.update-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 10;
    padding: 6px 12px;
    background: var(--primary);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-sm, 6px);
    box-shadow: 0 4px 12px rgba(239, 99, 49, 0.35);
}

.lmu-slide.is-active .update-badge {
    animation: badgePulse 2.5s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(239, 99, 49, 0.35);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(239, 99, 49, 0.5);
    }
}

/* Duas colunas abaixo da imagem */
.lmu-columns {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-height: clamp(280px, 32vw, 380px);
    align-items: stretch;
}

.lmu-col-left {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-md);
    transition: transform 250ms ease, box-shadow 250ms ease;
    height: 100%;
}

.lmu-col-left:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.lmu-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lmu-benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.4;
}

.lmu-benefits li .check-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.lmu-col-right {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    transition: transform 250ms ease, box-shadow 250ms ease;
    height: 100%;
}

.lmu-col-right:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.lmu-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.update-microcopy {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 600;
    margin: 0 0 16px 0;
    letter-spacing: 0.02em;
}

.lmu-text {
    font-size: 0.9rem;
    color: var(--text-medium);
    line-height: 1.7;
    margin: 0 0 12px 0;
}

.lmu-hint {
    font-size: 0.75rem;
    color: var(--text-light, #6b7280);
    font-style: italic;
    margin: 8px 0 16px 0;
}

.lmu-highlight {
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 600;
    margin: 12px 0 16px 0;
    padding: 10px 14px;
    background: linear-gradient(135deg, rgba(239, 99, 49, 0.08), rgba(239, 99, 49, 0.04));
    border-left: 3px solid var(--primary);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

/* Controles do carrossel (botões abaixo dos cards) */
.lmu-controls {
    display: none;
    gap: 14px;
    justify-content: center;
    align-items: center;
    margin-top: 24px;
    width: 100%;
    flex-shrink: 0;
}

.lmu-controls .btn {
    min-width: 120px;
    font-size: 0.9rem;
    transition: transform 200ms ease, box-shadow 200ms ease;
}

.lmu-controls .btn:hover {
    transform: translateY(-1px);
}

.lmu-controls .btn:active {
    transform: translateY(0);
}

/* Botões de navegação fixos (fora dos slides) */
.lmu-nav-fixed {
    display: flex;
    gap: 14px;
    justify-content: center;
    margin-top: 24px;
    margin-bottom: 16px;
}

.lmu-nav-fixed .btn {
    min-width: 120px;
    font-size: 0.9rem;
    cursor: pointer;
}

.lmu-cta-secondary {
    display: block;
    text-align: center;
    margin-top: 16px;
    font-size: 0.85rem;
}

/* Indicadores de navegação (dots) */
.lara-market-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    padding: 4px 0;
    flex-shrink: 0;
}

.lmu-dot {
    width: 10px;
    min-width: 10px;
    height: 10px;
    min-height: 10px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: width 250ms ease, background-color 250ms ease, transform 200ms ease;
    flex-shrink: 0;
}

.lmu-dot:hover {
    background: #9ca3af;
    transform: scale(1.15);
}

.lmu-dot:focus {
    outline: none;
}

.lmu-dot:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

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

/* Desktop: duas colunas lado a lado */
@media (min-width: 768px) {
    .lmu-slide {
        padding: 0;
    }

    .lmu-columns {
        flex-direction: row;
        gap: 24px;
        min-height: clamp(240px, 22vw, 320px);
        align-items: stretch;
    }

    .lmu-col-left {
        flex: 1;
        min-width: 0;
        height: auto;
        min-height: 100%;
    }

    .lmu-col-right {
        flex: 1;
        min-width: 0;
        height: auto;
        min-height: 100%;
    }

    .lmu-title {
        font-size: 1.4rem;
    }

    .lmu-image {
        margin-bottom: 28px;
    }

    .lmu-benefits li {
        font-size: 0.95rem;
    }
}

@media (min-width: 1024px) {
    .lmu-carousel {
        max-width: 1100px;
    }

    .lmu-slide {
        padding: 0;
    }

    .lmu-col-left {
        padding: 28px;
    }

    .lmu-col-right {
        padding: 28px;
    }

    .lmu-benefits li {
        font-size: 1rem;
        gap: 12px;
    }

    .lmu-title {
        font-size: 1.5rem;
    }

    .lmu-text {
        font-size: 0.95rem;
    }
}

/* Mobile pequeno */
@media (max-width: 480px) {
    .lmu-slide {
        padding: 0;
    }

    .lmu-col-left,
    .lmu-col-right {
        padding: 20px;
    }

    .lmu-title {
        font-size: 1.15rem;
    }

    .lmu-benefits li {
        font-size: 0.85rem;
        gap: 8px;
    }

    .lmu-benefits li .check-icon {
        width: 18px;
        height: 18px;
    }

    .update-badge {
        top: 8px;
        left: 8px;
        padding: 5px 10px;
        font-size: 0.6rem;
    }

    .lmu-nav {
        flex-direction: column;
        gap: 8px;
    }

    .lmu-nav .btn {
        width: 100%;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .lmu-track {
        transition: none;
    }
    
    .lmu-slide.is-active .update-badge {
        animation: none;
    }
}

/* ========================================
   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;
}

/* ========================================
   Checkout Oferta Section (Estilo Referencial)
   ======================================== */
.checkout-oferta {
    width: 100%;
    background: #000;
    padding: 56px 16px 52px;
}

.checkout-wrap {
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
}

.checkout-top-hint {
    display: flex;
    justify-content: center;
    margin-bottom: 6px;
}

.checkout-arrow {
    display: inline-block;
    color: #ffb300;
    font-size: 22px;
    line-height: 1;
    animation: arrowFloat 2.2s ease-in-out infinite;
}

@keyframes arrowFloat {
    0%, 100% { transform: translateY(0); opacity: .8; }
    50% { transform: translateY(7px); opacity: 1; }
}

.checkout-subtitle {
    color: rgba(255, 255, 255, .85);
    font-size: 14px;
    margin: 0 0 18px;
}

/* Timer Digital com Glow Neon */
.checkout-timer-digital {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 8px auto 18px;
    width: 100%;
}

.checkout-timer-digital .timer-glow {
    position: absolute;
    width: min(620px, 94vw);
    height: 160px;
    border-radius: 34px;
    z-index: 0;
    /* Glow "neon" com predominância esquerda (laranja) e direita (vermelho) */
    background:
        radial-gradient(70% 120% at 12% 55%, rgba(255, 140, 0, .95) 0%, rgba(255, 140, 0, 0) 62%),
        radial-gradient(60% 110% at 40% 18%, rgba(255, 220, 0, .55) 0%, rgba(255, 220, 0, 0) 60%),
        radial-gradient(75% 130% at 88% 60%, rgba(255, 45, 0, .65) 0%, rgba(255, 45, 0, 0) 64%),
        radial-gradient(55% 90% at 55% 75%, rgba(255, 165, 0, .25) 0%, rgba(255, 165, 0, 0) 62%);
    filter: blur(28px);
    opacity: .95;
    transform: translateY(2px);
}

.checkout-timer-digital .timer-screen {
    position: relative;
    z-index: 1;
    width: min(520px, 92vw);
    padding: 18px 22px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(22, 22, 22, .98) 0%, rgba(6, 6, 6, .98) 100%);
    border: 1px solid rgba(255, 255, 255, .10);
    box-shadow:
        0 18px 40px rgba(0, 0, 0, .58),
        inset 0 1px 0 rgba(255, 255, 255, .06);
    text-align: center;
}

#tDigital {
    display: block;
    font-weight: 700;
    font-size: 56px;
    letter-spacing: 6px;
    line-height: 1;
    color: rgba(240, 240, 240, .92);
    text-shadow:
        0 1px 0 rgba(255, 255, 255, .06),
        0 0 10px rgba(255, 190, 0, .10);
    font-variant-numeric: tabular-nums;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
}

.checkout-price {
    margin: 10px auto 8px;
    display: flex;
    justify-content: center;
}

.checkout-price img {
    width: min(520px, 92vw);
    height: auto;
    display: block;
    margin: 0 auto;
    transform: scale(0.69); /* -25% do original (0.92 * 0.75) */
    transform-origin: center;
}

.checkout-buy-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin: 10px auto 0 !important;
    animation: buyBounce 1.5s ease-in-out infinite !important;
    will-change: transform;
    cursor: pointer;
}

.checkout-buy-btn img {
    width: min(442px, 92vw);
    height: auto;
    display: block;
}

@keyframes buyBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Botão Seja Licenciado - Header */
.btn-license {
    background: linear-gradient(135deg, #ef6331 0%, #ff8c5a 50%, #ef6331 100%);
    background-size: 200% 200%;
    color: #fff !important;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(239, 99, 49, 0.4);
    animation: licensePulse 2s ease-in-out infinite, licenseGlow 3s ease-in-out infinite;
    transition: all 0.3s ease;
}

.btn-license:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(239, 99, 49, 0.6);
    animation: buyBounce 1s ease-in-out infinite;
}

@keyframes licensePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.03); }
}

@keyframes licenseGlow {
    0%, 100% { 
        background-position: 0% 50%;
        box-shadow: 0 4px 15px rgba(239, 99, 49, 0.4);
    }
    50% { 
        background-position: 100% 50%;
        box-shadow: 0 6px 20px rgba(239, 99, 49, 0.6);
    }
}

/* Botão PDF alinhado à esquerda */
.hero-cta-left {
    display: flex;
    justify-content: flex-start;
    margin: 20px 0;
}

.btn-pdf {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-icon-pdf {
    width: 25px;
    height: 25px;
    object-fit: contain;
    max-width: 25px !important;
    max-height: 25px !important;
}

.checkout-buy-btn:hover {
    transform: scale(1.02);
    filter: drop-shadow(0 14px 28px rgba(0, 255, 120, .20));
    animation: buyBounce 1.5s ease-in-out infinite !important;
}

.checkout-compra-segura {
    display: flex;
    justify-content: center;
    margin: 10px 0 6px;
}

.checkout-compra-segura img {
    width: min(420px, 90vw);
    height: auto;
    display: block;
    opacity: .95;
}

.checkout-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: rgba(255, 255, 255, .78);
    font-size: 12px;
    margin: 2px 0 28px !important;
}

.wa-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.checkout-related {
    margin-top: 40px;
    width: 100%;
    text-align: center;
}

.related-title {
    color: rgba(255, 255, 255, .92);
    font-size: 16px;
    margin: 0 auto 14px;
    display: block;
}

.related-grid {
    width: 100%;
    max-width: 425px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.related-card {
    width: 425px;
    max-width: 100%;
    display: block;
    border-radius: 16px;
    overflow: hidden;
    background: transparent;
    border: none;
    transition: transform .18s ease, box-shadow .18s ease;
    outline: none !important;
}

.related-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 34px rgba(0, 0, 0, .38);
}

.related-card:focus,
.related-card:active {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}

.related-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    border-radius: 16px;
}

/* Checkout Mobile */
@media (max-width: 640px) {
    .checkout-timer-digital .timer-glow {
        height: 132px;
        filter: blur(24px);
        width: min(620px, 96vw);
    }
    .checkout-timer-digital .timer-screen {
        padding: 16px 16px;
    }
    #tDigital {
        font-size: 40px;
        letter-spacing: 4px;
    }
    .related-grid { flex-direction: column; }
    .checkout-oferta { padding: 46px 14px 44px; }
    
}

/* ========================================
   Ajustes Finais CTA - Espaçamentos e Animação
   ======================================== */

/* Estilos duplicados removidos - definidos acima */

/* 4) Remover outline/borda laranja ao clicar */
a, button, [role="button"], img {
    -webkit-tap-highlight-color: transparent;
    outline: none !important;
}

a:focus, a:active,
button:focus, button:active,
.checkout-buy-btn:focus,
.checkout-buy-btn:active {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}

a:focus-visible,
button:focus-visible {
    outline: none !important;
    box-shadow: none !important;
}

/* Garante que imagens dentro de links não ganhem borda */
a img, .checkout-buy-btn img {
    outline: none !important;
    border: 0 !important;
}

/* Remove qualquer borda/outline do botão de compra */
.checkout-buy-btn,
.checkout-buy-btn:focus,
.checkout-buy-btn:active,
.checkout-buy-btn:focus-visible {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}

/* ========================================
   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: 40px;
    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;
        animation-duration: 15s;
    }

    .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;
}

/* Breakdown do Faturamento */
.simulator-breakdown {
    margin-bottom: 24px;
    padding: 20px 24px;
    background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
    border-radius: 12px;
    border: 1px solid #bbf7d0;
}

.breakdown-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #166534;
    margin-bottom: 16px;
}

.breakdown-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    font-size: 0.9rem;
}

.breakdown-label {
    color: #374151;
}

.breakdown-value {
    font-weight: 600;
    color: #166534;
}

/* 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-progress .timeline-line {
    height: 6px;
    background: #e5e7eb;
    border-radius: 3px;
    position: absolute;
    left: 9px;
    right: 9px;
    top: 6px;
    overflow: hidden;
    z-index: 1;
}

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

.timeline-points {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

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

.point-dot {
    width: 18px;
    height: 18px;
    background: #f97316;
    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: #a855f7;
}

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

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

.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-green {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
}

.etapa-blue {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 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;
}

.etapa-header-icon {
    font-size: 2rem;
    margin-bottom: 12px;
    display: block;
    text-align: center;
}

.etapa-header-icon img {
    width: 64px;
    height: 64px;
    object-fit: contain;
}

/* Grid variations */
.etapas-grid-3 {
    margin-bottom: 24px;
}

.etapas-grid-2 {
    max-width: 700px;
    margin: 0 auto 32px;
}

/* Disclaimer */
.etapas-disclaimer {
    text-align: center;
    padding: 24px;
    background: #f8fafc;
    border-radius: var(--radius-lg);
    margin-top: 16px;
}

.etapas-disclaimer p {
    font-size: 0.9rem;
    color: var(--text-medium);
    margin: 0;
}

.etapas-disclaimer .disclaimer-small {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 8px;
}

/* ========================================
   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;
    display: flex;
    align-items: center;
}

.why-icon img {
    width: 20px !important;
    height: 20px !important;
    min-width: 20px;
    min-height: 20px;
    object-fit: contain;
}

.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;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-avatar img {
    width: 110%;
    height: 110%;
    object-fit: cover;
    object-position: center top;
}

.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;
    display: flex;
    align-items: center;
    justify-content: center;
}

.message-avatar img {
    width: 110%;
    height: 110%;
    object-fit: cover;
    object-position: center top;
}

.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-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .etapas-grid-2 {
        grid-template-columns: repeat(2, 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%);
    }
}

/* ========================================
   FEATURES GRID - Sistema Completo
   ======================================== */
.section-features-grid {
    background: var(--bg-white);
}

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

.features-grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

@media (min-width: 640px) {
    .features-grid-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (min-width: 1024px) {
    .features-grid-container {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }
}

.feature-grid-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 16px;
    background: var(--bg-white);
    border: 1px solid #e5e7eb;
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.feature-grid-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(239, 99, 49, 0.2);
}

.feature-grid-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
    transition: transform 0.2s ease;
}

.feature-grid-item:hover .feature-grid-icon {
    transform: scale(1.15);
}

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

.feature-grid-text {
    font-size: 0.875rem;
    color: var(--text-medium);
    line-height: 1.5;
}

.features-grid-cta {
    text-align: center;
    margin-top: 40px;
}

/* ========================================
   DEPOIMENTOS EM VÍDEO
   ======================================== */
.section-testimonials-video {
    background: var(--bg-light);
}

.testimonials-video-carousel {
    overflow: hidden;
    margin-bottom: 32px;
}

.testimonials-video-grid {
    display: flex;
    gap: 24px;
    transition: transform 0.4s ease;
}

.testimonials-video-grid .testimonial-video-card {
    flex: 0 0 calc(100% - 16px);
    min-width: calc(100% - 16px);
}

@media (min-width: 768px) {
    .testimonials-video-grid {
        gap: 24px;
    }
    
    .testimonials-video-grid .testimonial-video-card {
        flex: 0 0 calc(33.333% - 16px);
        min-width: calc(33.333% - 16px);
    }
}

.testimonial-video-card {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.testimonial-video-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.testimonial-video-thumb {
    position: relative;
    aspect-ratio: 16/9;
    background: #1a1a2e;
    overflow: hidden;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
}

.video-play-btn {
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.video-play-btn:hover {
    transform: scale(1.1);
}

.testimonial-video-info {
    padding: 16px 20px;
}

.testimonial-video-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.testimonial-video-role {
    font-size: 0.875rem;
    color: var(--text-medium);
}

.testimonials-video-controls {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.carousel-nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--bg-white);
    border: 1px solid #e5e7eb;
    border-radius: 50%;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
}

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

/* ========================================
   GALERIA DE AVALIAÇÕES DO GOOGLE
   ======================================== */
.google-reviews-section {
    margin-top: 60px;
    padding-top: 40px;
}

.google-reviews-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 32px;
}

.google-reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 768px) {
    .google-reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

.google-reviews-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.google-review-img {
    width: 100%;
    max-width: 690px;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.google-review-img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* ========================================
   CASOS DE USO / PARA QUEM É
   ======================================== */
.section-use-cases {
    background: var(--bg-light);
}

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

@media (min-width: 768px) {
    .use-cases-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
        align-items: stretch;
    }
}

.use-case-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 32px 24px;
    background: var(--bg-white);
    border: 2px solid #e5e7eb;
    border-radius: var(--radius-xl);
    transition: var(--transition);
}

.use-case-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.use-case-featured {
    border-color: var(--primary);
    background: linear-gradient(180deg, var(--bg-white) 0%, rgba(239, 99, 49, 0.03) 100%);
}

@media (min-width: 768px) {
    .use-case-featured {
        transform: scale(1.05);
        z-index: 1;
    }
    
    .use-case-featured:hover {
        transform: scale(1.08);
    }
}

.use-case-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 16px;
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
    background: var(--primary);
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

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

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

.use-case-description {
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.use-case-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.use-case-benefits li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 8px;
    font-size: 0.875rem;
    color: var(--text-medium);
}

.use-case-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00d084;
    font-weight: 700;
}

/* ========================================
   TIMELINE VERTICAL - 4 PASSOS
   ======================================== */
.section-timeline {
    background: var(--bg-light);
}

.timeline-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 0;
}

.timeline-container > .timeline-line-vertical {
    position: absolute;
    left: 50%;
    top: 25px;
    bottom: 25px;
    width: 3px;
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary-light) 100%);
    transform: translateX(-50%);
    z-index: 0;
}

@media (max-width: 767px) {
    .timeline-container > .timeline-line-vertical {
        left: 24px;
        top: 22px;
        bottom: 22px;
    }
}

.timeline-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    margin-bottom: 48px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .timeline-item {
        padding-left: 64px;
    }
    
    .timeline-item.timeline-left,
    .timeline-item.timeline-right {
        flex-direction: row;
    }
}

@media (min-width: 768px) {
    .timeline-item.timeline-left {
        justify-content: flex-end;
        padding-right: calc(50% + 40px);
    }
    
    .timeline-item.timeline-right {
        justify-content: flex-start;
        padding-left: calc(50% + 40px);
    }
    
    .timeline-item.timeline-left .timeline-content {
        text-align: right;
    }
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--bg-white);
    border: 3px solid var(--primary);
    border-radius: 50%;
    z-index: 2;
    transition: var(--transition);
}

@media (max-width: 767px) {
    .timeline-marker {
        left: 24px;
        width: 44px;
        height: 44px;
    }
}

.timeline-item:hover .timeline-marker {
    transform: translateX(-50%) scale(1.1);
    box-shadow: 0 0 20px rgba(239, 99, 49, 0.3);
}

@media (max-width: 767px) {
    .timeline-item:hover .timeline-marker {
        transform: translateX(-50%) scale(1.1);
    }
}

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

.timeline-content {
    padding: 24px;
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    max-width: 350px;
}

@media (max-width: 767px) {
    .timeline-content {
        max-width: 100%;
    }
}

.timeline-item:hover .timeline-content {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.timeline-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.timeline-text {
    font-size: 0.9375rem;
    color: var(--text-medium);
    line-height: 1.6;
}

/* ========================================
   CHECKOUT BUTTON - ANIMAÇÃO E ESPAÇAMENTO (FINAL)
   Regras com máxima especificidade
   ======================================== */
section.checkout-oferta .checkout-buy-btn,
.checkout-oferta .checkout-buy-btn,
a.checkout-buy-btn {
    margin: 10px auto 4px !important;
    animation: checkoutPulse 1.8s ease-in-out infinite !important;
}

@keyframes checkoutPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

section.checkout-oferta .checkout-note,
.checkout-oferta .checkout-note,
p.checkout-note {
    margin: 0 0 28px !important;
}

/* =========================================================
   FIX DEFINITIVO — "Conheça também" CENTRALIZADO
   ========================================================= */

/* garante que nada esteja flutuando aqui */
.checkout-oferta .checkout-wrap .checkout-related,
.checkout-oferta .checkout-wrap .checkout-related *{
  float: none !important;
}

/* pai */
.checkout-oferta .checkout-wrap .checkout-related{
  width: 100% !important;
  margin: 40px auto 0 !important;
  padding: 0 !important;
  box-sizing: border-box !important;
  display: block !important;
  text-align: center !important;
}

/* grid centralizado */
.checkout-oferta .checkout-wrap .checkout-related > .related-grid{
  width: 100% !important;
  max-width: 900px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 0 !important;
  padding-right: 0 !important;

  display: grid !important;
  grid-template-columns: 1fr !important;
  justify-items: center !important;
  justify-content: center !important;
  gap: 18px !important;

  box-sizing: border-box !important;
  transform: none !important;
  left: auto !important;
  position: relative !important;
}

/* cards */
.checkout-oferta .checkout-wrap .checkout-related > .related-grid > a.related-card{
  display: inline-block !important;
  width: fit-content !important;
  max-width: 361px !important;
  margin: 0 !important;
  padding: 0 !important;
  box-sizing: border-box !important;
  transform: none !important;
  left: auto !important;
  position: relative !important;
}

/* imagens */
.checkout-oferta .checkout-wrap .checkout-related > .related-grid > a.related-card > img{
  display: block !important;
  width: auto !important;
  max-width: 361px !important;
  height: auto !important;
}

/* ========================================
   Carrossel de Funcionalidades Extras
   ======================================== */
.features-carousel-wrapper {
    margin-top: 60px;
    padding: 40px 0;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.05) 0%, rgba(255, 102, 0, 0.02) 100%);
    border-radius: 24px;
    position: relative;
}

.carousel-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.features-carousel {
    overflow: visible;
    position: relative;
    padding: 20px 40px;
    margin: 0 -20px;
}

.features-carousel-wrapper {
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 16px;
    transition: transform 0.4s ease;
    cursor: grab;
    user-select: none;
    padding: 10px 0;
}

.carousel-track:active {
    cursor: grabbing;
}

.carousel-item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 22px;
    background: white;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 102, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    white-space: nowrap;
}

.carousel-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 102, 0, 0.15);
    border-color: var(--primary);
}

.carousel-icon {
    width: 24px;
    height: 24px;
}

.carousel-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.carousel-text {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
}

.carousel-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    background: white;
    color: var(--primary);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

/* Mobile */
@media (max-width: 768px) {
    .features-carousel-wrapper {
        margin-top: 40px;
        padding: 30px 0;
        border-radius: 16px;
    }
    
    .carousel-title {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
    
    .carousel-item {
        padding: 12px 18px;
    }
    
    .carousel-icon {
        font-size: 1.2rem;
    }
    
    .carousel-text {
        font-size: 0.85rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* ========================================
   MODAL DE VÍDEO
   ======================================== */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    cursor: pointer;
}

.video-modal-content {
    position: relative;
    z-index: 1;
    max-width: 90%;
    max-height: 90%;
    width: 800px;
}

.video-modal-content video {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.video-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 8px;
    line-height: 1;
    transition: transform 0.2s ease;
}

.video-modal-close:hover {
    transform: scale(1.2);
}

/* Flag icons */
.flag-icon {
    width: 16px;
    height: 12px;
    vertical-align: middle;
    margin-left: 4px;
}

@media (max-width: 768px) {
    .video-modal-content {
        width: 95%;
        max-width: 95%;
    }
    
    .video-modal-close {
        top: -35px;
        font-size: 1.5rem;
    }

    /* Aumentar imagens do checkout em 25% no mobile */
    .checkout-price img {
        width: min(650px, 100vw) !important;
    }

    .checkout-buy-btn img {
        width: min(553px, 100vw) !important;
    }

    .checkout-compra-segura img {
        width: min(525px, 100vw) !important;
    }

    .faq-cta img {
        max-height: 88px !important;
    }
}

/* ========================================
   CHAT LARA IA - MODAL FLUTUANTE
   ======================================== */

/* Botão flutuante (FAB) com wrapper */
.lara-chat-fab-wrapper {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9998;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.lara-chat-fab-label {
    background: white;
    color: var(--text-dark);
    font-size: 0.8rem;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    white-space: nowrap;
    animation: labelBounce 2s ease-in-out infinite;
}

@keyframes labelBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

.lara-chat-fab {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #ff8533);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(239, 99, 49, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: visible;
    position: relative;
}

.lara-chat-fab img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.lara-chat-fab-wrapper:hover .lara-chat-fab {
    transform: scale(1.08);
    box-shadow: 0 6px 28px rgba(239, 99, 49, 0.5);
}

.lara-chat-fab-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--primary);
    opacity: 0;
    animation: fabPulse 2s ease-out infinite;
    z-index: -1;
}

.lara-chat-fab img {
    position: relative;
    z-index: 1;
}

@keyframes fabPulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* Modal do chat */
.lara-ai-chat-modal {
    position: fixed;
    bottom: 120px;
    right: 24px;
    z-index: 9999;
    display: none;
    width: 380px;
    max-width: calc(100vw - 48px);
}

.lara-ai-chat-modal .lara-ai-chat-container {
    width: 100%;
    height: 520px;
    display: flex;
    flex-direction: column;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.lara-ai-chat-modal .lara-ai-chat-header {
    flex-shrink: 0;
}

.lara-ai-chat-modal .lara-ai-chat-messages {
    flex: 1;
    height: 320px;
    max-height: 320px;
    overflow-y: auto;
}

.lara-ai-chat-modal .lara-ai-chat-chips {
    flex-shrink: 0;
}

.lara-ai-chat-modal .lara-ai-chat-input {
    flex-shrink: 0;
}

/* Ocultar label quando modal está aberto */
.lara-ai-chat-modal.is-open ~ .lara-chat-fab-wrapper .lara-chat-fab-label,
.lara-chat-fab-wrapper.chat-open .lara-chat-fab-label {
    display: none;
}

.lara-ai-chat-modal.is-open {
    display: block;
    animation: chatSlideIn 0.3s ease-out;
}

@keyframes chatSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.lara-ai-chat-overlay {
    display: none;
}

/* Botão fechar */
.lara-ai-chat-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    transition: background 0.2s;
    margin-left: 8px;
}

.lara-ai-chat-close:hover {
    background: rgba(255, 255, 255, 0.35);
}

.lara-ai-chat-container {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid var(--gray-200);
}

.lara-ai-chat-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    padding: 16px 20px;
    background: linear-gradient(135deg, var(--primary), #ff8533);
    color: white;
}

.lara-ai-chat-clear {
    margin-left: auto;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    transition: background 0.2s;
}

.lara-ai-chat-clear:hover {
    background: rgba(255, 255, 255, 0.35);
}

.lara-ai-chat-avatar {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.lara-ai-chat-avatar img {
    width: 48px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.lara-ai-chat-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.3;
}

.lara-ai-chat-info h4 {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 600;
}

.lara-ai-chat-online {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    opacity: 0.95;
}

.lara-ai-chat-online::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    flex-shrink: 0;
}

.lara-ai-chat-messages {
    height: 350px;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: #f9fafb;
}

.lara-ai-chat-message {
    display: flex;
    gap: 10px;
    max-width: 95%;
    animation: laraMessageFadeIn 0.3s ease;
}

@keyframes laraMessageFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.lara-ai-chat-message.lara {
    align-self: flex-start;
}

.lara-ai-chat-message.user {
    align-self: flex-end;
    flex-direction: row-reverse;
}

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

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

.lara-ai-chat-message.user .lara-ai-chat-message-avatar {
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.85rem;
}

.lara-ai-chat-message-content {
    padding: 12px 16px;
    border-radius: 16px;
    line-height: 1.5;
    font-size: 0.95rem;
    text-align: left;
}

.lara-ai-chat-message.lara .lara-ai-chat-message-content {
    background: white;
    border: 1px solid var(--gray-200);
    border-bottom-left-radius: 4px;
}

.lara-ai-chat-message.user .lara-ai-chat-message-content {
    background: var(--primary);
    color: white;
    border-bottom-right-radius: 4px;
}

.lara-ai-chat-typing {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: #f9fafb;
    border-top: 1px solid var(--gray-100);
}

.lara-ai-chat-typing span {
    width: 8px;
    height: 8px;
    background: var(--gray-400);
    border-radius: 50%;
    animation: laraTypingDot 1.4s infinite ease-in-out both;
}

.lara-ai-chat-typing span:nth-child(1) { animation-delay: -0.32s; }
.lara-ai-chat-typing span:nth-child(2) { animation-delay: -0.16s; }
.lara-ai-chat-typing span:nth-child(3) { animation-delay: 0s; }

@keyframes laraTypingDot {
    0%, 80%, 100% { transform: scale(0.6); opacity: 0.5; }
    40% { transform: scale(1); opacity: 1; }
}

.lara-ai-chat-typing p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--gray-500);
}

.lara-ai-chat-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 12px 20px;
    background: #f9fafb;
    border-top: 1px solid var(--gray-100);
}

.lara-ai-chat-chips button {
    padding: 8px 14px;
    font-size: 0.85rem;
    background: white;
    border: 1px solid var(--gray-300);
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--gray-700);
}

.lara-ai-chat-chips button:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.lara-ai-chat-input {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    padding: 16px 20px;
    background: white;
    border-top: 1px solid var(--gray-200);
}

.lara-ai-chat-input textarea {
    flex: 1;
    resize: none;
    border: 1px solid var(--gray-300);
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 0.95rem;
    font-family: inherit;
    line-height: 1.4;
    max-height: 120px;
    transition: border-color 0.2s ease;
}

.lara-ai-chat-input textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.lara-ai-chat-input button[type="submit"] {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.lara-ai-chat-input button[type="submit"]:hover {
    background: #e55a2b;
    transform: scale(1.05);
}

.lara-ai-chat-input button[type="submit"]:disabled {
    background: var(--gray-400);
    cursor: not-allowed;
    transform: none;
}

.lara-ai-chat-error {
    padding: 12px 16px;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 8px;
    color: #dc2626;
    font-size: 0.9rem;
    margin: 8px 20px;
}

@media (max-width: 768px) {
    /* Hero mobile - imagem entre título e subtítulo */
    .hero-container {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-areas:
            "title"
            "mockup"
            "subtitle"
            "features"
            "cta"
            "micro";
        gap: 16px;
    }

    .hero-content {
        display: contents;
    }

    .hero-title {
        grid-area: title;
    }

    .hero-mockup {
        grid-area: mockup;
        margin: 10px 0;
    }

    .hero-subtitle {
        grid-area: subtitle;
    }

    .hero-features {
        grid-area: features;
    }

    .hero-cta-left {
        grid-area: cta;
    }

    .hero-micro-text {
        grid-area: micro;
    }
}

@media (max-width: 768px) {
    .faq-cta {
        padding: 16px;
        margin-left: -10px;
        margin-right: -10px;
        width: calc(100% + 20px);
    }

    .faq-cta .faq-cta-btn img {
        max-height: 50px !important;
    }

    .lmu-col-left {
        display: none;
    }

    .lmu-controls {
        display: none;
    }

    /* Chat modal fullscreen no mobile */
    .lara-chat-fab-wrapper {
        bottom: 16px;
        right: 16px;
    }

    .lara-chat-fab-label {
        display: none;
    }

    .lara-chat-fab {
        width: 56px;
        height: 56px;
    }

    .lara-chat-fab img {
        width: 42px;
        height: 42px;
    }

    .lara-ai-chat-modal.is-open {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100vw;
        height: 100vh;
        height: 100dvh;
        max-width: 100vw;
        z-index: 10000;
    }

    .lara-ai-chat-modal.is-open .lara-ai-chat-overlay {
        display: none;
    }

    .lara-ai-chat-modal.is-open .lara-ai-chat-container {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100vw;
        height: 100vh;
        height: 100dvh;
        border-radius: 0;
        display: flex;
        flex-direction: column;
        max-height: none;
    }

    .lara-ai-chat-modal.is-open .lara-ai-chat-header {
        border-radius: 0;
        flex-shrink: 0;
        position: sticky;
        top: 0;
        z-index: 10;
    }

    .lara-ai-chat-modal.is-open .lara-ai-chat-messages {
        flex: 1;
        height: auto;
        max-height: none;
        min-height: 0;
        padding: 12px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .lara-ai-chat-message {
        max-width: 98%;
    }

    .lara-ai-chat-input {
        padding: 10px 12px;
        padding-bottom: max(10px, env(safe-area-inset-bottom));
        flex-shrink: 0;
        position: sticky;
        bottom: 0;
        background: var(--bg-white);
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }

    .lara-ai-chat-input textarea {
        padding: 10px 12px;
        font-size: 16px;
        -webkit-text-size-adjust: 100%;
    }

    .lara-ai-chat-typing {
        flex-shrink: 0;
    }
}