/* ===== RESET & VARIABLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Garante que seções não tenham scroll interno */
.section {
    overflow-x: hidden !important;
    overflow-y: visible !important;
}

:root {
    --primary: #ff6b35;
    --secondary: #f7931e;
    --dark: #0a0a0a;
    --dark-alt: #1a1a1a;
    --gray: #2a2a2a;
    --gray-light: #888;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    --gradient-alt: linear-gradient(135deg, #f7931e 0%, #ff6b35 100%);
    --shadow: 0 10px 40px rgba(0,0,0,0.3);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.4);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Backgrounds das seções - padrão alternado */
    --section-bg-dark: #0a0a0a;
    --section-bg-darker: #050505;
    --section-bg-gradient: radial-gradient(ellipse at center, rgba(255, 107, 53, 0.03) 0%, transparent 70%);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    height: 100%;
    /* Esconde scrollbar mas mantém funcionalidade */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE e Edge */
}

html::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--dark);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    min-height: 100vh;
    position: relative;
    /* Esconde scrollbar mas mantém funcionalidade */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE e Edge */
}

body::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

body.menu-open {
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

.section {
    padding: 100px 0;
    position: relative;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* Padrão de cores alternadas para seções - DESATIVADO para evitar overflow */

/* Ensure images are responsive */
img {
    max-width: 100%;
    height: auto;
}

/* Prevent text selection on touch devices */
.btn, .nav-link, .lang-btn, .nav-btn {
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000 !important; /* Acima do hero */
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.navbar.menu-open {
    z-index: 10000 !important; /* Mantém acima do hero */
    position: fixed;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    box-shadow: var(--shadow);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    /* NÃO adicionar position: relative - cria contexto de empilhamento */
}

.nav-logo a {
    display: block;
    line-height: 0;
    cursor: pointer;
}

.nav-logo img {
    height: 100px;
    transition: var(--transition);
}

.nav-logo a:hover img {
    transform: scale(1.05);
    filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.5));
}

.navbar.scrolled .nav-logo img {
    height: 55px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

/* Esconde botão X no desktop */
.menu-close {
    display: none;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
    position: relative;
}

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

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

.nav-cta {
    background: var(--gradient);
    padding: 10px 25px;
    border-radius: 25px;
    color: var(--white) !important;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
    color: var(--white) !important;
}

.language-selector {
    position: relative;
    z-index: 10001 !important; /* Acima do navbar */
    display: block !important;
    visibility: visible !important;
    isolation: isolate; /* Cria contexto de empilhamento isolado */
}

.lang-dropdown-btn {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 8px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: var(--transition);
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    min-width: 90px;
}

.lang-dropdown-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 107, 53, 0.4);
}

.current-lang-flag {
    font-size: 18px;
}

.current-lang-code {
    font-size: 13px;
    letter-spacing: 0.5px;
}

.lang-dropdown-btn i {
    font-size: 10px;
    opacity: 0.7;
    transition: transform 0.3s ease;
}

.lang-dropdown-btn.active i {
    transform: rotate(180deg);
}

.lang-dropdown-menu {
    display: none;
    position: fixed; /* Mudado de absolute para fixed */
    top: 70px; /* Altura do navbar */
    right: 20px; /* Alinhado à direita */
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 2px solid rgba(255, 107, 53, 0.4);
    border-radius: 16px;
    padding: 8px;
    min-width: 180px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8),
                0 0 0 1px rgba(255, 255, 255, 0.1) inset,
                0 0 30px rgba(255, 107, 53, 0.2);
    z-index: 99999 !important; /* Z-INDEX MÁXIMO */
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.lang-dropdown-menu.active {
    display: block !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
    visibility: visible !important;
    pointer-events: all !important; /* Permite interação quando ativo */
}

.lang-option {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--white);
    margin-bottom: 4px;
}

.lang-option:last-child {
    margin-bottom: 0;
}

.lang-option:hover {
    background: rgba(255, 107, 53, 0.2);
    border-color: rgba(255, 107, 53, 0.4);
}

.lang-option.active {
    background: rgba(255, 107, 53, 0.15);
    border-color: var(--primary);
}

.lang-flag {
    font-size: 20px;
}

.lang-name {
    font-size: 14px;
    font-weight: 500;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    z-index: 1000;
}

.hamburger:hover {
    background: rgba(255, 107, 53, 0.2);
    border-color: var(--primary);
}

.hamburger span {
    width: 25px;
    height: 2.5px;
    background: var(--white);
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Menu Overlay não é mais necessário - menu já tem fundo */

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
    overflow-x: hidden;
    width: 100%;
    z-index: 1; /* Abaixo do navbar */
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at top, rgba(255, 107, 53, 0.15) 0%, transparent 60%),
                radial-gradient(ellipse at bottom right, rgba(247, 147, 30, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.hero-container {
    position: relative;
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 107, 53, 0.2);
    border: 1px solid rgba(255, 107, 53, 0.3);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 20px;
    animation: pulse 3s ease-in-out infinite;
}

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

.hero-title {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-stats-inline {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.stat-inline {
    display: flex;
    flex-direction: column;
}

.stat-inline strong {
    font-size: 28px;
    color: var(--primary);
    font-weight: 800;
}

.stat-inline span {
    font-size: 13px;
    color: var(--gray-light);
}

.hero-cta {
    display: flex;
    gap: 15px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 16px;
}

.btn-primary {
    background: var(--gradient);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 18px;
}

.hero-logo-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.hero-logo-large {
    width: 100%;
    max-width: 500px;
    height: auto;
    filter: drop-shadow(0 10px 40px rgba(255, 107, 53, 0.3));
    animation: logoGlow 3s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% { filter: drop-shadow(0 10px 40px rgba(255, 107, 53, 0.3)); }
    50% { filter: drop-shadow(0 15px 50px rgba(255, 107, 53, 0.5)); }
}

.hero-badge-group {
    display: flex;
    gap: 15px;
    margin-top: 40px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.floating-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 50px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 14px;
    animation: float 4s ease-in-out infinite;
    transition: var(--transition);
}

.floating-badge:nth-child(2) {
    animation-delay: 1.3s;
}

.floating-badge:nth-child(3) {
    animation-delay: 2.6s;
}

.floating-badge:hover {
    background: rgba(255, 107, 53, 0.2);
    border-color: var(--primary);
    transform: translateY(-3px);
}

.floating-badge i {
    font-size: 18px;
    color: var(--primary);
}

.floating-badge.brazilian-tech {
    background: linear-gradient(135deg, rgba(0, 156, 59, 0.2), rgba(255, 223, 0, 0.2));
    border-color: rgba(0, 156, 59, 0.4);
}

.floating-badge.live-capture {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(255, 140, 0, 0.2));
    border-color: rgba(255, 107, 53, 0.4);
}

.floating-badge.brazilian-tech:hover {
    background: linear-gradient(135deg, rgba(0, 156, 59, 0.3), rgba(255, 223, 0, 0.3));
    border-color: #009c3b;
}

.floating-badge.live-capture:hover {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.3), rgba(255, 140, 0, 0.3));
    border-color: var(--primary);
}

.floating-badge.avatar-badge {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(147, 51, 234, 0.2));
    border-color: rgba(59, 130, 246, 0.4);
}

.floating-badge.avatar-badge:hover {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(147, 51, 234, 0.3));
    border-color: #3b82f6;
}

.floating-badge.roi-link {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.3), rgba(247, 147, 30, 0.3));
    border: 2px solid var(--primary);
    text-decoration: none;
    cursor: pointer;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 16px rgba(255, 107, 53, 0.4);
    font-weight: 600;
}

.floating-badge.roi-link:hover {
    background: var(--gradient);
    border-color: var(--secondary);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.6);
}

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

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 3s ease-in-out infinite;
}

.scroll-indicator a {
    color: var(--primary);
    font-size: 24px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.scroll-indicator a:hover {
    opacity: 1;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-badge {
    display: inline-block;
    background: rgba(255, 107, 53, 0.2);
    border: 1px solid rgba(255, 107, 53, 0.3);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

/* ===== RISK SECTION ===== */
.risk-section {
    background: linear-gradient(180deg, var(--dark) 0%, var(--dark-alt) 100%);
    overflow-x: hidden;
}

.risk-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.risk-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px 18px;
    text-align: center;
    transition: var(--transition);
}

.risk-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.risk-icon {
    width: 55px;
    height: 55px;
    margin: 0 auto 12px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.risk-icon.red {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.risk-icon.orange {
    background: rgba(249, 115, 22, 0.2);
    color: #f97316;
}

.risk-icon.yellow {
    background: rgba(234, 179, 8, 0.2);
    color: #eab308;
}

.risk-icon.purple {
    background: rgba(168, 85, 247, 0.2);
    color: #a855f7;
}

.risk-icon.blue {
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
}

.risk-icon.cyan {
    background: rgba(6, 182, 212, 0.2);
    color: #06b6d4;
}

.risk-value {
    font-size: 44px;
    font-weight: 900;
    color: var(--primary);
    display: inline-block;
}

.risk-unit {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin-left: 5px;
}

.risk-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 12px;
    line-height: 1.4;
}

/* ===== IMPACT ANALYSIS ===== */
.impact-analysis {
    margin-top: 60px;
    padding: 40px 0;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.impact-header {
    text-align: center;
    margin-bottom: 40px;
}

.impact-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.impact-title i {
    font-size: 32px;
    color: var(--primary);
}

.impact-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 35px;
}

.impact-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 22px;
    text-align: center;
    transition: var(--transition);
}

.impact-card.highlight {
    background: rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.3);
}

.impact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.impact-card.highlight:hover {
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.impact-icon {
    width: 55px;
    height: 55px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.impact-content h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--white);
}

.impact-value {
    font-size: 32px;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 10px;
}

.impact-description {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

.impact-conclusion {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 15px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
}

.conclusion-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(239, 68, 68, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #ef4444;
    flex-shrink: 0;
}

.conclusion-text h4 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--white);
}

