/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Cores Principais */
    --primary-color: #ff6b1a;
    --primary-dark: #ff8c42;
    --primary-light: #ff8533;
    --secondary-color: #ffffff;
    --accent-color: #ff6b1a;
    
    /* Cores de Status */
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --error-color: #ef4444;
    --info-color: #ff6b1a;
    
    /* Cores Neutras - TEMA DARK CINZA/PRETO */
    --bg-primary: #000000;
    --bg-secondary: #1a1a1a;
    --bg-tertiary: #2d2d2d;
    --text-primary: #e5e5e5;
    --text-secondary: #b3b3b3;
    --text-muted: #808080;
    
    /* Bordas e Sombras - Ajustadas para dark */
    --border-color: #333333;
    --border-radius: 16px;
    --border-radius-sm: 10px;
    --shadow-sm: 0 1px 3px 0 rgb(0 0 0 / 0.8), 0 1px 2px -1px rgb(0 0 0 / 0.8);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.8), 0 2px 4px -2px rgb(0 0 0 / 0.8);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.9), 0 4px 6px -4px rgb(0 0 0 / 0.9);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.95), 0 8px 10px -6px rgb(0 0 0 / 0.95);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 1);
    
    /* Transições */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(20, 20, 20, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(51, 51, 51, 0.8);
    z-index: 1000;
    transition: var(--transition);
    box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.8);
}

.header.scrolled {
    background: rgba(20, 20, 20, 0.95);
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.9);
}

.nav {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: var(--transition);
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}

.nav-logo:hover {
    transform: scale(1.05);
}

.nav-logo:focus,
.nav-logo:active,
.nav-logo:focus-visible {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}

.nav-logo img {
    outline: none !important;
    border: none !important;
}

.logo-image {
    height: 60px;
    width: auto;
    object-fit: contain;
    outline: none !important;
    border: none !important;
    user-select: none;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    outline: none;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link:focus,
.nav-link:active {
    outline: none;
    box-shadow: none;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 14px 0 rgba(240, 93, 0, 0.3);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.nav-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.nav-cta:hover::before {
    left: 100%;
}

.nav-cta:hover {
    box-shadow: 0 6px 20px 0 rgba(240, 93, 0, 0.4);
    transform: translateY(-2px);
}

.nav-cta::after {
    display: none;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding: 10rem 0 6rem;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #2d2d2d 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 107, 26, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 107, 26, 0.06) 0%, transparent 50%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="%23333333" stroke-width="0.5" opacity="0.2"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.6;
    animation: backgroundMove 20s ease-in-out infinite;
}

@keyframes backgroundMove {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-10px, -10px) scale(1.05); }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(255, 107, 26, 0.15), rgba(255, 107, 26, 0.1));
    color: var(--primary-color);
    padding: 0.625rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 107, 26, 0.3);
    box-shadow: 0 2px 8px rgba(255, 107, 26, 0.2);
    animation: fadeInUp 0.6s ease-out;
}

.hero-badge i {
    color: var(--primary-color);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    text-align: center;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color), #ff8c42);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out 0.4s both;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.stat-icon {
    display: block;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    transition: var(--transition);
    filter: drop-shadow(0 2px 4px rgba(240, 93, 0, 0.2));
}

.stat:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 4px 8px rgba(240, 93, 0, 0.3));
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
    transition: var(--transition);
}

.stat:hover .stat-label {
    color: var(--primary-color);
}

/* Screenshots Carousel */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.screenshots-carousel {
    position: relative;
    width: 100%;
    max-width: 600px;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-xl);
    background: var(--bg-primary);
}

.screenshot {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.5s ease-in-out;
}

.screenshot-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-xl);
    background: var(--bg-primary);
}

.screenshot.active {
    opacity: 1;
    transform: translateX(0);
}

.screenshot.prev {
    transform: translateX(-100%);
}

.dashboard-preview {
    background: var(--bg-secondary);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-color);
    overflow: hidden;
    width: 100%;
    height: 100%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.dashboard-header {
    background: var(--bg-tertiary);
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.dashboard-dots {
    display: flex;
    gap: 0.5rem;
}

.dashboard-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--text-muted);
}

.dashboard-dots span:first-child {
    background: var(--error-color);
}

.dashboard-dots span:nth-child(2) {
    background: var(--warning-color);
}

.dashboard-dots span:last-child {
    background: var(--success-color);
}

