/* ========================================
   CHATMIND IA - CSS PREMIUM
   Design Moderno, Profissional e Responsivo
   ======================================== */

/* ===== RESET E VARIÁVEIS ===== */
:root {
    /* Cores Principais - Identidade Visual */
    --primary-color: #00A8E8;
    --primary-dark: #0077B6;
    --primary-light: #48CAE4;
    --secondary-color: #023E8A;
    --accent-color: #90E0EF;
    
    /* Gradientes */
    --gradient-primary: linear-gradient(135deg, #00A8E8 0%, #023E8A 100%);
    --gradient-hero: linear-gradient(135deg, #0077B6 0%, #023E8A 50%, #001845 100%);
    --gradient-card: linear-gradient(135deg, rgba(0, 168, 232, 0.1) 0%, rgba(2, 62, 138, 0.05) 100%);
    
    /* Cores de Interface */
    --bg-primary: #FFFFFF;
    --bg-secondary: #F8F9FA;
    --bg-dark: #0A1128;
    --text-primary: #1A1A1A;
    --text-secondary: #6C757D;
    --text-light: #FFFFFF;
    
    /* WhatsApp Colors */
    --whatsapp-green: #25D366;
    --whatsapp-dark: #128C7E;
    
    /* Sombras */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 0 30px rgba(0, 168, 232, 0.3);
    
    /* Tipografia */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Poppins', sans-serif;
    
    /* Espaçamentos */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 5rem;
    
    /* Transições */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    /* Container */
    --container-width: 1200px;
}

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

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

body {
    font-family: var(--font-primary);
    color: var(--text-primary);
    background-color: var(--bg-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===== LOADER DE PÁGINA ===== */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s, visibility 0.5s;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-logo img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 20px;
    animation: pulse 1.5s ease-in-out infinite;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

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

/* ===== PARTÍCULAS DE FUNDO ===== */
.particles-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    opacity: 0.3;
}

/* ===== CONTAINER ===== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ===== NAVEGAÇÃO ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: all var(--transition-base);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 0.98);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-sm) var(--spacing-md);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: transform var(--transition-base);
}

.logo-img:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

.nav-link {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all var(--transition-fast);
    padding: var(--spacing-xs) 0;
    position: relative;
}

.nav-link i {
    font-size: 0.9rem;
    opacity: 0.7;
}

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

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

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

.btn-primary-nav {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    background: var(--gradient-primary);
    color: white;
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

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

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-xs);
}

.hamburger {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: all var(--transition-base);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
    background: linear-gradient(135deg, #001845 0%, #0A1128 50%, #001845 100%);
}

.hero-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 168, 232, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(2, 62, 138, 0.15) 0%, transparent 50%);
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.shape {
    position: absolute;
    background: linear-gradient(135deg, rgba(0, 168, 232, 0.1), rgba(144, 224, 239, 0.05));
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 50%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xxl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    color: white;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-full);
    margin-bottom: var(--spacing-md);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge-icon {
    color: var(--accent-color);
}

.badge-text {
    font-size: 0.85rem;
    font-weight: 500;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
}

.gradient-text-hero {
    background: linear-gradient(135deg, #00A8E8, #90E0EF);
    background-clip: text;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: var(--spacing-lg);
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-xl);
}

.feature-pill {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-pill i {
    color: var(--accent-color);
}

.hero-cta {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.btn-hero-primary,
.btn-hero-secondary {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: var(--radius-md);
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-lg);
}

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

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    transition: all var(--transition-base);
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.stat-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 168, 232, 0.2);
    border-radius: var(--radius-md);
    font-size: 1.5rem;
    color: var(--accent-color);
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* ===== MOCKUP DE CELULAR ===== */
.hero-mockup {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-container {
    position: relative;
}

.phone-frame {
    width: 320px;
    height: 650px;
    background: #1A1A1A;
    border-radius: 40px;
    padding: 12px;
    box-shadow: 
        0 50px 100px rgba(0, 0, 0, 0.5),
        0 0 0 8px #2A2A2A,
        0 0 0 12px #1A1A1A;
    position: relative;
    z-index: 2;
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 30px;
    background: #1A1A1A;
    border-radius: 0 0 20px 20px;
    z-index: 3;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #ECE5DD;
    border-radius: 32px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.phone-buttons {
    position: absolute;
    right: -3px;
    top: 100px;
}

.power-button,
.volume-button {
    width: 3px;
    height: 50px;
    background: #2A2A2A;
    margin-bottom: 15px;
    border-radius: 0 2px 2px 0;
}

.phone-shadow {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 90%;
    background: radial-gradient(ellipse at center, rgba(0, 168, 232, 0.3) 0%, transparent 70%);
    z-index: 1;
    filter: blur(40px);
}

/* ===== CHAT DO WHATSAPP ===== */
.chat-header {
    background: #075E54;
    color: white;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.chat-header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.back-arrow {
    font-size: 1.2rem;
    cursor: pointer;
}

.chat-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.chat-name {
    font-weight: 600;
    font-size: 0.95rem;
}

.chat-status {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    opacity: 0.9;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #25D366;
    border-radius: 50%;
    animation: pulse-status 2s ease-in-out infinite;
}

@keyframes pulse-status {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.chat-header-actions {
    display: flex;
    gap: 20px;
    font-size: 1.1rem;
}

.chat-messages {
    flex: 1;
    padding: 16px;
    overflow-y: auto;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="260" height="260"><path fill="%23D3D3D3" fill-opacity="0.05" d="M0 0h260v260H0z"/></svg>');
}

.chat-date {
    text-align: center;
    font-size: 0.75rem;
    color: #667781;
    background: rgba(255, 255, 255, 0.9);
    padding: 5px 12px;
    border-radius: 8px;
    display: inline-block;
    margin: 10px auto;
    width: fit-content;
    display: block;
}

.message-received,
.message-sent {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
    animation: slideIn 0.3s ease;
}

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

.message-received {
    justify-content: flex-start;
}

.message-sent {
    justify-content: flex-end;
}

.message-avatar {
    width: 32px;
    height: 32px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.message-bubble {
    max-width: 70%;
    padding: 8px 12px;
    border-radius: 8px;
    position: relative;
}

.message-received .message-bubble {
    background: white;
    border-radius: 0 8px 8px 8px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.message-sent .message-bubble {
    background: #D9FDD3;
    border-radius: 8px 0 8px 8px;
}

.message-bubble p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
    color: #1A1A1A;
}

.message-bubble p + p {
    margin-top: 6px;
}

.message-time {
    font-size: 0.65rem;
    color: #667781;
    display: block;
    text-align: right;
    margin-top: 4px;
}

.quick-replies {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 8px;
}

.quick-reply {
    background: white;
    border: 1px solid #E9EDEF;
    padding: 8px 12px;
    border-radius: 16px;
    font-size: 0.85rem;
    color: var(--primary-color);
    cursor: pointer;
    transition: all var(--transition-fast);
    text-align: left;
}

.quick-reply:hover {
    background: #F0F2F5;
}

.typing-indicator {
    display: flex;
    gap: 4px;
    padding: 12px;
    background: white;
    border-radius: 0 8px 8px 8px;
    width: fit-content;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.typing-dot {
    width: 8px;
    height: 8px;
    background: #90949C;
    border-radius: 50%;
    animation: typing 1.4s ease-in-out infinite;
}

.typing-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {
    0%, 60%, 100% { transform: translateY(0); }
    30% { transform: translateY(-10px); }
}

.chat-input-area {
    background: #F0F2F5;
    padding: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.input-icon,
.send-btn,
.emoji-btn {
    background: none;
    border: none;
    color: #54656F;
    font-size: 1.3rem;
    cursor: pointer;
    padding: 8px;
    transition: color var(--transition-fast);
}

.input-icon:hover,
.emoji-btn:hover {
    color: var(--primary-color);
}

.send-btn {
    color: var(--primary-color);
}

.input-wrapper {
    flex: 1;
    background: white;
    border-radius: 20px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.input-wrapper input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 0.95rem;
    background: transparent;
}

/* ===== TRUST SECTION ===== */
.trust-section {
    padding: var(--spacing-xl) 0;
    background: white;
    border-bottom: 1px solid #E9ECEF;
}

.trust-content {
    text-align: center;
}

.trust-title {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    font-weight: 500;
}

.trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-xl);
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-sm) var(--spacing-md);
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 500;
}

.trust-badge i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* ===== SECTIONS GERAIS ===== */
.section {
    padding: var(--spacing-xxl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xxl);
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    background: rgba(0, 168, 232, 0.1);
    color: var(--primary-color);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===== SOLUÇÕES ===== */
.solutions-section {
    background: var(--bg-secondary);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
}

.solution-card-modern {
    position: relative;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
}

.solution-card-modern:hover {
    transform: translateY(-10px);
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.solution-card-modern:hover .card-glow {
    opacity: 1;
}

.card-content {
    padding: var(--spacing-xl);
}

.solution-icon-modern {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: var(--spacing-md);
    box-shadow: var(--shadow-md);
}

.solution-card-modern h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.solution-card-modern > .card-content > p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

.solution-list {
    list-style: none;
    margin-bottom: var(--spacing-md);
}

.solution-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.solution-list i {
    color: var(--primary-color);
    margin-top: 2px;
}

.card-stats {
    display: flex;
    gap: var(--spacing-md);
    padding: var(--spacing-md) 0;
    border-top: 1px solid #E9ECEF;
    margin-bottom: var(--spacing-md);
}

.mini-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mini-stat-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.mini-stat-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.card-cta {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: gap var(--transition-fast);
}

.card-cta:hover {
    gap: var(--spacing-sm);
}

/* ===== BENEFÍCIOS ===== */
.benefits-section {
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.benefit-card {
    text-align: center;
    padding: var(--spacing-xl);
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

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

.benefit-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto var(--spacing-md);
    box-shadow: var(--shadow-md);
}

.benefit-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.benefit-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== DEMONSTRAÇÃO ===== */
.demo-section {
    background: linear-gradient(135deg, #001845 0%, #0A1128 100%);
    color: white;
}

.demo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xxl);
    align-items: center;
}

.demo-text h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
}

.demo-text p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

.demo-features {
    list-style: none;
    margin-bottom: var(--spacing-lg);
}

.demo-features li {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
    font-size: 1.05rem;
}

.demo-features i {
    color: var(--accent-color);
}

.btn-demo {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    background: white;
    color: var(--primary-color);
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-lg);
}

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

.video-placeholder {
    aspect-ratio: 16/9;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all var(--transition-base);
}

.video-placeholder:hover {
    background: rgba(255, 255, 255, 0.15);
}

.video-placeholder i {
    font-size: 4rem;
    color: white;
}

.video-placeholder p {
    font-size: 1.2rem;
    font-weight: 600;
}

/* ===== CASES ===== */
.cases-section {
    background: var(--bg-secondary);
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-lg);
}

.case-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

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

.case-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid #E9ECEF;
    gap: var(--spacing-sm);
}

.case-company {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.company-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
}

.company-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.company-info span {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.case-result {
    text-align: left;
}

.result-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.result-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.case-description {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
    font-style: italic;
}

.case-metrics {
    display: flex;
    justify-content: space-between;
    gap: var(--spacing-sm);
}

.metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-align: center;
}

.metric i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* ===== PRICING ===== */
.pricing-section {
    background: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.pricing-card {
    background: white;
    border: 2px solid #E9ECEF;
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    transition: all var(--transition-base);
    position: relative;
}

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

.pricing-card.featured {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.pricing-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
}

.pricing-header p {
    color: var(--text-secondary);
}

.pricing-price {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.currency {
    font-size: 1.5rem;
    vertical-align: top;
}

.amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.period {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.pricing-features {
    list-style: none;
    margin-bottom: var(--spacing-lg);
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid #F8F9FA;
}

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

.pricing-features i {
    color: var(--primary-color);
}

.pricing-features li.disabled {
    opacity: 0.4;
}

.pricing-features li.disabled i {
    color: var(--text-secondary);
}

.btn-pricing {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--gradient-primary);
    color: white;
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-base);
}

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

.pricing-note {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    background: rgba(0, 168, 232, 0.1);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
}

.pricing-note i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

/* ===== FAQ ===== */
.faq-section {
    background: white;
}

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

.faq-item {
    background: white;
    border: 1px solid #E9ECEF;
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-md);
    overflow: hidden;
    transition: all var(--transition-base);
}

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

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md) var(--spacing-lg);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    transition: all var(--transition-base);
}

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

.faq-question i {
    color: var(--primary-color);
    transition: transform var(--transition-base);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 var(--spacing-lg) var(--spacing-lg);
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ===== CTA FINAL ===== */
.cta-final-section {
    background: linear-gradient(135deg, #001845 0%, #0A1128 100%);
    color: white;
    text-align: center;
}

.cta-final-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-full);
    margin-bottom: var(--spacing-md);
}

.cta-final-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
}

.cta-final-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: var(--spacing-xl);
}

.cta-buttons-final {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.btn-cta-whatsapp,
.btn-cta-demo {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-lg) var(--spacing-xl);
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-lg);
}

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