.conclusion-text p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.5;
}

.impact-cta {
    text-align: center;
    margin-top: 30px;
    padding: 25px;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 15px;
}

.impact-cta h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--white);
}

.impact-cta p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.impact-cta .btn {
    font-size: 16px;
    padding: 15px 30px;
}

/* ===== SOLUTION SECTION ===== */
.workflow {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 60px 0;
    flex-wrap: wrap;
}

.workflow-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.workflow-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.workflow-item h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--primary);
}

.workflow-item p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.workflow-arrow {
    font-size: 24px;
    color: var(--primary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 60px 0;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    transition: var(--transition);
}

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

.feature-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 700;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 20px;
}

.feature-highlight {
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 10px;
    padding: 15px;
    display: flex;
    align-items: start;
    gap: 10px;
}

.feature-highlight i {
    color: var(--primary);
    margin-top: 3px;
}

.traffic-lights {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

    /* Avatar Real New - Mobile - Layout Fluido Vertical */
    .avatar-real-new {
        padding: 40px 20px;
        margin: 0;
        display: flex;
        flex-direction: column;
    }
    
    /* 1. Título e subtítulo no topo */
    .avatar-hero {
        order: 1;
        margin-bottom: 30px;
    }

    .avatar-main-title {
        font-size: 28px;
        line-height: 1.2;
    }
    
    .avatar-main-subtitle {
        font-size: 16px;
        line-height: 1.6;
        margin-top: 15px;
    }

    .avatar-showcase {
        order: 2;
        display: grid !important;
        grid-template-columns: 1fr !important;
        grid-template-areas: 
            "texto"
            "imagem"
            "cards"
            "cta" !important;
        gap: 30px !important;
        align-items: flex-start !important;
    }
    
    /* Ordem usando grid-areas */
    .showcase-content {
        grid-area: texto;
    }
    
    .showcase-visual {
        grid-area: imagem;
    }
    
    .showcase-benefits-wrapper {
        grid-area: cards;
    }
    
    .showcase-cta-wrapper {
        grid-area: cta;
    }
    
    .concept-explanation h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .concept-explanation p {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 0;
    }
    
    /* Imagem em destaque - largura total no mobile */
    .visual-container {
        width: 100%;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
        border: 1px solid rgba(255, 107, 53, 0.3);
    }
    
    .visual-container img {
        width: 100%;
        height: auto;
        display: block;
    }
    
    .visual-overlay {
        display: none;
    }
    
    /* Cards de benefícios */
    .avatar-benefits {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .benefit-card {
        padding: 15px;
        gap: 15px;
    }

    .benefit-number {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .avatar-cta {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .cta-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    /* Solution Transform New - Mobile */
    .solution-main-title {
        font-size: 28px;
    }

    .journey-statement {
        font-size: 18px;
    }

    .solution-description {
        font-size: 16px;
    }

    .process-flow {
        flex-direction: row;
        gap: 10px;
        flex-wrap: wrap;
    }

    .process-item {
        flex: 1;
        min-width: 250px;
    }

    .arrow-connector {
        transform: rotate(0deg);
        font-size: 24px;
        padding: 10px;
    }

    .process-step {
        min-width: auto;
        padding: 25px;
    }

    .step-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }

    .step-content h4 {
        font-size: 18px;
    }

    .step-content p {
        font-size: 14px;
    }

    .solution-result {
        padding: 30px 20px;
    }

    .solution-result h3 {
        font-size: 24px;
    }

.traffic-light {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.05);
    padding: 12px 15px;
    border-radius: 10px;
}

.traffic-light .light {
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.traffic-light.green .light {
    background: #22c55e;
    box-shadow: 0 0 15px #22c55e;
}

.traffic-light.yellow .light {
    background: #eab308;
    box-shadow: 0 0 15px #eab308;
}

.traffic-light.red .light {
    background: #ef4444;
    box-shadow: 0 0 15px #ef4444;
}

.traffic-light span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

/* Avatar Real Section */
.avatar-section {
    margin: 60px 0;
}

.avatar-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.avatar-text {
    padding: 20px;
}

.feature-icon-large {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 20px;
}

.feature-title-large {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-title-inline {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.3;
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-title-inline i {
    font-size: 42px;
    color: var(--primary);
    flex-shrink: 0;
}

.feature-subtitle {
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 15px;
}

.time-highlight {
    color: var(--primary);
    font-weight: 900;
    background: rgba(255, 107, 53, 0.2);
    padding: 2px 12px;
    border-radius: 8px;
}

.feature-description-large {
    font-size: 20px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

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

.avatar-highlights {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.highlight-item {
    display: flex;
    gap: 15px;
    align-items: start;
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.highlight-item:hover {
    background: rgba(255, 107, 53, 0.05);
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateX(5px);
}

.highlight-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 107, 53, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-icon i {
    color: var(--primary);
    font-size: 20px;
}

.highlight-item h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--white);
}

.highlight-item p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.avatar-image {
    position: relative;
}

.analysis-img {
    width: 100%;
    border-radius: 20px;
    border: 2px solid rgba(255, 107, 53, 0.3);
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.2);
}

.image-caption {
    margin-top: 15px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
    color: var(--primary);
}

.image-caption i {
    font-size: 18px;
}

/* Transition Banner */
.transition-banner {
    margin: 60px 0;
    padding: 40px;
    background: var(--gradient);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.3);
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.banner-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    animation: pulse 2s ease-in-out infinite;
}

.banner-text {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 42px;
    font-weight: 900;
}

.from-text {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: line-through;
}

.arrow {
    color: var(--white);
    font-size: 48px;
}

.to-text {
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Semaphore Section (Invertido) */
.semaphore-section {
    margin: 80px auto;
    max-width: 1400px;
    width: 100%;
    padding: 0 20px;
    overflow-x: hidden;
    box-sizing: border-box;
}

.semaphore-content-reverse {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.semaphore-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.semaphore-img {
    width: 80%; /* Reduzido em 20% */
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.semaphore-img:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.2);
}

.main-img {
    border: 2px solid rgba(255, 107, 53, 0.3);
}

.secondary-img {
    opacity: 0.9;
}

.secondary-img:hover {
    opacity: 1;
}

.semaphore-text {
    padding: 20px;
}

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

.traffic-lights-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin: 30px 0;
}

.traffic-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 20px 25px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 20px;
}

.traffic-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow);
}

.traffic-item.green {
    border-color: rgba(34, 197, 94, 0.3);
}

.traffic-item.green:hover {
    background: rgba(34, 197, 94, 0.05);
    border-color: #22c55e;
}

.traffic-item.yellow {
    border-color: rgba(234, 179, 8, 0.3);
}

.traffic-item.yellow:hover {
    background: rgba(234, 179, 8, 0.05);
    border-color: #eab308;
}

.traffic-item.red {
    border-color: rgba(239, 68, 68, 0.3);
}

.traffic-item.red:hover {
    background: rgba(239, 68, 68, 0.05);
    border-color: #ef4444;
}

.traffic-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    flex-shrink: 0;
}

.traffic-item.green .traffic-circle {
    background: #22c55e;
    box-shadow: 0 0 25px rgba(34, 197, 94, 0.6);
}

.traffic-item.yellow .traffic-circle {
    background: #eab308;
    box-shadow: 0 0 25px rgba(234, 179, 8, 0.6);
}

.traffic-item.red .traffic-circle {
    background: #ef4444;
    box-shadow: 0 0 25px rgba(239, 68, 68, 0.6);
}

.traffic-content {
    flex: 1;
    text-align: left;
}

.traffic-content h4 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 8px;
}

.traffic-content p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

.semaphore-impact {
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 15px;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
}

.semaphore-impact i {
    font-size: 28px;
    color: var(--primary);
}

.semaphore-impact p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
}

.semaphore-impact strong {
    color: var(--primary);
}

/* Feature Showcases */
.feature-showcase {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
    margin: 80px 0;
}

.feature-showcase.reverse {
    grid-template-columns: 1.2fr 1fr;
}

.feature-showcase.reverse .showcase-text {
    order: 2;
}

.feature-showcase.reverse .showcase-image {
    order: 1;
}

.showcase-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
}

.showcase-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.3;
}

.showcase-description {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 25px;
}

.showcase-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.showcase-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

.showcase-list i {
    color: #22c55e;
    font-size: 18px;
    flex-shrink: 0;
}

.showcase-image {
    position: relative;
}

.feature-img {
    width: 100%;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.feature-img:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.2);
}

/* Feature Showcase Centered */
.feature-showcase-centered {
    margin: 80px auto;
    max-width: 1400px;
    padding: 0 20px;
    text-align: center;
}

.showcase-header-centered {
    max-width: 800px;
    margin: 0 auto 40px;
}

.feature-title-inline-centered {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.3;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.feature-title-inline-centered i {
    font-size: 42px;
    color: var(--primary);
}

.showcase-description-centered {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
}

.showcase-image-centered {
    max-width: 700px;
    margin: 0 auto 30px;
}

.feature-img-small {
    width: 100%;
    max-width: 600px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.feature-img-small:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.2);
}

.showcase-list-centered {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    max-width: 700px;
    margin: 0 auto;
}

.showcase-list-centered li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    text-align: left;
}

.showcase-list-centered i {
    color: #22c55e;
    font-size: 18px;
    flex-shrink: 0;
}

/* Workmap Section (TEXTO-IMG / IMG-IMG) */
.workmap-section {
    max-width: 1400px;
    padding: 0 20px;
    margin: 80px 0;
}

.workmap-layout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.workmap-text-card {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 15px;
    padding: 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.workmap-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.workmap-title i {
    font-size: 30px;
    color: var(--primary);
}

.workmap-subtitle {
    font-size: 20px;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 18px;
}

.workmap-description {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
}

.workmap-benefit {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 107, 53, 0.15);
    padding: 12px 18px;
    border-radius: 10px;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.workmap-benefit i {
    color: var(--primary);
    font-size: 20px;
}

.workmap-benefit span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.95);
}