.dashboard-content {
    padding: 1.5rem;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.dashboard-stat {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: var(--border-radius-sm);
}

.dashboard-stat i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.dashboard-stat .number {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    display: block;
}

.dashboard-stat .label {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.dashboard-chart {
    height: 120px;
    background: var(--bg-secondary);
    border-radius: var(--border-radius-sm);
    padding: 1rem;
    display: flex;
    align-items: end;
    justify-content: center;
}

.chart-bars {
    display: flex;
    align-items: end;
    gap: 0.5rem;
    height: 100%;
}

.bar {
    width: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 2px 2px 0 0;
    animation: grow 2s ease-out;
}

@keyframes grow {
    from { height: 0; }
    to { height: var(--height, 100%); }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    box-shadow: 0 4px 14px 0 rgba(240, 93, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    box-shadow: 0 6px 20px 0 rgba(240, 93, 0, 0.4);
    transform: translateY(-3px);
}

.btn-secondary {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border: 2px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: rgba(255, 107, 26, 0.1);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
}

/* Sections */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    /* animation removida - usa IntersectionObserver para controle mais preciso */
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.section-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Why Choose Section */
.why-choose {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.why-choose-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.why-choose-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
}

.why-choose-card:hover::before {
    transform: scaleX(1);
}

.why-choose-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-8px);
    border-color: rgba(255, 107, 26, 0.3);
}

.why-choose-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 6px 20px rgba(255, 107, 26, 0.4);
    transition: var(--transition);
    position: relative;
}

.why-choose-card:hover .why-choose-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 30px rgba(255, 107, 26, 0.5);
}

.why-choose-icon::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.why-choose-card:hover .why-choose-icon::before {
    opacity: 0.3;
}

.why-choose-icon i {
    font-size: 2rem;
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.why-choose-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    transition: var(--transition);
}

.why-choose-card:hover h3 {
    color: var(--primary-color);
}

.why-choose-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: var(--bg-primary);
}

.features[style*="background: var(--bg-secondary)"] {
    background: var(--bg-secondary) !important;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(240, 93, 0, 0.02), rgba(255, 107, 26, 0.02));
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-8px);
    border-color: rgba(240, 93, 0, 0.2);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(240, 93, 0, 0.3);
    transition: var(--transition);
    position: relative;
}

.feature-icon::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: var(--border-radius);
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(240, 93, 0, 0.4);
}

.feature-card:hover .feature-icon::before {
    opacity: 0.3;
}

.feature-icon i {
    font-size: 1.75rem;
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
}

/* Quando tiver imagem (logo), remover background do ícone */
.feature-icon-logo {
    background: transparent !important;
    box-shadow: none !important;
    padding: 0;
    width: auto;
    height: 64px;
    min-width: 120px;
}

.feature-icon-logo::before {
    display: none;
}

.feature-icon-logo img {
    width: auto;
    height: 100%;
    max-width: 150px;
    padding: 0;
}

/* Fundo branco para logo da Lytex */
.feature-icon-lytex {
    background: #ffffff !important;
    border-radius: var(--border-radius);
    padding: 12px !important;
    box-shadow: var(--shadow-sm);
}

.feature-icon-lytex img {
    padding: 4px;
}

/* Fundo azul para logo do Asaas */
.feature-icon-asaas {
    background: #0066cc !important;
    border-radius: var(--border-radius);
    padding: 12px !important;
    box-shadow: var(--shadow-sm);
}

.feature-icon-asaas img {
    padding: 4px;
}

/* Fundo branco para logo do Chima */
.feature-icon-chima {
    background: #ffffff !important;
    border-radius: var(--border-radius);
    padding: 12px !important;
    box-shadow: var(--shadow-sm);
}

.feature-icon-chima img {
    padding: 4px;
}

/* Fundo branco para logo da Huawei */
.feature-icon-huawei {
    background: #ffffff !important;
    border-radius: var(--border-radius);
    padding: 12px !important;
    box-shadow: var(--shadow-sm);
}

.feature-icon-huawei img {
    padding: 4px;
}

/* Fundo amarelo para logo do MercadoPago */
.feature-icon-mercadopago {
    background: #FFE600 !important;
    border-radius: var(--border-radius);
    padding: 12px !important;
    box-shadow: var(--shadow-sm);
}

.feature-icon-mercadopago img {
    padding: 4px;
}