.btn-cta-whatsapp:hover {
    background: var(--whatsapp-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

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

.btn-cta-demo:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn-cta-whatsapp i,
.btn-cta-demo i {
    font-size: 2rem;
}

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.btn-label {
    font-size: 0.8rem;
    opacity: 0.9;
}

.btn-title {
    font-size: 1.2rem;
    font-weight: 700;
}

.cta-trust-final {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.trust-item-final {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: 0.95rem;
}

.trust-item-final i {
    color: var(--accent-color);
}

/* ===== FOOTER ===== */
.footer-premium {
    background: var(--bg-dark);
    color: white;
    padding: var(--spacing-xxl) 0 var(--spacing-md);
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: var(--spacing-xxl);
    margin-bottom: var(--spacing-xl);
}

.footer-brand-section {
    max-width: 400px;
}

.footer-logo img {
    height: 60px;
    margin-bottom: var(--spacing-md);
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
}

.footer-social {
    display: flex;
    gap: var(--spacing-sm);
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all var(--transition-base);
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-links-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
}

.footer-column h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
}

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

.footer-column li {
    margin-bottom: var(--spacing-xs);
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all var(--transition-fast);
    font-size: 0.95rem;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-left p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-badges {
    display: flex;
    gap: var(--spacing-md);
}

.badge-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.badge-item i {
    color: var(--accent-color);
}

/* ===== BOTÕES FLUTUANTES ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--whatsapp-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: var(--shadow-xl);
    z-index: 999;
    transition: all var(--transition-base);
    animation: pulse-float 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: var(--whatsapp-dark);
}

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

.scroll-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.3rem;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    z-index: 998;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 1024px) {
    :root {
        --spacing-xxl: 4rem;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .hero-mockup {
        order: -1;
    }
    
    .phone-frame {
        width: 280px;
        height: 570px;
    }
    
    .demo-content {
        grid-template-columns: 1fr;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
    }
    
    .footer-links-section {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-xl: 2rem;
        --spacing-xxl: 3rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        align-items: stretch;
        padding: var(--spacing-md);
        box-shadow: var(--shadow-lg);
        transform: translateX(-100%);
        transition: transform var(--transition-base);
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-link {
        padding: var(--spacing-sm) 0;
    }
    
    .btn-primary-nav {
        justify-content: center;
        margin-top: var(--spacing-sm);
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .phone-frame {
        width: 260px;
        height: 530px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .solutions-grid,
    .benefits-grid,
    .cases-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons-final {
        flex-direction: column;
    }
    
    .footer-links-section {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--spacing-md);
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .phone-frame {
        width: 240px;
        height: 490px;
        padding: 10px;
    }
    
    .chat-messages {
        padding: 12px;
    }
    
    .message-bubble {
        max-width: 80%;
        font-size: 0.85rem;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.7rem;
        bottom: 20px;
        right: 20px;
    }
    
    .scroll-to-top {
        bottom: 80px;
        right: 20px;
    }
}

/* ===== ACESSIBILIDADE ===== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===== UTILITÁRIOS ===== */
.text-center { text-align: center; }
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== PRINT ===== */
@media print {
    .navbar,
    .whatsapp-float,
    .scroll-to-top,
    .cta-final-section {
        display: none;
    }
}

/* ===== MELHORIAS V2 - RESPONSIVIDADE MOBILE ===== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem !important;
        line-height: 1.2;
        word-wrap: break-word;
    }
    
    .hero-description {
        font-size: 1rem !important;
        line-height: 1.6;
    }
    
    .section-title {
        font-size: 1.8rem !important;
        line-height: 1.3;
    }
    
    .section-subtitle {
        font-size: 1rem !important;
    }
    
    .solution-card-modern h3,
    .benefit-card h3 {
        font-size: 1.2rem !important;
    }
    
    .solution-card-modern p,
    .benefit-card p {
        font-size: 0.9rem !important;
    }
}

/* ===== WHATSAPP FLOAT MELHORADO (SEM BARRA) ===== */
.whatsapp-float-improved {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s ease-in-out infinite;
}

.whatsapp-float-improved:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

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

/* ===== ÍCONES PADRONIZADOS CASES ===== */
.company-icon-fixed {
    width: 50px !important;
    height: 50px !important;
    min-width: 50px !important;
    min-height: 50px !important;
    font-size: 1.3rem !important;
}

/* ===== GRID 6 SOLUÇÕES ===== */
.solutions-grid-six {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

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

/* ===== BENEFITS ANIMADOS ===== */
.animated-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.animated-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 168, 232, 0.1), transparent);
    transition: left 0.5s;
}

.animated-card:hover::before {
    left: 100%;
}

.animated-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 168, 232, 0.2);
}