.workmap-image-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 15px;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 250px;
}

.workmap-image-card:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.workmap-image-card img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
}

/* ===== KORA AI DEMO ===== */
.kora-demo-section {
    background: var(--dark-alt);
}

.kora-demo {
    max-width: 1000px;
    margin: 0 auto;
}

.demo-upload {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
}

.upload-area {
    min-height: 350px;
    border: 2px dashed rgba(255, 107, 53, 0.3);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.02);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.upload-area:hover {
    border-color: var(--primary);
    background: rgba(255, 107, 53, 0.05);
}

.upload-area.dragover {
    border-color: var(--primary);
    background: rgba(255, 107, 53, 0.1);
    border-style: solid;
}

.upload-content {
    text-align: center;
    padding: 40px;
}

.upload-content i {
    font-size: 64px;
    color: var(--primary);
    margin-bottom: 20px;
    animation: pulse 3s ease-in-out infinite;
}

.upload-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.upload-content p {
    color: var(--gray-light);
    margin-bottom: 25px;
}

.upload-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    font-size: 13px;
    color: var(--gray-light);
}

.upload-preview {
    width: 100%;
    height: 100%;
    position: relative;
}

.upload-preview img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 15px;
}

.btn-remove {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(239, 68, 68, 0.9);
    border: none;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-remove:hover {
    background: #ef4444;
    transform: scale(1.1);
}

.analysis-counter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    font-size: 15px;
}

.analysis-counter i {
    color: var(--primary);
}

.analysis-counter strong {
    color: var(--primary);
    font-size: 18px;
}

.btn-analyze {
    width: 100%;
    font-size: 18px;
    padding: 18px;
}

.btn-analyze:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-analyze:disabled:hover {
    transform: none;
    box-shadow: none;
}

.demo-results {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    margin-top: 30px;
}

.results-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.results-header i {
    font-size: 32px;
    color: #22c55e;
}

.results-header h3 {
    font-size: 28px;
    font-weight: 700;
}

.result-items {
    display: grid;
    gap: 20px;
    margin-bottom: 30px;
}

.result-item-demo {
    display: flex;
    gap: 20px;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.result-icon-demo {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.result-item-demo h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--white);
}

.result-item-demo p {
    font-size: 18px;
    color: var(--primary);
    font-weight: 600;
}

.demo-disclaimer {
    background: rgba(234, 179, 8, 0.1);
    border: 1px solid rgba(234, 179, 8, 0.3);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    gap: 15px;
    align-items: start;
    margin-bottom: 25px;
}

.demo-disclaimer i {
    color: #eab308;
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.demo-disclaimer p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.6;
}

.demo-cta {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.solution-image {
    margin-top: 60px;
    position: relative;
}

.report-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.image-badge {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 15px 30px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.image-badge i {
    color: var(--primary);
}

/* ===== ROI SIMULATOR ===== */
.roi-section {
    background: linear-gradient(180deg, var(--dark-alt) 0%, var(--dark) 100%);
    overflow-x: hidden;
}

/* ===== ROI SIMULATOR NEW ===== */
.roi-simulator-new {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 40px;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    overflow-x: hidden;
    box-sizing: border-box;
}

.simulator-header {
    text-align: center;
    margin-bottom: 40px;
}

.simulator-header h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 10px;
}

.simulator-header p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
}

.simulator-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.inputs-section {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.input-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    transition: var(--transition);
}

.input-card:hover {
    border-color: var(--primary);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.1);
}

.input-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.input-header i {
    font-size: 20px;
    color: var(--primary);
}

.input-header span {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
}

.input-control {
    margin-bottom: 15px;
}

.input-control input[type="range"] {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    outline: none;
    -webkit-appearance: none;
    margin-bottom: 10px;
}

.input-control input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: var(--gradient);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.input-control input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: var(--gradient);
    border-radius: 50%;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.range-labels {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--gray-light);
}

.input-value {
    text-align: center;
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
}

.results-section {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 30px;
}

.results-header {
    text-align: center;
    margin-bottom: 30px;
}

.results-header h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
}

.results-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.result-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: var(--transition);
}

.result-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.result-item.highlight {
    background: rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.3);
}

.result-item.success {
    background: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.3);
}

.result-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.result-item.success .result-icon {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

.result-info {
    flex: 1;
}

.result-label {
    font-size: 14px;
    color: var(--gray-light);
    margin-bottom: 5px;
    display: block;
}

.result-value {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
}

.result-item.success .result-value {
    color: #22c55e;
}

.roi-summary {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 15px;
}

.summary-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 107, 53, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--primary);
    flex-shrink: 0;
}

.summary-text h5 {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 5px;
}

.summary-text p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* ===== CAMERAS SECTION ===== */
.cameras-section {
    margin: 80px 0;
    text-align: center;
}

.cameras-header {
    margin-bottom: 50px;
}

.cameras-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.cameras-title i {
    font-size: 36px;
    color: var(--primary);
}

.cameras-subtitle {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    max-width: 900px;
    margin: 0 auto;
}

.manufacturers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.manufacturer-section {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 25px;
    transition: var(--transition);
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.manufacturer-section:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.1);
}

.manufacturer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.manufacturer-header h4 {
    font-size: 20px;
    font-weight: 800;
    color: var(--white);
    margin: 0;
}

.live-capture-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 107, 53, 0.2);
    color: var(--primary);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.live-capture-badge i {
    font-size: 10px;
}

.models-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    width: 100%;
    max-width: 100%;
}

.model-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    transition: var(--transition);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.model-card:hover {
    transform: translateY(-2px);
    border-color: var(--primary);
    background: rgba(255, 107, 53, 0.1);
}

.model-card h5 {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 6px 0;
}

.model-card p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.4;
}

.cameras-benefit {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 15px;
    padding: 25px;
    max-width: 800px;
    margin: 0 auto;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 107, 53, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--primary);
    flex-shrink: 0;
}

.benefit-text {
    text-align: left;
}

.benefit-text h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.benefit-text p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    line-height: 1.7;
}

/* ===== CAMERAS BENEFIT NEW ===== */
.benefit-icon {
    position: relative;
}

.benefit-lightning {
    position: absolute;
    top: -5px;
    right: -5px;
    font-size: 12px;
    color: var(--primary);
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
}

.integration-types {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 15px 0;
}

.integration-type {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    border-left: 2px solid rgba(255, 107, 53, 0.5);
    transition: all 0.3s ease;
}

.integration-type:hover {
    background: rgba(255, 255, 255, 0.08);
    border-left-color: var(--primary);
    transform: translateX(5px);
}

.integration-type i {
    color: var(--primary);
    width: 20px;
    font-size: 16px;
    flex-shrink: 0;
}

.integration-type strong {
    color: var(--white);
}

.benefit-highlight {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    margin-top: 15px;
    padding: 12px 15px;
    background: rgba(34, 197, 94, 0.1);
    border-left: 3px solid #22c55e;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.benefit-highlight i {
    color: #22c55e;
    font-size: 16px;
}

.benefit-highlight strong {
    color: var(--white);
}

/* ===== CAMERAS MAIN SECTION ===== */
.cameras-main-section {
    background: linear-gradient(180deg, var(--dark) 0%, var(--dark-alt) 100%);
    overflow-x: hidden;
}

.manufacturer-image {
    text-align: center;
    margin-bottom: 20px;
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.manufacturer-image img {
    max-height: 160px;
    width: auto;
    object-fit: contain;
    filter: brightness(0.9);
    transition: var(--transition);
}

.manufacturer-section:hover .manufacturer-image img {
    filter: brightness(1);
    transform: scale(1.05);
}

.integration-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.integration-badge.cable {
    background: rgba(156, 163, 175, 0.2);
    color: #9ca3af;
}

.integration-badge.wireless {
    background: rgba(255, 107, 53, 0.2);
    color: var(--primary);
}

.manufacturer-section.highlight-wireless {
    border: 2px solid rgba(255, 107, 53, 0.3);
    background: rgba(255, 107, 53, 0.05);
}

.manufacturer-section.highlight-wireless:hover {
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.2);
}

/* ===== COMPARATIVE SECTION ===== */
.comparative-section {
    background: linear-gradient(180deg, var(--dark-alt) 0%, var(--dark) 100%);
    overflow-x: hidden;
}

.comparative-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.comparative-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateX(10px);
    border-color: var(--primary);
    background: rgba(255, 107, 53, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    flex-shrink: 0;
}

.feature-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.feature-content p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.5;
}

.comparative-image {
    position: relative;
}

.image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

.image-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
}

.overlay-badge {
    background: rgba(255, 255, 255, 0.95);
    color: var(--dark);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.overlay-badge i {
    color: var(--primary);
}

/* ===== AVATAR SECTION IMPROVEMENTS ===== */
.avatar-header {
    text-align: center;
    margin-bottom: 40px;
}

.avatar-title {
    font-size: 36px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.avatar-title i {
    font-size: 40px;
    color: var(--primary);
}

.avatar-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-style: italic;
}

/* ===== SOLUTION SECTION IMPROVEMENTS ===== */
.solution-intro {
    margin-top: 20px;
}

/* ===== AVATAR REAL NEW ===== */
.avatar-real-new {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(147, 51, 234, 0.05));
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 25px;
    padding: 50px 40px; /* Reduzido padding horizontal */
    margin: 60px auto;
    max-width: 1200px; /* Alinhado com .container */
    width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

.avatar-hero {
    text-align: center;
    margin-bottom: 40px; /* Reduzido de 50px */
}

.avatar-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(
        90deg,
        rgba(138, 43, 226, 0.15) 0%,    /* Roxo */
        rgba(59, 130, 246, 0.15) 20%,   /* Azul */
        rgba(34, 197, 94, 0.15) 40%,    /* Verde */
        rgba(255, 193, 7, 0.15) 60%,    /* Amarelo */
        rgba(255, 107, 53, 0.15) 80%,   /* Laranja */
        rgba(239, 68, 68, 0.15) 100%    /* Vermelho */
    );
    border: 2px solid transparent;
    border-image: linear-gradient(
        90deg,
        rgba(138, 43, 226, 0.4),
        rgba(59, 130, 246, 0.4),
        rgba(34, 197, 94, 0.4),
        rgba(255, 193, 7, 0.4),
        rgba(255, 107, 53, 0.4),
        rgba(239, 68, 68, 0.4)
    ) 1;
    background-clip: padding-box;
    color: var(--white);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
    animation: pulse-kelvin-badge 3s ease-in-out infinite;
    margin: 0 auto 25px;
    text-align: center;
    position: relative;
}