/* Fundo branco para logo do Sicredi */
.feature-icon-sicredi {
    background: #ffffff !important;
    border-radius: var(--border-radius);
    padding: 12px !important;
    box-shadow: var(--shadow-sm);
}

.feature-icon-sicredi img {
    padding: 4px;
}

/* Fundo branco para logo do Banco Cora */
.feature-icon-cora {
    background: #ffffff !important;
    border-radius: var(--border-radius);
    padding: 12px !important;
    box-shadow: var(--shadow-sm);
}

.feature-icon-cora img {
    padding: 4px;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    transition: var(--transition);
}

.feature-card:hover h3 {
    color: var(--primary-color);
}

.feature-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-primary);
    font-size: 0.875rem;
}

.feature-list i {
    color: var(--success-color);
    font-size: 0.875rem;
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.testimonials-grid .testimonial-card {
    background: var(--bg-primary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--bg-secondary);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 6rem;
    color: rgba(240, 93, 0, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-8px);
    border-color: rgba(240, 93, 0, 0.2);
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.testimonial-stars i {
    color: #fbbf24;
    font-size: 1rem;
}

.testimonial-content p {
    color: var(--text-primary);
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-info h4 {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.author-info span {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* Pricing Section */
.pricing {
    padding: 6rem 0;
    background: var(--bg-primary);
}

.pricing-card {
    background: var(--bg-secondary);
}

.pricing-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    padding-top: 2rem;
}

.pricing-carousel {
    overflow: hidden;
    width: 100%;
    padding-top: 1rem;
    margin-top: -1rem;
}

.pricing-grid {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease-in-out;
}

.pricing-carousel-btn {
    position: relative;
    width: 50px;
    height: 50px;
    min-width: 50px;
    border: none;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 1.2rem;
    box-shadow: var(--shadow-md);
    z-index: 10;
}

.pricing-carousel-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

.pricing-carousel-btn:active {
    transform: scale(0.95);
}

.pricing-carousel-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pricing-carousel-btn:disabled:hover {
    transform: none;
}

.pricing-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    text-align: center;
    min-width: 300px;
    flex: 0 0 calc(33.333% - 1.333rem);
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
}

.pricing-card:hover::before {
    transform: scaleX(1);
}

.pricing-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-8px);
    border-color: rgba(240, 93, 0, 0.3);
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(255, 107, 26, 0.3);
    background: linear-gradient(135deg, var(--bg-secondary), rgba(255, 107, 26, 0.1));
}

.pricing-card.featured::before {
    transform: scaleX(1);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-header {
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.pricing-limit {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.pricing-price .currency {
    font-size: 1.25rem;
    color: var(--text-secondary);
}

.pricing-price .amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.pricing-price .period {
    font-size: 1rem;
    color: var(--text-secondary);
}

.pricing-features {
    margin-bottom: 2rem;
}

.pricing-features ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    text-align: left;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-primary);
}

.pricing-features i {
    color: var(--success-color);
    font-size: 0.875rem;
}

.pricing-note {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-secondary);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

.pricing-note p {
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.pricing-note i {
    color: var(--info-color);
}

/* CTA Section */
.cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: backgroundMove 15s ease-in-out infinite;
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta .btn-primary {
    background: white;
    color: var(--primary-color);
}

.cta .btn-primary:hover {
    background: var(--bg-secondary);
}

.cta .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta .btn-secondary:hover {
    background: white;
    color: var(--primary-color);
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.contact-form {
    background: var(--bg-primary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
}

.contact-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(240, 93, 0, 0.3);
    transition: var(--transition);
}

.contact-item:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(240, 93, 0, 0.4);
}

.contact-icon i {
    font-size: 1.25rem;
    color: white;
}

.contact-details h4 {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-details a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.contact-details a:hover {
    text-decoration: underline;
}

/* Contact Form */
.contact-form {
    background: var(--bg-secondary);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.contact-form:hover {
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    background: var(--bg-primary);
    color: var(--text-primary);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    background: var(--bg-tertiary);
}

/* Já movido acima */

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: #141414;
    color: var(--text-primary);
    padding: 3rem 0 1rem;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-logo .logo-image {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.footer-brand p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-column a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
    text-align: center;
    color: var(--text-secondary);
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

.footer-bottom i {
    color: var(--error-color);
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25d366;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* WhatsApp Chat Modal */
.whatsapp-chat-modal {
    position: fixed;
    bottom: 90px;
    right: 2rem;
    width: 380px;
    height: 600px;
    max-height: calc(100vh - 120px);
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    display: none;
    flex-direction: column;
    overflow: hidden;
    animation: slideUp 0.3s ease-out;
}

.whatsapp-chat-modal.active {
    display: flex;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.whatsapp-chat-header {
    background: #075e54;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
}

.whatsapp-chat-avatar {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.whatsapp-chat-info {
    flex: 1;
}

.whatsapp-chat-info h4 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    color: white;
}

.whatsapp-status {
    font-size: 0.75rem;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.whatsapp-status::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    display: inline-block;
}

.whatsapp-chat-close {
    background: transparent;
    border: none;
    color: white;
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

.whatsapp-chat-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.whatsapp-chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
    background: #ece5dd;
    background-image: 
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><defs><pattern id="whatsapp-pattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23d4d4d4" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23whatsapp-pattern)"/></svg>');
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.whatsapp-message {
    display: flex;
    flex-direction: column;
    max-width: 75%;
    animation: messageSlide 0.3s ease-out;
}

@keyframes messageSlide {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.whatsapp-message-received {
    align-self: flex-start;
}

.whatsapp-message-sent {
    align-self: flex-end;
}

.whatsapp-message-content {
    padding: 0.625rem 0.875rem;
    border-radius: 8px;
    position: relative;
    word-wrap: break-word;
}

.whatsapp-message-received .whatsapp-message-content {
    background: white;
    border-top-left-radius: 2px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.whatsapp-message-sent .whatsapp-message-content {
    background: #dcf8c6;
    border-top-right-radius: 2px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.whatsapp-message-content p {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.4;
    color: #303030;
}

.whatsapp-message-clickable {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.whatsapp-link-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #25d366;
    color: white;
    padding: 0.625rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    width: 100%;
    box-sizing: border-box;
}

.whatsapp-link-btn:hover {
    background: #20ba5a;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(37, 211, 102, 0.3);
}

.whatsapp-link-btn:active {
    transform: translateY(0);
}

.whatsapp-link-btn i {
    font-size: 1rem;
}

.whatsapp-message-time {
    font-size: 0.6875rem;
    color: #667781;
    margin-top: 0.25rem;
    padding: 0 0.5rem;
    align-self: flex-end;
}

.whatsapp-message-sent .whatsapp-message-time {
    align-self: flex-end;
}

.whatsapp-chat-input-container {
    background: #f0f0f0;
    padding: 0.75rem;
    display: flex;
    gap: 0.5rem;
    align-items: center;
    border-top: 1px solid #e0e0e0;
}

.whatsapp-chat-input {
    flex: 1;
    padding: 0.625rem 1rem;
    border: none;
    border-radius: 24px;
    background: white;
    font-size: 0.875rem;
    outline: none;
    transition: var(--transition);
}

.whatsapp-chat-input:focus {
    box-shadow: 0 0 0 2px rgba(37, 211, 102, 0.2);
}

.whatsapp-chat-send {
    width: 40px;
    height: 40px;
    background: #25d366;
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
}

.whatsapp-chat-send:hover {
    background: #20ba5a;
    transform: scale(1.1);
}

.whatsapp-chat-send:active {
    transform: scale(0.95);
}

/* Responsive WhatsApp Chat */
@media (max-width: 480px) {
    .whatsapp-chat-modal {
        width: calc(100vw - 2rem);
        right: 1rem;
        bottom: 80px;
        height: calc(100vh - 100px);
        max-height: calc(100vh - 100px);
    }
    
    .whatsapp-chat-input {
        font-size: 16px !important; /* Previne zoom automático no iOS/Safari */
    }
}

/* Privacy Policy Modal */
.privacy-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10001;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    animation: fadeIn 0.3s ease-out;
}

.privacy-modal.active {
    display: flex;
}

.privacy-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
}

.privacy-modal-content {
    position: relative;
    background: var(--bg-secondary);
    border-radius: var(--border-radius);
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-2xl);
    border: 1px solid var(--border-color);
    animation: slideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
}

.privacy-modal-header {
    padding: 2rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--bg-primary);
    flex-shrink: 0;
}

.privacy-modal-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.privacy-modal-close {
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: var(--text-secondary);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.privacy-modal-close:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}

.privacy-modal-body {
    padding: 2rem;
    overflow-y: auto;
    flex: 1;
    color: var(--text-primary);
}

.privacy-modal-body h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    margin-top: 0;
}

.privacy-modal-body p {
    color: var(--text-primary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.privacy-modal-body ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.privacy-modal-body li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.privacy-modal-body a {
    color: var(--primary-color);
    text-decoration: underline;
    transition: var(--transition);
}

.privacy-modal-body a:hover {
    color: var(--primary-light);
}

/* Scrollbar para o modal */
.privacy-modal-body::-webkit-scrollbar {
    width: 8px;
}

.privacy-modal-body::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

.privacy-modal-body::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 4px;
}

.privacy-modal-body::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}

@media (max-width: 768px) {
    .privacy-modal-content {
        max-width: 100%;
        max-height: 95vh;
    }
    
    .privacy-modal-header {
        padding: 1.5rem;
    }
    
    .privacy-modal-header h2 {
        font-size: 1.5rem;
    }
    
    .privacy-modal-body {
        padding: 1.5rem;
    }
    
    .privacy-modal-body h3 {
        font-size: 1.25rem;
    }
}

/* Exit Intent Modal */
.exit-intent-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    animation: fadeIn 0.3s ease-out;
}

.exit-intent-modal.active {
    display: flex;
}

.exit-intent-content {
    background: var(--bg-secondary);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    max-width: 500px;
    width: 100%;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-2xl);
    border: 1px solid var(--border-color);
    animation: slideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.exit-intent-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: var(--text-secondary);
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.exit-intent-close:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}

.exit-intent-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #25d366, #20ba5a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
    animation: pulse 2s infinite;
}

.exit-intent-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.exit-intent-content p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.exit-intent-subtitle {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin-bottom: 2rem !important;
}

.exit-intent-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 2rem;
}

.exit-intent-whatsapp {
    background: linear-gradient(135deg, #25d366, #20ba5a) !important;
    color: white !important;
    width: 100%;
    padding: 1rem !important;
    font-size: 1.125rem !important;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4) !important;
}

.exit-intent-whatsapp:hover {
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5) !important;
    transform: translateY(-2px);
}

.exit-intent-cancel {
    background: transparent !important;
    color: var(--text-secondary) !important;
    border: 1px solid var(--border-color) !important;
    width: 100%;
    padding: 0.875rem !important;
}

.exit-intent-cancel:hover {
    background: var(--bg-tertiary) !important;
    border-color: var(--border-color) !important;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 480px) {
    .exit-intent-content {
        padding: 2rem 1.5rem;
    }
    
    .exit-intent-content h3 {
        font-size: 1.5rem;
    }
    
    .exit-intent-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
}

/* Responsive Design */
@media (min-width: 769px) {
    .carousel-btn {
        display: none !important;
    }
    
    .carousel-controls {
        justify-content: center;
    }
    
    .carousel-center {
        flex: none;
    }
    
    .screenshot-title {
        font-size: 1.2rem;
        padding: 0.75rem 1.5rem;
    }
    
    .carousel-dots {
        gap: 1rem;
    }
    
    .dot {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 1024px) {
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-secondary);
        border-top: 1px solid var(--border-color);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        z-index: 1000;
        gap: 1.5rem;
    }
    
    .nav-container {
        position: relative;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-link {
        color: var(--text-secondary);
        width: 100%;
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(51, 51, 51, 0.3);
    }
    
    .nav-link:hover {
        color: var(--primary-color);
    }
    
    .nav-cta {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    .nav-toggle {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative !important;
        z-index: 1001 !important;
    }
    
    .nav-toggle .bar {
        background: var(--primary-color) !important;
        width: 25px !important;
        height: 3px !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .nav-toggle.active .bar:nth-child(1) {
        background: var(--primary-color) !important;
    }
    
    .nav-toggle.active .bar:nth-child(2) {
        background: var(--primary-color) !important;
    }
    
    .nav-toggle.active .bar:nth-child(3) {
        background: var(--primary-color) !important;
    }
    
    .hero-container {
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .pricing-card {
        flex: 0 0 calc(50% - 1rem);
        min-width: calc(50% - 1rem);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 6rem 0 3rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1.125rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-description {
        font-size: 1.125rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
    
    .why-choose-card {
        padding: 2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-carousel-wrapper {
        gap: 1rem;
    }
    
    .pricing-carousel-btn {
        width: 45px;
        height: 45px;
        min-width: 45px;
        font-size: 1rem;
    }
    
    .pricing-card {
        flex: 0 0 100%;
        min-width: 100%;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .whatsapp-float {
        bottom: 1rem;
        right: 1rem;
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .carousel-container {
        height: 400px;
    }
    
    .screenshots-carousel {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .dashboard-preview {
        max-width: 100%;
    }
    
    .dashboard-stats {
        grid-template-columns: 1fr;
    }
    
    .table-preview {
        padding: 1rem;
    }
    
    .table-header {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 1rem;
        padding: 0.75rem;
        background: var(--bg-tertiary);
        border-radius: var(--border-radius-sm);
        margin-bottom: 0.5rem;
        font-weight: 600;
        font-size: 0.875rem;
        color: var(--text-primary);
    }
    
    .table-row {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 1rem;
        padding: 0.75rem;
        border-bottom: 1px solid var(--border-color);
        font-size: 0.875rem;
        color: var(--text-primary);
    }
    
    .table-row:last-child {
        border-bottom: none;
    }
    
    .status-active {
        color: var(--success-color);
        font-weight: 500;
    }
    
    .status-suspended {
        color: var(--warning-color);
        font-weight: 500;
    }
    
    .financial-stats {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .financial-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem;
        background: var(--bg-secondary);
        border-radius: var(--border-radius-sm);
    }
    
    .financial-item .label {
        color: var(--text-secondary);
        font-size: 0.875rem;
    }
    
    .financial-item .value {
        color: var(--text-primary);
        font-weight: 600;
        font-size: 1.125rem;
    }
    
    .payment-chart {
        height: 100px;
        background: var(--bg-secondary);
        border-radius: var(--border-radius-sm);
        position: relative;
        overflow: hidden;
    }
    
    .chart-line {
        position: relative;
        width: 100%;
        height: 100%;
    }
    
    .line-point {
        position: absolute;
        width: 8px;
        height: 8px;
        background: var(--primary-color);
        border-radius: 50%;
        transform: translate(-50%, -50%);
    }
    
    .line-point::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 2px;
        height: 20px;
        background: var(--primary-color);
        transform: translate(-50%, -50%);
    }
    
    .tickets-preview {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .ticket-item {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 1rem;
        background: var(--bg-secondary);
        border-radius: var(--border-radius-sm);
    }
    
    .ticket-priority {
        width: 12px;
        height: 12px;
        border-radius: 50%;
    }
    
    .ticket-priority.high {
        background: var(--error-color);
    }
    
    .ticket-priority.medium {
        background: var(--warning-color);
    }
    
    .ticket-priority.low {
        background: var(--info-color);
    }
    
    .ticket-info {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .ticket-title {
        font-weight: 500;
        color: var(--text-primary);
        font-size: 0.875rem;
    }
    
    .ticket-client {
        color: var(--text-secondary);
        font-size: 0.75rem;
    }
    
    .ticket-status {
        font-size: 0.75rem;
        padding: 0.25rem 0.5rem;
        border-radius: 4px;
        background: var(--bg-tertiary);
        color: var(--text-secondary);
    }
    
    .carousel-controls {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        margin-top: 1rem;
    }
    
    .carousel-center {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        flex: 1;
    }
    
    .carousel-btn {
        width: 50px;
        height: 50px;
        border: none !important;
        border-radius: 50% !important;
        background: var(--primary-color) !important;
        color: white !important;
        cursor: pointer;
        display: flex !important;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
        font-size: 1.1rem;
        box-shadow: var(--shadow-md);
        outline: none;
    }
    
    .carousel-btn:hover {
        background: var(--primary-dark) !important;
        transform: scale(1.1);
        box-shadow: var(--shadow-lg);
    }
    
    .carousel-btn:active {
        transform: scale(0.95);
    }
    
    .carousel-dots {
        display: flex;
        gap: 0.75rem;
        justify-content: center;
    }
    
    .dot {
        width: 14px;
        height: 14px;
        border-radius: 50%;
        background: var(--border-color);
        cursor: pointer;
        transition: var(--transition);
    }
    
    .dot.active {
        background: var(--primary-color);
        transform: scale(1.2);
    }
    
    .dot:hover {
        background: var(--primary-light);
        transform: scale(1.1);
    }
    
    .screenshot-title {
        text-align: center;
        font-size: 1.1rem;
        font-weight: 600;
        color: var(--text-primary);
        background: var(--bg-primary);
        padding: 0.5rem 1rem;
        border-radius: var(--border-radius);
        box-shadow: var(--shadow-sm);
        border: 1px solid var(--border-color);
        margin: 0;
    }
    
    .feature-card,
    .testimonial-card,
    .pricing-card {
        padding: 1.5rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .carousel-container {
        height: 300px;
    }
    
    .logo-image {
        height: 50px;
    }
    
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animações removidas - usa IntersectionObserver para controle mais preciso e responsivo */

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-tertiary);
}

::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}

/* Focus States */
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Links do menu não devem ter outline */
.nav-link:focus,
.nav-link:active,
.nav-cta:focus,
.nav-cta:active {
    outline: none !important;
    box-shadow: none !important;
}

a:focus:not(.nav-link):not(.nav-cta) {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Breadcrumbs */
.breadcrumbs {
    background: var(--bg-secondary);
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    margin-top: 80px;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.breadcrumb-item:not(:last-child)::after {
    content: '›';
    margin-left: 0.5rem;
    color: var(--text-muted);
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb-item a:hover {
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: var(--text-primary);
    font-weight: 500;
}

/* FAQ Section */
.faq {
    padding: 6rem 0;
    background: var(--bg-primary);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.faq-question {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    cursor: pointer;
    position: relative;
    padding-right: 2rem;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-item.active .faq-question::after {
    content: '−';
    transform: rotate(180deg);
}

.faq-answer {
    color: var(--text-secondary);
    line-height: 1.7;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    margin: 0;
}

/* Lazy Loading */
.lazy {
    opacity: 0;
    transition: opacity 0.3s;
}

.lazy.loaded {
    opacity: 1;
}

/* Performance Optimizations */
img {
    loading: lazy;
    decoding: async;
}

/* Critical CSS inlined */
.hero {
    contain: layout style paint;
}

.features-grid {
    contain: layout;
}

/* Scroll Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Animate on scroll - Animação mais rápida e responsiva */
.animate-on-scroll {
    opacity: 0;
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
}

.animate-fade-up {
    transform: translateY(20px); /* Reduzido de 30px para 20px para movimento mais sutil */
}

.animate-fade-up.animated {
    transform: translateY(0);
}

.animate-fade-left {
    transform: translateX(-30px);
}

.animate-fade-left.animated {
    transform: translateX(0);
}

.animate-fade-right {
    transform: translateX(30px);
}

.animate-fade-right.animated {
    transform: translateX(0);
}

/* Smooth scroll behavior enhancement */
html {
    scroll-behavior: smooth;
}

/* Selection color */
::selection {
    background: rgba(255, 107, 26, 0.3);
    color: var(--text-primary);
}

::-moz-selection {
    background: rgba(255, 107, 26, 0.3);
    color: var(--text-primary);
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}

/* Cookie Overlay - Bloqueia interação com a página */
.cookie-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 9999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease-out;
}

.cookie-overlay.show {
    display: block;
    opacity: 1;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    padding: 1.5rem;
    display: none;
    transform: translateY(100%);
    transition: transform 0.4s ease-out, opacity 0.3s ease-out;
    opacity: 0;
}

.cookie-banner.show {
    display: block;
    transform: translateY(0);
    opacity: 1;
    animation: slideUpCookie 0.4s ease-out;
}

@keyframes slideUpCookie {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-banner-text {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    flex: 1;
    min-width: 300px;
}

.cookie-banner-text i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-top: 0.25rem;
}

.cookie-banner-text h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.cookie-banner-text p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.9375rem;
    margin: 0;
}

.cookie-banner-text a {
    color: var(--primary-color);
    text-decoration: underline;
    transition: var(--transition);
}

.cookie-banner-text a:hover {
    color: var(--primary-light);
}

.cookie-banner-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-banner-actions .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .cookie-banner-content {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cookie-banner-text {
        min-width: auto;
    }
    
    .cookie-banner-actions {
        width: 100%;
        flex-direction: column;
    }
    
    .cookie-banner-actions .btn {
        width: 100%;
    }
}

/* Print Styles */
@media print {
    .header,
    .whatsapp-float,
    .cta,
    .footer,
    .breadcrumbs {
        display: none !important;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .features,
    .testimonials,
    .pricing,
    .contact,
    .faq {
        padding: 2rem 0;
    }
}