.animated-card:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(0, 168, 232, 0.4);
}

.benefit-icon {
    transition: all 0.3s ease;
}

/* ===== BOTÕES CTA IGUAIS ===== */
.cta-buttons-final-equal {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
    flex-wrap: wrap;
}

.btn-cta-equal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
    min-width: 250px;
    height: 60px;
}

.btn-cta-equal.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
}

.btn-cta-equal.demo {
    background: white;
    color: var(--primary-color);
}

.btn-cta-equal:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

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

/* ===== VIDEO DEMO ===== */
.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

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

/* ===== CASES MELHORADO ===== */
.cases-grid-improved {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-lg);
}

/* ===== CHAT IA WIDGET ===== */
.ai-chat-widget {
    position: fixed;
    bottom: 110px;
    right: 30px;
    z-index: 998;
}

.ai-chat-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-primary);
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    box-shadow: var(--shadow-xl);
    transition: all 0.3s ease;
    position: relative;
    animation: pulse-ai 2s ease-in-out infinite;
}

.ai-chat-button:hover {
    transform: scale(1.1);
}

.chat-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #FF4757;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
}

@keyframes pulse-ai {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 168, 232, 0.7); }
    50% { box-shadow: 0 0 0 10px rgba(0, 168, 232, 0); }
}