.avatar-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 25px;
    padding: 2px;
    background: linear-gradient(
        90deg,
        rgba(138, 43, 226, 0.5),
        rgba(59, 130, 246, 0.5),
        rgba(34, 197, 94, 0.5),
        rgba(255, 193, 7, 0.5),
        rgba(255, 107, 53, 0.5),
        rgba(239, 68, 68, 0.5)
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.avatar-badge i {
    font-size: 16px;
    background: linear-gradient(
        90deg,
        #8a2be2,
        #3b82f6,
        #22c55e,
        #ffc107,
        #ff6b35,
        #ef4444
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Centralizar badges nas seções */
.semaphore-section > .avatar-badge,
.reports-alt > .avatar-badge,
.workmap-section-new > .avatar-badge,
.comparative-section > .avatar-badge {
    display: flex;
    width: fit-content;
    margin: 0 auto 25px;
}

.avatar-main-title {
    font-size: 32px; /* Reduzido de 36px */
    font-weight: 900;
    color: var(--white);
    margin-bottom: 12px; /* Reduzido de 15px */
    line-height: 1.2;
}

.avatar-highlight {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.avatar-main-subtitle {
    font-size: 16px; /* Reduzido de 18px */
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    max-width: 800px; /* Limita largura do texto */
    margin: 0 auto; /* Centraliza */
}

.avatar-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px; /* Reduzido de 60px para 40px */
    align-items: center;
}

/* Wrappers para reorganização mobile */
.showcase-benefits-wrapper,
.showcase-cta-wrapper {
    display: contents; /* No desktop, não interferem no grid */
}

.showcase-visual {
    position: relative;
}

.visual-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    width: 50%; /* Diminui para 30% (70% menor) no desktop */
    margin: 0 auto; /* Centraliza a imagem */
}

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

.visual-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(147, 51, 234, 0.1));
}

.overlay-elements {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.element-badge {
    background: rgba(255, 255, 255, 0.95);
    color: var(--dark);
    padding: 8px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.element-badge i {
    color: #3b82f6;
}

.concept-explanation {
    margin-bottom: 30px; /* Reduzido de 40px */
}

.concept-explanation h3 {
    font-size: 22px; /* Reduzido de 24px */
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px; /* Reduzido de 15px */
    line-height: 1.3;
}

.concept-explanation p {
    font-size: 15px; /* Reduzido de 16px */
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.avatar-benefits {
    display: flex;
    flex-direction: column;
    gap: 10px; /* Mais compacto - era 15px */
    margin-bottom: 20px; /* Mais compacto - era 25px */
}

.benefit-card {
    display: flex;
    align-items: center;
    gap: 12px; /* Mais compacto */
    padding: 12px 14px; /* Muito mais compacto */
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px; /* Mais compacto */
    transition: var(--transition);
}

.benefit-card:hover {
    border-color: #3b82f6;
    background: rgba(59, 130, 246, 0.1);
}

.benefit-card.highlight {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(147, 51, 234, 0.05));
    border-color: rgba(59, 130, 246, 0.3);
}

.benefit-number {
    width: 35px; /* Reduzido de 40px */
    height: 35px; /* Reduzido de 40px */
    background: var(--gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 15px; /* Reduzido de 16px */
    flex-shrink: 0;
}

.benefit-card.highlight .benefit-number {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
}

.benefit-content h4 {
    font-size: 15px; /* Reduzido ainda mais */
    font-weight: 700;
    color: var(--white);
    margin-bottom: 3px; /* Mais compacto */
    line-height: 1.3;
}

.benefit-content p {
    font-size: 13px; /* Reduzido de 14px */
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.4;
}

.avatar-cta {
    display: flex;
    align-items: center;
    gap: 15px; /* Reduzido de 20px */
    padding: 20px; /* Reduzido de 25px */
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 12px; /* Reduzido de 15px */
}

.cta-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: white;
    flex-shrink: 0;
}

.cta-text h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 5px;
}

.cta-text p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* ===== SOLUTION TRANSFORM NEW ===== */
.solution-transform-new {
    background: linear-gradient(180deg, var(--dark) 0%, var(--dark-alt) 100%);
    overflow-x: hidden;
}

.solution-hero {
    text-align: center;
    margin-bottom: 60px;
}

.solution-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 107, 53, 0.2);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.solution-main-title {
    font-size: 36px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 25px;
    line-height: 1.2;
}

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

.solution-journey {
    margin-bottom: 20px;
}

.journey-statement {
    font-size: 20px;
    color: var(--primary);
    font-weight: 600;
    font-style: italic;
    margin-bottom: 20px;
}

.solution-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.solution-process {
    margin-top: 50px;
}

.process-header {
    text-align: center;
    margin-bottom: 50px;
}

.process-header h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.process-header p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
}

.process-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 50px;
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.process-step {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    min-width: 200px;
    transition: var(--transition);
}

.process-step:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.process-step.highlight {
    padding: 35px;
    min-width: 280px;
    transform: scale(1.05);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(249, 115, 22, 0.05));
    border-color: rgba(255, 107, 53, 0.3);
}

.step-visual {
    position: relative;
    margin-bottom: 20px;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    margin: 0 auto;
}

.process-step.highlight .step-icon {
    background: linear-gradient(135deg, var(--primary), #f97316);
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
}

.step-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.step-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
}

.step-detail {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    color: var(--primary);
    font-weight: 600;
}

.detail-icon {
    font-size: 16px;
}

.process-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.connector-line {
    width: 2px;
    height: 40px;
    background: var(--primary);
}

.connector-arrow {
    color: var(--primary);
    font-size: 20px;
}

.solution-result {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
}

.result-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 107, 53, 0.2);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.solution-result h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.solution-result p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Transition Banner Inline */
.transition-banner-inline {
    text-align: center;
    margin-bottom: 40px;
}

.banner-content-inline {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--primary);
    border-radius: 50px;
    padding: 15px 40px;
}

.banner-from {
    font-size: 24px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
}

.banner-arrow-inline {
    color: var(--primary);
    font-size: 28px;
}

.banner-to {
    font-size: 24px;
    font-weight: 900;
    color: var(--primary);
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

/* Solution Stats */
.solution-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.stat-highlight {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 30px;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 15px;
}

.stat-number {
    font-size: 32px;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    font-weight: 600;
}

/* Process Flow with Arrows */
.process-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.arrow-connector {
    color: var(--primary);
    font-size: 32px;
    flex-shrink: 0;
}

.process-item:last-child .arrow-connector {
    display: none;
}

/* ===== DEVASTATING IMPACT NEW ===== */
.devastating-impact-new {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(153, 27, 27, 0.05));
    border: 1px solid rgba(220, 38, 38, 0.2);
    border-radius: 25px;
    padding: 50px;
    margin: 60px 0;
    position: relative;
    overflow: hidden;
}

.devastating-impact-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #dc2626, #f97316, #dc2626);
    animation: pulse-border 3s infinite;
}

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

.impact-hero {
    text-align: center;
    margin-bottom: 50px;
}

.impact-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(220, 38, 38, 0.2);
    color: #fca5a5;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 25px;
    border: 1px solid rgba(220, 38, 38, 0.3);
}

.impact-title-new {
    font-size: 36px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.devastating-highlight {
    background: linear-gradient(135deg, #dc2626, #f97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.impact-subtitle-new {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.impact-timeline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 50px 0;
    flex-wrap: wrap;
}

.timeline-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    min-width: 200px;
    transition: var(--transition);
    position: relative;
}

.timeline-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.timeline-card.devastating {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.2), rgba(153, 27, 27, 0.1));
    border-color: rgba(220, 38, 38, 0.4);
}

.timeline-number {
    width: 40px;
    height: 40px;
    background: var(--gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
    margin: 0 auto 20px;
}

.timeline-card.devastating .timeline-number {
    background: linear-gradient(135deg, #dc2626, #f97316);
}

.timeline-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.timeline-value {
    font-size: 28px;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 8px;
}

.timeline-card.devastating .timeline-value {
    color: #fca5a5;
}

.timeline-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.timeline-arrow {
    font-size: 24px;
    color: var(--primary);
    font-weight: 900;
}

.impact-solution {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 20px 25px;
    margin: 30px 0;
}

.solution-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.solution-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
}

.solution-left h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 5px;
}

.solution-left p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.solution-right {
    text-align: center;
}

.solution-value {
    font-size: 28px;
    font-weight: 900;
    color: #22c55e;
    line-height: 1;
}

.solution-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
}

.impact-cta-new {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 25px 30px;
}

.cta-content h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
}

.cta-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.btn-cta-new {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient);
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-cta-new:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
}

/* ===== CTA SECTION NEW ===== */
.cta-section-new {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(30, 41, 59, 0.9));
    position: relative;
    overflow-x: hidden;
}

.cta-section-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-hero {
    text-align: center;
    margin-bottom: 60px;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 107, 53, 0.2);
    color: var(--primary);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.cta-hero h2 {
    font-size: 36px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-hero p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.cta-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.cta-form-new {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 40px;
}

.form-header {
    margin-bottom: 30px;
}

.form-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.form-header p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

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

.form-field {
    margin-bottom: 20px;
}

.form-field label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--white);
    font-size: 16px;
    transition: var(--transition);
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.btn-submit-new {
    width: 100%;
    background: var(--gradient);
    border: none;
    border-radius: 15px;
    padding: 0;
    margin: 30px 0 20px;
    cursor: pointer;
    transition: var(--transition);
    overflow: hidden;
}

.btn-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px;
    color: white;
    font-weight: 700;
    font-size: 16px;
}

.btn-submit-new:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

.form-security {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    text-align: center;
    justify-content: center;
}

.cta-benefits {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 25px;
    padding: 40px;
}

.benefits-header {
    margin-bottom: 30px;
}

.benefits-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: var(--transition);
}

.benefit-item:hover {
    border-color: var(--primary);
    background: rgba(255, 107, 53, 0.1);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white !important;
    flex-shrink: 0;
}

.benefit-icon i {
    color: white !important;
}

.benefit-text h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 5px;
}

.benefit-text p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.benefit-item.trial-highlight {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 140, 0, 0.05));
    border-color: rgba(255, 107, 53, 0.3);
    position: relative;
}

.benefit-item.trial-highlight::before {
    content: 'GRATUITO';
    position: absolute;
    top: -8px;
    right: 15px;
    background: var(--gradient);
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 10px;
    letter-spacing: 0.5px;
}

.benefit-item.trial-highlight:hover {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(255, 140, 0, 0.1));
}

.simulator-inputs {
    display: grid;
    gap: 20px;
}

.input-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 15px;
}

.input-group i {
    color: var(--primary);
}

.slider-wrapper {
    position: relative;
    margin-bottom: 5px;
}

input[type="range"] {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    outline: none;
    -webkit-appearance: none;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    background: var(--gradient);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(255, 107, 53, 0.5);
}

input[type="range"]::-moz-range-thumb {
    width: 24px;
    height: 24px;
    background: var(--gradient);
    border-radius: 50%;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 10px rgba(255, 107, 53, 0.5);
}

/* iOS specific fixes */
input[type="range"] {
    -webkit-appearance: none;
    touch-action: none;
}

input[type="range"]:focus {
    outline: none;
}

.slider-value {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin-top: 10px;
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: var(--gray-light);
    margin-top: 8px;
    padding: 0 5px;
}

.simulator-results {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.result-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
}

.result-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.result-card.highlight {
    background: rgba(255, 107, 53, 0.1);
    border-color: var(--primary);
}

.result-card.success {
    background: rgba(34, 197, 94, 0.1);
    border-color: #22c55e;
}

.result-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.result-card.success .result-icon {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

.result-label {
    font-size: 12px;
    color: var(--gray-light);
    margin-bottom: 5px;
}

.result-value {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
}

.result-card.success .result-value {
    color: #22c55e;
}

.roi-note-wrapper {
    max-width: 1100px;
    margin: 20px auto 0;
}

.roi-note {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    padding: 12px 18px;
    border-radius: 10px;
    font-size: 12px;
    color: var(--gray-light);
}

.roi-note i {
    color: var(--primary);
    flex-shrink: 0;
}

.roi-note p {
    margin: 0;
}

/* ===== BIG NUMBERS ===== */
.numbers-section {
    background: var(--dark-alt);
    overflow-x: hidden;
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.number-card {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: var(--transition);
}

.number-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.number-display {
    display: flex;
    align-items: baseline;
    gap: 8px;
    justify-content: center;
    margin-bottom: 15px;
}

.number-value {
    font-size: 56px;
    font-weight: 900;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    line-height: 1;
}

.number-suffix {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
}

.number-label {
    font-size: 14px;
    color: var(--gray-light);
}

.numbers-footnote {
    text-align: center;
    color: var(--gray-light);
    font-size: 14px;
    margin-top: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.numbers-footnote strong {
    color: var(--primary);
}

/* ===== CLIENTS ===== */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 20px;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.client-logo {
    aspect-ratio: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.client-logo:hover {
    border-color: var(--primary);
    transform: scale(1.05);
    box-shadow: var(--shadow);
}

.client-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0.8);
    transition: var(--transition);
}

.client-logo:hover img {
    filter: brightness(1);
}

/* ===== TESTIMONIALS (Redesign) ===== */
.testimonials-section {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
    overflow-x: hidden;
    padding: 20px 0;
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    display: block !important;
    visibility: visible !important;
}

.testimonial-track {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial {
    min-width: 100%;
    padding: 0 20px;
    display: block !important;
    visibility: visible !important;
}

.testimonial-card-new {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid var(--primary);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    flex-shrink: 0;
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
    line-height: 1.2;
}

.testimonial-role {
    font-size: 18px;
    color: var(--primary);
    font-weight: 600;
    margin-top: 8px;
}

.testimonial-quote {
    position: relative;
    padding-left: 30px;
}

.quote-icon-new {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 24px;
    color: var(--primary);
}

.quote-text {
    font-size: 20px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.95);
    font-style: italic;
    font-weight: 400;
    letter-spacing: 0.2px;
}

.testimonial-nav {
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
    visibility: visible !important;
    opacity: 1 !important;
}

.nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition);
    display: flex !important;
    align-items: center;
    justify-content: center;
    visibility: visible !important;
}

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

.nav-dots {
    display: flex !important;
    gap: 10px;
    visibility: visible !important;
}

.nav-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
    display: block !important;
    visibility: visible !important;
}

.nav-dots span.active {
    background: var(--primary);
    width: 30px;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}

.nav-dots span.active::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    animation: progress 10s linear;
}

@keyframes progress {
    from { width: 0%; }
    to { width: 100%; }
}

/* ===== ABOUT ===== */
.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-text {
    margin-bottom: 50px;
}

.about-text h2 {
    font-size: 42px;
    margin: 20px 0;
}

.about-subtitle {
    font-size: 20px;
    color: var(--gray-light);
    margin-bottom: 20px;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.partner-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    transition: var(--transition);
}

.partner-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.partner-card img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
}

.partner-card span {
    font-weight: 600;
    font-size: 16px;
}

.einstein-card {
    grid-column: span 2;
    padding: 25px;
}

.einstein-logo {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    filter: brightness(1.1);
}