.ai-chat-window {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 350px;
    max-height: 500px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    display: none;
    flex-direction: column;
    overflow: hidden;
}

.ai-chat-window.active {
    display: flex;
}

.ai-chat-header {
    background: var(--gradient-primary);
    color: white;
    padding: var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header-info {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.chat-avatar-widget {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid white;
}

.chat-header-info h4 {
    margin: 0;
    font-size: 1rem;
}

.chat-status-widget {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    opacity: 0.9;
}

.status-dot-widget {
    width: 8px;
    height: 8px;
    background: #4CAF50;
    border-radius: 50%;
    animation: pulse-status 2s ease-in-out infinite;
}

.close-chat {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 5px;
    transition: transform 0.2s;
}

.close-chat:hover {
    transform: rotate(90deg);
}

.ai-chat-messages {
    flex: 1;
    padding: var(--spacing-md);
    overflow-y: auto;
    background: #F5F7FA;
    max-height: 350px;
}

.ai-message {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    animation: slideInMessage 0.3s ease;
}

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

.ai-avatar {
    width: 35px;
    height: 35px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.ai-bubble {
    background: white;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: 0 var(--radius-md) var(--radius-md) var(--radius-md);
    box-shadow: var(--shadow-sm);
    max-width: 250px;
}

.ai-bubble p {
    margin: 0 0 var(--spacing-sm) 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.quick-options {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
    margin-top: var(--spacing-sm);
}

.quick-option {
    background: var(--bg-secondary);
    border: 1px solid #E0E0E0;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
}

.quick-option:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.user-message {
    display: flex;
    justify-content: flex-end;
    margin-bottom: var(--spacing-md);
}

.user-bubble {
    background: var(--gradient-primary);
    color: white;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-md) 0 var(--radius-md) var(--radius-md);
    max-width: 250px;
    font-size: 0.9rem;
}

.ai-chat-input {
    display: flex;
    padding: var(--spacing-md);
    background: white;
    border-top: 1px solid #E0E0E0;
    gap: var(--spacing-sm);
}

.ai-chat-input input {
    flex: 1;
    border: 1px solid #E0E0E0;
    border-radius: var(--radius-md);
    padding: var(--spacing-sm) var(--spacing-md);
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s;
}

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

.ai-chat-input button {
    background: var(--gradient-primary);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.2s ease;
}

.ai-chat-input button:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

/* ===== RESPONSIVO CHAT IA ===== */
@media (max-width: 480px) {
    .ai-chat-widget {
        bottom: 90px;
        right: 20px;
    }
    
    .ai-chat-window {
        width: calc(100vw - 40px);
        right: -10px;
    }
    
    .ai-chat-button {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .whatsapp-float-improved {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.7rem;
    }
}

/* ===== CHAT MOCKUP CORES CHATMIND ===== */
.chat-header {
    background: linear-gradient(135deg, #00A8E8 0%, #023E8A 100%);
}

.status-dot {
    background: #90E0EF;
}

.message-avatar {
    background: linear-gradient(135deg, #00A8E8, #023E8A);
}

.quick-reply:hover {
    background: rgba(0, 168, 232, 0.1);
    border-color: var(--primary-color);
}

/* ===== SCROLL MAIS RÁPIDO NO MOCKUP ===== */
@keyframes faster-scroll {
    0% { transform: translateY(0); }
    100% { transform: translateY(-20px); }
}
/* ===== CORREÇÕES V3 ===== */

/* Velocidade normal do chat mockup (volta ao original) */
@keyframes scroll-chat-normal {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}

/* Case E-commerce - Fonte menor para não quebrar em 3 linhas */
.case-card:first-child .company-info h4 {
    font-size: 0.95rem !important;
    line-height: 1.2;
}

/* Scroll to top - Lado esquerdo */
.scroll-to-top {
    right: auto !important;
    left: 30px !important;
}

/* Soluções - Efeito mais suave (só pulse) */
.solution-card-modern:hover {
    transform: translateY(-5px) scale(1.01) !important;
    transition: all 0.3s ease !important;
}

.solution-card-modern:hover .solution-icon-modern {
    transform: scale(1.05) !important;
}

/* WhatsApp float - Posição ajustada */
.whatsapp-float-improved {
    bottom: 30px;
    right: 30px;
}

/* Chat IA Widget - Posição ajustada para mobile */
@media (max-width: 768px) {
    .ai-chat-widget {
        bottom: 30px !important;
        right: 20px !important;
    }
    
    .ai-chat-window {
        bottom: 80px !important;
        max-height: 400px !important;
    }
    
    .ai-chat-button {
        width: 55px !important;
        height: 55px !important;
    }
    
    .whatsapp-float-improved {
        bottom: 100px !important;
        right: 20px !important;
        width: 55px !important;
        height: 55px !important;
    }
    
    .scroll-to-top {
        left: 20px !important;
        bottom: 30px !important;
        width: 45px !important;
        height: 45px !important;
    }
}

/* Mockup - Chat header ajustado */
.chat-name {
    font-size: 0.85rem !important;
    font-weight: 600;
}

.chat-status {
    font-size: 0.7rem !important;
}

/* Hero Section - Responsividade Mobile Melhorada */
@media (max-width: 768px) {
    .hero {
        padding: 100px 0 60px !important;
        min-height: auto !important;
    }
    
    .hero-grid {
        grid-template-columns: 1fr !important;
        gap: var(--spacing-lg) !important;
    }
    
    .hero-content {
        padding: 0 var(--spacing-sm) !important;
    }
    
    .hero-title {
        font-size: 1.75rem !important;
        line-height: 1.3 !important;
        margin-bottom: var(--spacing-md) !important;
    }
    
    .hero-description {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
        margin-bottom: var(--spacing-md) !important;
    }
    
    .hero-features {
        flex-wrap: wrap !important;
        gap: var(--spacing-xs) !important;
    }
    
    .feature-pill {
        font-size: 0.8rem !important;
        padding: 6px 12px !important;
    }
    
    .hero-cta {
        flex-direction: column !important;
        gap: var(--spacing-sm) !important;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100% !important;
        justify-content: center !important;
        padding: var(--spacing-md) !important;
        font-size: 1rem !important;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: var(--spacing-sm) !important;
    }
    
    .stat-card {
        padding: var(--spacing-sm) !important;
    }
    
    .stat-icon {
        width: 40px !important;
        height: 40px !important;
        font-size: 1.2rem !important;
    }
    
    .stat-number {
        font-size: 1.4rem !important;
    }
    
    .stat-label {
        font-size: 0.75rem !important;
    }
    
    /* Mockup Mobile */
    .phone-frame {
        width: 240px !important;
        height: 490px !important;
    }
    
    .chat-header {
        padding: 8px 12px !important;
    }
    
    .chat-avatar {
        width: 35px !important;
        height: 35px !important;
    }
    
    .chat-name {
        font-size: 0.8rem !important;
    }
    
    .chat-status {
        font-size: 0.65rem !important;
    }
}

/* Trust Section Mobile */
@media (max-width: 768px) {
    .trust-badges {
        flex-direction: column !important;
        gap: var(--spacing-sm) !important;
    }
    
    .trust-badge {
        width: 100% !important;
        justify-content: center !important;
    }
}


@media (max-width: 480px) {
    .case-company h4 {
        font-size: 0.9rem;
        white-space: normal;
    }
}

/* ===== CORREÇÕES FINAIS ===== */

/* Chat Header - Ajuste para não cortar "ChatMind Assistente" */
.chat-header {
    padding: 10px 12px !important;
}

.chat-info {
    flex: 1;
    min-width: 0;
}

.chat-name {
    font-size: 0.8rem !important;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.chat-status {
    font-size: 0.7rem !important;
}

/* Mobile - Header ainda menor */
@media (max-width: 480px) {
    .chat-header {
        padding: 8px 10px !important;
    }
    
    .chat-avatar {
        width: 32px !important;
        height: 32px !important;
    }
    
    .chat-name {
        font-size: 0.75rem !important;
    }
    
    .chat-status {
        font-size: 0.65rem !important;
    }
    
    .back-arrow {
        font-size: 1rem !important;
    }
    
    .chat-header-actions i {
        font-size: 1rem !important;
    }
}

/* Case E-commerce - Prevenir overflow */
.case-card {
    overflow: hidden;
}

.case-company {
    flex: 1;
    min-width: 0;
}

.case-company h4 {
    font-size: 0.95rem !important;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .case-company h4 {
        font-size: 0.9rem !important;
        white-space: normal;
    }
}

/* Pricing note - estilo da V1 */
.pricing-note {
    background: linear-gradient(135deg, rgba(0, 168, 232, 0.1), rgba(144, 224, 239, 0.05));
    border: 1px solid rgba(0, 168, 232, 0.2);
    border-radius: var(--radius-md);
    padding: var(--spacing-md) var(--spacing-lg);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-lg);
}

.pricing-note i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.pricing-note p {
    margin: 0;
    color: var(--text-primary);
    font-size: 1rem;
}

.pricing-note strong {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .pricing-note {
        flex-direction: column;
        text-align: center;
    }
}
/* ===== CORREÇÃO MOCKUP - TAMANHO REDUZIDO ===== */
.phone-frame {
    width: 280px;
    height: 570px;
}

.phone-notch {
    width: 150px;
    height: 25px;
}

/* Mobile mockup menor */
@media (max-width: 768px) {
    .phone-frame {
        width: 260px;
        height: 530px;
    }
}


.case-company {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
    min-width: 0;
}

.company-icon-fixed {
    width: 50px !important;
    height: 50px !important;
    min-width: 50px !important;
    flex-shrink: 0;
}

.company-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
}

.company-info h4 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
    color: var(--text-primary);
}

.company-info span {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0;
}

.case-result {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    flex-shrink: 0;
}

.result-value {
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.result-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.case-metrics {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    flex-wrap: wrap;
}

.metric {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.metric i {
    color: var(--primary-color);
    font-size: 1rem;
}

/* Mobile cases */
@media (max-width: 768px) {
    .case-header {
        flex-wrap: wrap;
    }
    
    .result-value {
        font-size: 1.75rem;
    }
    
    .case-metrics {
        flex-direction: column;
        gap: 0.75rem;
    }
}

/* ===== SEÇÃO TESTE GRÁTIS (embaixo dos planos) ===== */
.pricing-trial-section {
    background: linear-gradient(135deg, rgba(0, 168, 232, 0.05), rgba(144, 224, 239, 0.02));
    border: 2px solid rgba(0, 168, 232, 0.15);
    border-radius: 16px;
    padding: 2rem;
    margin-top: 3rem;
    text-align: center;
}

.trial-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.8rem;
}

.trial-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.trial-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0;
}

@media (max-width: 768px) {
    .pricing-trial-section {
        padding: 1.5rem;
        margin-top: 2rem;
    }
    
    .trial-title {
        font-size: 1.25rem;
    }
}

/* ===== CORREÇÕES DEFINITIVAS ===== */

/* Mockup - Tamanho reduzido */
.phone-frame {
    width: 280px !important;
    height: 570px !important;
    transform: scale(0.85);
}

@media (max-width: 768px) {
    .phone-frame {
        width: 240px !important;
        height: 490px !important;
        transform: scale(0.9);
    }
}


.case-company {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    flex: 1;
    min-width: 0;
}

.company-icon-fixed {
    width: 50px !important;
    height: 50px !important;
    min-width: 50px !important;
    flex-shrink: 0;
}

.company-info {
    flex: 1;
    min-width: 0;
}

.company-info h4 {
    margin: 0 0 4px 0;
    font-size: 0.95rem;
    font-weight: 600;
}

.company-info span {
    font-size: 0.85rem;
    opacity: 0.7;
}

.case-result {
    text-align: right;
    flex-shrink: 0;
}

.result-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 4px;
}

.result-label {
    display: block;
    font-size: 0.85rem;
    opacity: 0.7;
}

/* Mobile cases */
@media (max-width: 768px) {
    .case-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .case-result {
        text-align: left;
        width: 100%;
    }
}

/* Seção teste grátis após pricing */
.pricing-trial-section {
    background: linear-gradient(135deg, rgba(0, 168, 232, 0.08), rgba(144, 224, 239, 0.05));
    border: 2px solid rgba(0, 168, 232, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    text-align: center;
    margin-top: var(--spacing-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
}

.pricing-trial-section i {
    color: var(--primary-color);
    font-size: 2rem;
}

.pricing-trial-section p {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.pricing-trial-section strong {
    color: var(--primary-color);
    font-weight: 700;
}

@media (max-width: 768px) {
    .pricing-trial-section {
        flex-direction: column;
        padding: var(--spacing-lg);
    }
    
    .pricing-trial-section p {
        font-size: 1rem;
    }
}

/* ===== LOGO MAIOR ===== */
.logo-img {
    height: 50px !important;
    width: auto !important;
}

@media (max-width: 768px) {
    .logo-img {
        height: 40px !important;
    }
}

/* Footer logo maior também */
.footer-logo img {
    height: 45px !important;
    width: auto !important;
}

/* ===== SEÇÃO TESTE GRÁTIS - ESTILO EXATO DA IMAGEM ===== */
.pricing-trial-section {
    background: rgba(0, 168, 232, 0.08) !important;
    border: none !important;
    border-radius: 12px !important;
    padding: 1.5rem 2rem !important;
    margin-top: 2.5rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 1rem !important;
    text-align: left !important;
}

.trial-icon {
    width: 40px !important;
    height: 40px !important;
    background: transparent !important;
    border-radius: 0 !important;
    color: var(--primary-color) !important;
    font-size: 2rem !important;
    flex-shrink: 0 !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.trial-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.trial-content p {
    margin: 0 !important;
    font-size: 1rem !important;
    color: var(--text-primary) !important;
    line-height: 1.4 !important;
}

.trial-content strong {
    font-weight: 600 !important;
    color: var(--text-primary) !important;
}

@media (max-width: 768px) {
    .pricing-trial-section {
        flex-direction: row !important;
        text-align: left !important;
        padding: 1.25rem !important;
    }
    
    .trial-icon {
        font-size: 1.75rem !important;
    }
    
    .trial-content p {
        font-size: 0.95rem !important;
    }
}

/* ===== REMOVER MOCKUP - ADICIONAR FEATURES SHOWCASE ===== */
.hero-visual {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.features-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 2rem;
}

.feature-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.4s ease;
    animation: float 3s ease-in-out infinite;
}

.feature-item:nth-child(1) { animation-delay: 0s; }
.feature-item:nth-child(2) { animation-delay: 0.5s; }
.feature-item:nth-child(3) { animation-delay: 1s; }
.feature-item:nth-child(4) { animation-delay: 1.5s; }

.feature-item:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 168, 232, 0.3);
}

.feature-icon-large {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(0, 168, 232, 0.4);
}

.feature-item h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.feature-item p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin: 0;
}

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

@media (max-width: 768px) {
    .features-showcase {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem;
    }
    
    .feature-item {
        padding: 1.5rem 1rem;
    }
    
    .feature-icon-large {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
    }
    
    .feature-item h3 {
        font-size: 1.1rem;
    }
}


.case-header {
    margin-bottom: 1.5rem;
}

.company-info h4 {
    font-size: 1rem;
    line-height: 1.3;
    margin-bottom: 0.25rem;
    word-wrap: break-word;
}

.company-info span {
    font-size: 0.85rem;
}

.result-value {
    font-size: 2.5rem;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.result-label {
    font-size: 0.8rem;
    text-transform: uppercase;
}

.case-description {
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 1.5rem 0;
    /* flex: 1; */ /* <-- Removido! */
}

.case-metrics {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.metric {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
}

.metric i {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.metric span {
    flex: 1;
}

@media (max-width: 968px) {
    .case-card {
        min-height: auto;
        padding: 1.5rem;
    }
    
    .result-value {
        font-size: 2rem;
    }
    
    .case-description {
        font-size: 0.9rem;
    }
}
/* ===== LIMPAR TODO CSS DE MOCKUP E ADICIONAR FEATURES SIMPLES ===== */

/* Remover todos os estilos de phone/mockup */
.phone-container,
.phone-frame,
.phone-screen,
.phone-notch,
.phone-shadow,
.chat-header,
.chat-messages,
.chat-input-area,
.message-received,
.message-sent,
.hero-mockup,
.hero-visual,
.features-showcase {
    display: none !important;
}

/* Hero Features Display - SIMPLES E LIMPO */
.hero-features-display {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 500px;
    margin: 0 auto;
}

.feature-box {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 168, 232, 0.3);
}

.feature-icon-box {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.8rem;
}

.feature-box h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.feature-box p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Hero Grid - Layout correto */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

@media (max-width: 968px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-features-display {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .feature-box {
        padding: 1.25rem 1rem;
    }
    
    .feature-icon-box {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .feature-box h3 {
        font-size: 1rem;
    }
    
    .feature-box p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .hero-features-display {
        grid-template-columns: 1fr;
    }
}

/* Desabilitar scroll automático */
html {
    scroll-behavior: auto !important;
}

body {
    overflow-x: hidden;
}

/* Hero section fixa */
.hero {
    min-height: auto;
    padding: 120px 0 80px;
}

/* ===== ESCONDER ÍCONES ESTRANHOS E ELEMENTOS FLUTUANTES ===== */
.hero-shapes,
.shape,
.hero-bg-gradient,
.hero::before,
.hero::after {
    display: none !important;
}

/* Garantir que hero não tenha overflow */
.hero {
    overflow: hidden !important;
    position: relative;
}

.hero-grid {
    position: relative;
    z-index: 2;
}

/* Remover qualquer elemento absoluto estranho */
.hero > *:not(.container) {
    display: none !important;
}