/* ===== CTA ===== */
.cta-section {
    background: linear-gradient(135deg, var(--dark-alt) 0%, var(--dark) 50%, var(--dark-alt) 100%);
    border-top: 1px solid rgba(255, 107, 53, 0.2);
    border-bottom: 1px solid rgba(255, 107, 53, 0.2);
    padding: 100px 0;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-form {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 15px;
}

.form-group {
    width: 100%;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.btn-submit {
    width: 100%;
    margin-top: 10px;
    background: var(--gradient);
    color: var(--white);
    font-size: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-submit:hover {
    border-color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.form-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    font-size: 13px;
    opacity: 0.9;
}

.contact-alternative {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
}

.contact-alternative p {
    font-size: 16px;
    margin: 0;
    opacity: 0.9;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.contact-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark-alt);
    padding: 60px 0 30px;
    overflow-x: hidden;
    width: 100%;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand img {
    height: 40px;
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--gray-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--gradient);
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 18px;
    margin-bottom: 20px;
}

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

.footer-links a {
    color: var(--gray-light);
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-contact p {
    color: var(--gray-light);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: var(--gray-light);
    font-size: 14px;
    margin-bottom: 10px;
}

.scientific-ref {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.scientific-ref i {
    color: var(--primary);
}

/* ===== RESPONSIVE ===== */

/* Tablets & Medium Screens */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .hero-content { 
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-image { 
        order: -1;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .section-title {
        font-size: 40px;
    }
    
    .features-grid { 
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .clients-grid { 
        grid-template-columns: repeat(5, 1fr);
        gap: 15px;
    }
    
    .numbers-grid { 
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .partners-grid { 
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .footer-content {
        grid-template-columns: 2fr 1fr;
        gap: 40px;
    }
}

/* Mobile & Small Tablets */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    /* Navigation */
    .nav-container {
        padding: 10px 20px;
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        /* position: relative removido - criava contexto de empilhamento */
    }
    
    .nav-logo {
        order: 0;
        flex-shrink: 0;
    }
    
    .nav-logo img {
        height: 50px;
    }
    
    .navbar.scrolled .nav-logo img {
        height: 45px;
    }
    
    .nav-menu { 
        display: none;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        height: 100dvh !important; /* Dynamic viewport height para iOS */
        background: rgba(10, 10, 10, 0.97) !important;
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 100px 30px 40px;
        gap: 8px;
        z-index: 999999 !important; /* Z-INDEX MÁXIMO */
        opacity: 0;
        -webkit-transition: opacity 0.3s ease;
        transition: opacity 0.3s ease;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
    }
    
    .nav-menu.active {
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: all !important;
        transform: translateX(0) !important;
        z-index: 999999 !important; /* Z-INDEX MÁXIMO */
    }
    
    /* Botão X para fechar - só mobile */
    .menu-close {
        display: flex !important;
        position: absolute;
        top: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
        border: 2px solid rgba(255, 107, 53, 0.5);
        color: var(--white);
        font-size: 24px;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease;
        z-index: 1000001 !important; /* ACIMA DO HAMBURGER */
    }
    
    .menu-close:active {
        background: var(--gradient);
        border-color: var(--primary);
        -webkit-transform: rotate(90deg) scale(0.9);
        transform: rotate(90deg) scale(0.9);
        box-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
    }
    
    .nav-menu li {
        width: 100%;
        max-width: 400px;
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }
    
    .nav-menu.active li {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    
    /* Delay progressivo para cada item */
    .nav-menu.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu.active li:nth-child(2) { transition-delay: 0.15s; }
    .nav-menu.active li:nth-child(3) { transition-delay: 0.2s; }
    .nav-menu.active li:nth-child(4) { transition-delay: 0.25s; }
    .nav-menu.active li:nth-child(5) { transition-delay: 0.3s; }
    
    .nav-link {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        padding: 18px 24px;
        border-radius: 12px;
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease;
        width: 100%;
        text-align: center;
        border: 2px solid rgba(255, 255, 255, 0.1);
        font-size: 18px;
        font-weight: 600;
        background: rgba(255, 255, 255, 0.05);
        position: relative;
        overflow: hidden;
    }
    
    .nav-link::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 4px;
        background: var(--gradient);
        -webkit-transform: scaleY(0);
        transform: scaleY(0);
        -webkit-transition: transform 0.3s ease;
        transition: transform 0.3s ease;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .nav-link:active {
        background: rgba(255, 107, 53, 0.3);
        border-color: rgba(255, 107, 53, 0.6);
        -webkit-transform: scale(0.98);
        transform: scale(0.98);
    }
    
    .nav-link:active::before {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }
    
    .nav-cta {
        margin-top: 16px;
        text-align: center;
        background: var(--gradient);
        border: 2px solid var(--primary);
        justify-content: center;
        box-shadow: 0 8px 24px rgba(255, 107, 53, 0.5);
        font-size: 18px;
        padding: 18px 24px;
    }
    
    .nav-cta::before {
        display: none;
    }
    
    .nav-cta:active {
        -webkit-transform: scale(0.95);
        transform: scale(0.95);
        box-shadow: 0 4px 16px rgba(255, 107, 53, 0.6);
    }
    
    
    @keyframes fadeIn {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }
    
    @keyframes fadeOut {
        from {
            opacity: 1;
        }
        to {
            opacity: 0;
        }
    }
    
    .hamburger { 
        display: flex;
        z-index: 1000000 !important; /* SEMPRE ACIMA DE TUDO */
        position: relative;
        order: 2;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }
    
    .hamburger.active {
        background: var(--gradient);
        border-color: var(--primary);
        position: relative;
        z-index: 1000000 !important; /* SEMPRE ACIMA DE TUDO */
        box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4),
                    0 0 0 2px rgba(255, 107, 53, 0.2);
    }
    
    .hamburger span {
        transition: all 0.3s ease-in-out;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(-20px);
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    .language-selector {
        position: relative !important;
        z-index: 1000001 !important; /* ACIMA DO HAMBURGER */
        order: 1;
        margin-left: auto;
        margin-right: 10px;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .lang-dropdown-btn {
        min-width: 70px;
        padding: 6px 10px;
        font-size: 13px;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .current-lang-flag {
        font-size: 16px;
    }
    
    .current-lang-code {
        font-size: 12px;
    }
    
    .lang-dropdown-menu {
        right: 10px; /* Ajustado para mobile */
        min-width: 160px;
        top: 60px; /* Navbar menor no mobile */
    }
    
    .lang-option {
        padding: 8px 10px;
    }
    
    .lang-flag {
        font-size: 18px;
    }
    
    .lang-name {
        font-size: 13px;
    }
    
    /* Hero Section */
    .hero {
        padding-top: 100px;
        min-height: auto;
        padding-bottom: 60px;
    }
    
    .hero-title { 
        font-size: 36px;
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-stats-inline {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .stat-inline {
        flex: 1;
        min-width: calc(33.333% - 10px);
    }
    
    .stat-inline strong {
        font-size: 24px;
    }
    
    .stat-inline span {
        font-size: 11px;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 12px;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 15px;
    }
    
    .floating-card {
        display: none;
    }
    
    .hero-image {
        display: block;
    }
    
    .hero-logo-wrapper {
        padding: 20px;
    }
    
    .hero-logo-large {
        max-width: 350px;
    }
    
    .hero-badge-group {
        margin-top: 25px;
        gap: 10px;
    }
    
    .floating-badge {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .floating-badge i {
        font-size: 16px;
    }
    
    /* Sections */
    .section {
        padding: 60px 0;
    }
    
    .section-title { 
        font-size: 32px;
        line-height: 1.3;
    }
    
    .section-subtitle {
        font-size: 16px;
        line-height: 1.6;
    }
    
    .section-badge {
        font-size: 12px;
        padding: 5px 12px;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    /* Divisores harmônicos mobile */
    .section-divider {
        margin: 40px 0;
    }
    
    /* Risk Section */
    .risk-grid { 
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .risk-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
    
    /* Impact Analysis */
    .impact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .impact-conclusion {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .risk-card {
        padding: 30px 20px;
    }
    
    .risk-value {
        font-size: 48px;
    }
    
    /* Solution Section */
    .workflow { 
        flex-direction: column;
        gap: 15px;
    }
    
    .workflow-arrow { 
        transform: rotate(90deg);
    }
    
    .workflow-item {
        min-width: 100%;
        padding: 20px;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .feature-header h3 {
        font-size: 20px;
    }
    
    /* Avatar Section */
    .avatar-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .feature-title-large {
        font-size: 28px;
    }
    
    .feature-description-large {
        font-size: 18px;
    }
    
    /* Transition Banner */
    .transition-banner {
        margin: 40px 0;
        padding: 30px 20px;
    }
    
    .banner-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .banner-text {
        font-size: 28px;
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .arrow {
        font-size: 36px;
        transform: rotate(90deg);
    }
    
    /* Semaphore Section */
    .semaphore-section {
        margin: 50px 20px;
        padding: 0 10px;
    }
    
    .semaphore-content-reverse {
        grid-template-columns: 1fr;
        gap: 30px;
        display: flex;
        flex-direction: column;
    }
    
    .semaphore-images {
        order: 2;
        max-width: 100%;
        align-items: center;
    }
    
    .semaphore-img {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .semaphore-text {
        order: 1;
        padding: 10px;
        display: flex;
        flex-direction: column;
    }
    
    .feature-title-inline {
        order: 1;
    }
    
    .feature-subtitle {
        order: 2;
    }
    
    .feature-description-large {
        order: 3;
    }
    
    .traffic-lights-grid {
        order: 4;
        margin-top: 30px;
    }
    
    .semaphore-impact {
        order: 5;
    }
    
    .traffic-lights-grid {
        gap: 12px;
    }
    
    .traffic-item {
        padding: 15px 20px;
        gap: 15px;
    }
    
    .traffic-circle {
        width: 40px;
        height: 40px;
    }
    
    .semaphore-impact {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .semaphore-impact p {
        font-size: 16px;
    }
    
    /* Feature Showcases */
    .feature-showcase,
    .feature-showcase.reverse {
        grid-template-columns: 1fr;
        gap: 30px;
        margin: 50px 0;
    }
    
    .feature-showcase.reverse .showcase-text,
    .feature-showcase.reverse .showcase-image {
        order: 0;
    }
    
    .showcase-title {
        font-size: 26px;
    }
    
    .showcase-description {
        font-size: 16px;
    }
    
    .showcase-list li {
        font-size: 15px;
    }
    
    /* ROI Section */
    .roi-simulator-new {
        padding: 30px 20px;
        border-radius: 20px;
    }
    
    .simulator-body {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .simulator-header h3 {
        font-size: 24px;
    }
    
    .simulator-inputs {
        gap: 25px;
    }
    
    /* Cameras Section */
    .manufacturers-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        overflow-x: hidden;
        width: 100%;
    }
    
    .models-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        width: 100%;
        overflow-x: hidden;
    }
    
    .manufacturer-section {
        padding: 20px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .model-card {
        padding: 10px 8px;
        min-width: 0;
        overflow: hidden;
    }
    
    .model-card h5 {
        font-size: 13px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: none;
    }
    
    .model-card p {
        font-size: 10px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .input-group label {
        font-size: 14px;
    }
    
    /* Cameras Section Mobile */
    .models-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        overflow-x: hidden;
    }
    
    .model-card {
        font-size: 13px;
        min-width: 0;
    }
    
    .model-card h5 {
        font-size: 13px;
        word-wrap: break-word;
    }
    
    .model-card p {
        font-size: 10px;
        word-wrap: break-word;
    }
    
    .manufacturer-image {
        min-height: 120px;
    }
    
    .manufacturer-image img {
        max-height: 100px;
        align-items: center;
    }
    
    .manufacturer-section.highlight-wireless {
        border-width: 1px;
    }
    
    /* Cameras Benefit Mobile */
    .cameras-benefit {
        flex-direction: column;
        padding: 25px 20px;
        text-align: center;
        gap: 20px;
    }
    
    .benefit-text {
        text-align: center;
    }
    
    .benefit-text h4 {
        font-size: 18px;
    }
    
    .benefit-text p {
        font-size: 14px;
    }
    
    .integration-type {
        font-size: 13px;
        padding: 10px;
        gap: 10px;
    }
    
    .integration-type:hover {
        transform: translateX(0);
    }
    
    .benefit-highlight {
        font-size: 13px;
        padding: 12px;
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    /* Devastating Impact New Mobile */
    .devastating-impact-new {
        padding: 30px 20px;
        margin: 40px 0;
    }
    
    .impact-title-new {
        font-size: 28px;
    }
    
    .impact-timeline {
        flex-direction: column;
        gap: 15px;
    }
    
    .timeline-arrow {
        transform: rotate(90deg);
        font-size: 20px;
    }
    
    .timeline-card {
        min-width: auto;
        width: 100%;
        max-width: 300px;
    }
    
    .impact-solution {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .solution-left {
        flex-direction: column;
        text-align: center;
    }
    
    /* CTA Section New Mobile */
    .cta-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .cta-hero h2 {
        font-size: 28px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .cta-form-new,
    .cta-benefits {
        padding: 30px 20px;
    }
    
    /* Comparative Section Mobile */
    .comparative-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .feature-item {
        padding: 20px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .feature-content h3 {
        font-size: 18px;
    }
    
    /* Avatar Section Mobile */
    .avatar-title {
        font-size: 28px;
        flex-direction: column;
        gap: 10px;
    }
    
    .avatar-title i {
        font-size: 32px;
    }
    
    .avatar-subtitle {
        font-size: 16px;
    }
    
    /* Solution Section Mobile */
    .journey-hook {
        font-size: 18px;
        padding: 15px;
    }
    
    .slider-value {
        font-size: 18px;
    }
    
    .simulator-results { 
        gap: 12px;
    }
    
    .result-card {
        padding: 18px;
    }
    
    .result-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    .result-value {
        font-size: 22px;
    }
    
    .roi-note {
        font-size: 11px;
        padding: 10px 15px;
    }
    
    /* Numbers */
    .numbers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .number-card {
        padding: 30px 15px;
    }
    
    .number-value {
        font-size: 42px;
    }
    
    /* Clients */
    .clients-grid { 
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }
    
    .client-logo {
        padding: 10px;
    }
    
    .client-logo img {
        width: 55px;
        height: 55px;
        object-fit: contain;
    }
    
    /* Images */
    .solution-image {
        margin-top: 40px;
    }
    
    .report-img {
        border-radius: 15px;
    }
    
    .image-badge {
        position: static;
        transform: none;
        margin-top: 15px;
        width: 100%;
        justify-content: center;
    }
    
    /* Testimonials */
    .testimonials-slider {
        padding: 10px 0;
    }
    
    .testimonial {
        padding: 0 10px;
    }
    
    .testimonial-content {
        padding: 40px 25px 25px;
        border-radius: 12px;
        margin-bottom: 20px;
    }
    
    .testimonial-content p {
        font-size: 17px;
        line-height: 1.8;
    }
    
    .quote-icon {
        font-size: 40px;
        top: 12px;
        left: 15px;
    }
    
    .testimonial-author {
        flex-direction: row;
        padding: 15px;
        gap: 15px;
    }
    
    .testimonial-author img {
        width: 70px;
        height: 70px;
        flex-shrink: 0;
    }
    
    .testimonial-author h4 {
        font-size: 18px;
    }
    
    .testimonial-author p {
        font-size: 14px;
    }
    
    /* Footer */
    .footer-content { 
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-links ul,
    .footer-contact {
        text-align: center;
    }
    
    .footer-contact p {
        justify-content: center;
    }
    
    /* CTA Section */
    .cta-content h2 {
        font-size: 36px;
    }
    
    .cta-content p {
        font-size: 18px;
    }
    
    /* About Section */
    .about-text h2 {
        font-size: 32px;
    }
    
    .about-subtitle {
        font-size: 18px;
    }
    
    /* Scroll Indicator */
    .scroll-indicator {
        bottom: 15px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-logo img {
        height: 45px;
    }
    
    /* Menu mobile em telas pequenas */
    .nav-menu {
        padding: 80px 20px 30px;
    }
    
    .nav-link {
        padding: 16px 20px;
        font-size: 17px;
    }
    
    .nav-cta {
        font-size: 17px;
        padding: 16px 20px;
    }
    
    .hero-title { 
        font-size: 28px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .hero-stats-inline { 
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }
    
    .stat-inline {
        min-width: 100%;
        text-align: center;
        padding: 15px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 12px;
    }
    
    .hero-cta { 
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        padding: 16px 24px;
        font-size: 16px;
    }
    
    .hero-logo-large {
        max-width: 280px;
    }
    
    /* Risk Section */
    .risk-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    /* Impact Analysis */
    .impact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .impact-conclusion {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .impact-title {
        font-size: 24px;
        flex-direction: column;
        gap: 10px;
    }
    
    .impact-value {
        font-size: 28px;
    }
    
    .hero-badge-group {
        flex-direction: column;
        width: 100%;
        align-items: center;
    }
    
    .floating-badge {
        width: 100%;
        max-width: 320px;
        justify-content: center;
        text-align: center;
    }
    
    .floating-badge.roi-link {
        width: 100%;
        max-width: 320px;
    }
    
    .risk-value {
        font-size: 40px;
    }
    
    .risk-unit {
        font-size: 24px;
    }
    
    .workflow-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    /* Avatar Real New - Small Mobile */
    .avatar-real-new {
        padding: 30px 15px;
        margin: 0;
    }
    
    .avatar-main-title {
        font-size: 24px;
    }
    
    .avatar-main-subtitle {
        font-size: 15px;
    }
    
    .concept-explanation h3 {
        font-size: 18px;
    }
    
    .concept-explanation p {
        font-size: 14px;
    }
    
    .concept-explanation {
        margin-bottom: 25px;
    }
    
    .showcase-visual {
        margin-bottom: 25px;
    }
    
    .visual-container {
        box-shadow: 0 8px 24px rgba(255, 107, 53, 0.25);
    }
    
    .avatar-benefits {
        gap: 12px;
        margin-bottom: 20px;
    }
    
    .benefit-card {
        padding: 12px;
        gap: 12px;
    }
    
    .benefit-content h4 {
        font-size: 16px;
    }
    
    /* Semaphore - Small Mobile */
    .semaphore-section {
        margin: 30px 10px;
        padding: 0;
    }
    
    .feature-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    .clients-grid { 
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
    }
    
    .client-logo {
        padding: 8px;
    }
    
    .client-logo img {
        width: 45px;
        height: 45px;
    }
    
    .numbers-grid {
        grid-template-columns: 1fr;
    }
    
    .number-value {
        font-size: 48px;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
    }
    
    .partner-card {
        min-height: 80px;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }
    
    .nav-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .nav-dots span {
        width: 8px;
        height: 8px;
    }
    
    .nav-dots span.active {
        width: 24px;
    }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
    .hero-title {
        font-size: 24px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .btn {
        padding: 14px 20px;
        font-size: 14px;
    }
    
    .risk-value {
        font-size: 36px;
    }
    
    .number-value {
        font-size: 42px;
    }
    
    /* CTA adjustments */
    .cta-content h2 {
        font-size: 28px;
        line-height: 1.3;
    }
    
    .cta-content p {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    /* About */
    .about-text h2 {
        font-size: 26px;
    }
    
    .about-subtitle {
        font-size: 16px;
    }
    
    /* Footer adjustments */
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-brand img {
        height: 35px;
    }
    
    .footer-bottom {
        padding-top: 20px;
    }
    
    .scientific-ref {
        flex-direction: column;
        gap: 5px;
        font-size: 11px;
    }
    
    /* Avatar Section */
    .avatar-text {
        padding: 10px;
    }
    
    .feature-icon-large {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
    
    .feature-title-large {
        font-size: 24px;
    }
    
    .feature-description-large {
        font-size: 16px;
    }
    
    .highlight-item {
        padding: 15px;
    }
    
    .highlight-item h4 {
        font-size: 15px;
    }
    
    .highlight-item p {
        font-size: 13px;
    }
    
    /* Transition Banner */
    .transition-banner {
        padding: 25px 15px;
    }
    
    .banner-text {
        font-size: 22px;
    }
    
    .arrow {
        font-size: 28px;
    }
    
    .banner-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
    
    /* Semaphore */
    .semaphore-section {
        margin: 40px 15px;
        padding: 0 5px;
    }
    
    .semaphore-text {
        padding: 0;
    }
    
    .traffic-item {
        padding: 15px;
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .traffic-circle {
        width: 45px;
        height: 45px;
    }
    
    .traffic-content {
        text-align: center;
    }
    
    .traffic-content h4 {
        font-size: 18px;
    }
    
    .traffic-content p {
        font-size: 14px;
    }
    
    .semaphore-impact {
        padding: 18px 15px;
    }
    
    .semaphore-impact p {
        font-size: 14px;
    }
    
    .semaphore-impact i {
        font-size: 24px;
    }
    
    /* Feature Title Inline */
    .feature-title-inline {
        font-size: 22px;
        flex-direction: column;
        align-items: start;
        gap: 10px;
    }
    
    .feature-title-inline i {
        font-size: 32px;
    }
    
    /* Einstein Logo */
    .einstein-card {
        grid-column: span 1;
    }
    
    .einstein-logo {
        max-height: 80px;
    }
    
    /* Workmap */
    .workmap-layout {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .workmap-text-card {
        padding: 25px 20px;
    }
    
    .workmap-title {
        font-size: 24px;
    }
    
    .workmap-subtitle {
        font-size: 18px;
    }
    
    .workmap-image-card {
        min-height: 200px;
    }
    
    /* CTA Form */
    .cta-form {
        padding: 30px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .contact-alternative {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    
    /* Feature Showcases Mobile */
    .feature-showcase,
    .feature-showcase.reverse {
        margin: 40px 0;
        gap: 25px;
    }
    
    .showcase-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .showcase-title {
        font-size: 22px;
    }
    
    .showcase-description {
        font-size: 15px;
    }
    
    .showcase-list li {
        font-size: 14px;
    }
    
    .showcase-list i {
        font-size: 16px;
    }
    
    /* Testimonials Small Mobile */
    .testimonial-card-new {
        padding: 30px 20px;
    }
    
    .testimonial-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding-bottom: 20px;
    }
    
    .testimonial-photo {
        width: 100px;
        height: 100px;
    }
    
    .testimonial-name {
        font-size: 22px;
    }
    
    .testimonial-role {
        font-size: 16px;
    }
    
    .testimonial-quote {
        padding-left: 0;
    }
    
    .quote-icon-new {
        position: relative;
        left: 0;
        margin-bottom: 10px;
        display: block;
    }
    
    .quote-text {
        font-size: 16px;
        line-height: 1.8;
    }
    
    .testimonial-nav {
        gap: 15px;
    }
    
    .nav-btn {
        width: 42px;
        height: 42px;
    }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        padding-top: 80px;
        padding-bottom: 40px;
    }
    
    .section {
        padding: 40px 0;
    }
}

/* Touch Device Improvements */
@media (hover: none) and (pointer: coarse) {
    .btn {
        min-height: 44px;
    }
    
    .nav-link {
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    .lang-btn {
        min-height: 44px;
        min-width: 44px;
    }
}

/* ===== ANIMATIONS (Sutis e Elegantes) ===== */
[data-aos] {
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(20px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-20px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(20px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.96);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

[data-aos="flip-up"] {
    transform: perspective(1000px) rotateX(8deg);
}

[data-aos="flip-up"].aos-animate {
    transform: perspective(1000px) rotateX(0);
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    [data-aos] {
        opacity: 1;
        transform: none !important;
    }
}


/* Mobile adjustments for new elements */
@media (max-width: 768px) {
    .banner-content-inline {
        flex-direction: column;
        gap: 10px;
        padding: 15px 25px;
    }
    
    .banner-from,
    .banner-to {
        font-size: 20px;
    }
    
    .banner-arrow-inline {
        transform: rotate(90deg);
        font-size: 24px;
    }
    
    .solution-stats {
        gap: 20px;
    }
    
    .stat-highlight {
        padding: 15px 25px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .process-item {
        flex-direction: column;
        gap: 15px;
    }
    
    .arrow-connector {
        transform: rotate(90deg);
        font-size: 28px;
        padding: 10px;
    }
    
    /* Workmap Section - Mobile */
    .workmap-section {
        margin: 50px 20px;
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .banner-from,
    .banner-to {
        font-size: 18px;
    }
    
    .stat-highlight {
        padding: 12px 20px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    /* Workmap Section - Small Mobile */
    .workmap-section {
        margin: 30px 15px;
        padding: 0 5px;
    }
}

@media (max-width: 360px) {
    .banner-content-inline {
        padding: 12px 20px;
    }
    
    .banner-from,
    .banner-to {
        font-size: 16px;
    }
    
    /* Workmap Section - Extra Small */
    .workmap-section {
        margin: 25px 10px;
        padding: 0;
    }
}

/* ===== WORKMAP SECTION NEW ===== */
.workmap-section-new {
    margin: 80px auto;
    max-width: 1400px;
    width: 100%;
    padding: 0 20px;
    overflow-x: hidden;
    box-sizing: border-box;
}

.workmap-header {
    text-align: center;
    margin-bottom: 50px;
}

.workmap-header .section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.workmap-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.workmap-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.workmap-card img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    transition: var(--transition);
}

.card-overlay i {
    font-size: 32px;
    color: var(--primary);
}

.card-overlay span {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
}

.workmap-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.3);
    border-color: var(--primary);
}

.workmap-card:hover .card-overlay {
    opacity: 1;
}

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

/* Image Modal */
.image-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from { transform: scale(0.8); }
    to { transform: scale(1); }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: var(--white);
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--primary);
}

/* Workmap Mobile */
@media (max-width: 768px) {
    .workmap-section-new {
        margin: 50px 20px;
        padding: 0 10px;
    }
    
    .workmap-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .modal-content {
        max-width: 95%;
    }
    
    .modal-close {
        top: 10px;
        right: 20px;
        font-size: 30px;
    }
}

@media (max-width: 480px) {
    .workmap-section-new {
        margin: 30px 15px;
        padding: 0 5px;
    }
}

@media (max-width: 360px) {
    .workmap-section-new {
        margin: 25px 10px;
        padding: 0;
    }
}

/* Contact Alternative Inline */
.contact-alternative-inline {
    text-align: center;
    margin-top: 30px;
}

.contact-alternative-inline p {
    font-size: 16px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.contact-links-inline {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-link-inline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.contact-link-inline:hover {
    background: rgba(255, 107, 53, 0.2);
    border-color: var(--primary);
    transform: translateY(-2px);
}


/* ===== SCIENTIFIC BASE SECTION ===== */
.scientific-base-section {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(147, 51, 234, 0.05));
    padding: 60px 0;
    overflow-x: hidden;
}

.scientific-content {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
}

.scientific-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
}

.scientific-text h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.scientific-text p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.scientific-reference {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: rgba(59, 130, 246, 0.1);
    border-left: 4px solid #3b82f6;
    border-radius: 10px;
}

.scientific-reference i {
    color: #3b82f6;
    font-size: 20px;
    margin-top: 5px;
}

.scientific-reference cite {
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    line-height: 1.6;
}

/* Scientific Mobile */
@media (max-width: 768px) {
    .scientific-content {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
        gap: 25px;
    }
    
    .scientific-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }
    
    .scientific-text h3 {
        font-size: 24px;
    }
    
    .scientific-reference {
        flex-direction: column;
        text-align: left;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .scientific-base-section {
        padding: 40px 0;
    }
    
    .scientific-content {
        padding: 25px 15px;
    }
    
    .scientific-text h3 {
        font-size: 22px;
    }
    
    .scientific-reference cite {
        font-size: 14px;
    }
}

/* ===== KELVIN SERVICE SECTION ===== */
.kelvin-service-section {
    background: linear-gradient(180deg, var(--dark) 0%, var(--dark-alt) 50%, var(--dark) 100%);
    position: relative;
    overflow: hidden;
}

.kelvin-service-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at top, rgba(255, 107, 53, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

/* Service Hero */
.service-hero {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.service-badge-main {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 107, 53, 0.15);
    border: 2px solid rgba(255, 107, 53, 0.4);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
    animation: pulse-service 3s ease-in-out infinite;
}

@keyframes pulse-service {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.4); }
    50% { transform: scale(1.02); box-shadow: 0 0 15px 3px rgba(255, 107, 53, 0.15); }
}

@keyframes pulse-kelvin-badge {
    0%, 100% { 
        transform: scale(1); 
        box-shadow: 0 4px 15px rgba(255, 107, 53, 0.2),
                    0 0 20px rgba(138, 43, 226, 0.1),
                    0 0 30px rgba(239, 68, 68, 0.1);
    }
    50% { 
        transform: scale(1.02); 
        box-shadow: 0 6px 25px rgba(255, 107, 53, 0.3),
                    0 0 30px rgba(138, 43, 226, 0.2),
                    0 0 40px rgba(239, 68, 68, 0.15);
    }
}

.service-main-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
}

.service-main-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Service Grid */
.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

/* Service Cards */
.service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.2);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card.highlight {
    border: 2px solid var(--primary);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 255, 255, 0.03) 100%);
}

.service-card.highlight::before {
    transform: scaleX(1);
    background: var(--gradient-alt);
}

/* Service Card Header */
.service-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    transition: all 0.3s ease;
}

.service-icon.camera {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(255, 107, 53, 0.1));
    color: var(--primary);
}

.service-icon.consulting {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(34, 197, 94, 0.1));
    color: #22c55e;
}

.service-icon.training {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(59, 130, 246, 0.1));
    color: #3b82f6;
}

.service-icon.platform {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(168, 85, 247, 0.1));
    color: #a855f7;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-badges {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.badge-mini {
    font-size: 10px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.badge-mini.orange {
    background: rgba(255, 107, 53, 0.2);
    color: var(--primary);
    border: 1px solid rgba(255, 107, 53, 0.4);
}

.badge-mini.green {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.4);
}

.badge-mini.blue {
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.4);
}

.badge-mini.purple {
    background: rgba(168, 85, 247, 0.2);
    color: #a855f7;
    border: 1px solid rgba(168, 85, 247, 0.4);
}

.badge-mini.pink {
    background: rgba(236, 72, 153, 0.2);
    color: #ec4899;
    border: 1px solid rgba(236, 72, 153, 0.4);
}

/* Service Image */
.service-image {
    width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.service-image img {
    max-width: 100%;
    max-height: 140px;
    object-fit: contain;
    filter: brightness(0.95);
    transition: all 0.3s ease;
}

.service-card:hover .service-image {
    background: rgba(0, 0, 0, 0.3);
}

.service-card:hover .service-image img {
    filter: brightness(1.1);
    transform: scale(1.05);
}

/* Service Card Content */
.service-card-title {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--white);
    text-align: center;
}

.service-card-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.service-features li i {
    color: #22c55e;
    font-size: 12px;
    flex-shrink: 0;
}

.service-card:hover .service-features li {
    color: rgba(255, 255, 255, 0.95);
}

/* Package Banner */
.service-package {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(247, 147, 30, 0.1));
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.service-package::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    /* animation: rotate-gradient 10s linear infinite; */ /* Removido - pesado */
}

/* Gradiente rotativo removido - muito pesado */
/* @keyframes rotate-gradient {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
} */

.package-content {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.package-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--white);
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.package-text h3 {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 10px;
}

.package-text p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
}

.package-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.package-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.package-badge:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary);
    transform: translateY(-5px);
}

.package-badge i {
    font-size: 28px;
    color: var(--primary);
}

.package-badge span {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
}

/* Service CTA */
.service-cta {
    text-align: center;
    padding: 50px 40px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 1;
}

.service-cta h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--white);
}

.service-cta p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 35px;
}

.service-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-service-primary,
.btn-service-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-service-primary {
    background: var(--gradient);
    color: var(--white);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4);
}

.btn-service-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.6);
}

.btn-service-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-service-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1100px) {
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .service-main-title {
        font-size: 36px;
    }
    
    .service-main-subtitle {
        font-size: 16px;
    }
    
    .service-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 25px;
    }
    
    .package-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .package-text h3 {
        font-size: 24px;
    }
    
    .package-text p {
        font-size: 16px;
    }
    
    .package-badges {
        flex-direction: column;
        gap: 15px;
    }
    
    .service-cta h3 {
        font-size: 24px;
    }
    
    .service-cta p {
        font-size: 16px;
    }
    
    .service-cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-service-primary,
    .btn-service-secondary {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .service-main-title {
        font-size: 28px;
    }
    
    .service-badge-main {
        font-size: 12px;
        padding: 8px 16px;
    }
    
    .service-card {
        padding: 20px;
    }
    
    .service-image {
        height: 150px;
    }
    
    .package-icon {
        width: 60px;
        height: 60px;
        font-size: 30px;
    }
    
    .service-package {
        padding: 30px 20px;
    }
    
    .service-cta {
        padding: 40px 20px;
    }
}

