/* Reset e Variáveis */
:root {
    /* Cores principais - Azul reduzido */
    --primary-color: #1e3a8a;
    --primary-dark: #1e40af;
    --secondary-color: #3b82f6;
    --accent-color: #60a5fa;
    
    /* Novas cores de contraste */
    --accent-orange: #f59e0b;
    --accent-teal: #14b8a6;
    --accent-purple: #8b5cf6;
    --accent-cyan: #06b6d4;
    
    /* Backgrounds neutros - Cinza escuro em vez de azul */
    --dark-bg: #0a0a0a;
    --dark-bg-secondary: #1a1a1a;
    --dark-bg-tertiary: #242424;
    --dark-bg-lighter: #2d2d2d;
    --neutral-gray: #404040;
    
    /* Textos */
    --text-primary: #f1f5f9;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    --text-light: #ffffff;
    
    /* Gradientes variados */
    --gradient-1: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    --gradient-2: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    --gradient-3: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
    --gradient-orange: linear-gradient(135deg, #f59e0b 0%, #fb923c 100%);
    --gradient-teal: linear-gradient(135deg, #14b8a6 0%, #2dd4bf 100%);
    --gradient-purple: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
    
    /* Sombras */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
    --shadow-glow: 0 0 40px rgba(59, 130, 246, 0.3);
    --shadow-orange: 0 0 40px rgba(245, 158, 11, 0.3);
    --shadow-teal: 0 0 40px rgba(20, 184, 166, 0.3);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-secondary);
    background-color: #0f1419;
    overflow-x: hidden;
    overflow-y: auto;
}

/* Page Load Animation */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-teal) 0%, var(--accent-purple) 100%);
    transform-origin: left;
    animation: pageLoad 1.5s ease forwards;
    z-index: 9999;
}

@keyframes pageLoad {
    0% {
        transform: scaleX(0);
    }
    50% {
        transform: scaleX(0.7);
    }
    100% {
        transform: scaleX(1);
        opacity: 0;
    }
}

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

/* Navbar - Gradiente do Footer */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1.2rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border-bottom: 3px solid var(--accent-teal);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    padding: 0.8rem 0;
    box-shadow: 
        0 8px 40px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(20, 184, 166, 0.2);
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.98) 0%, rgba(30, 58, 138, 0.98) 100%);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.logo:visited {
    text-decoration: none;
}

.logo:hover {
    transform: translateY(-2px);
    filter: drop-shadow(0 4px 12px rgba(20, 184, 166, 0.4));
}

.logo img {
    height: 75px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.logo:hover img {
    transform: scale(1.08);
    filter: brightness(0) invert(1) drop-shadow(0 0 12px rgba(20, 184, 166, 0.6));
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-name {
    font-size: 2.8rem;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -0.5px;
    line-height: 1;
}

.logo-tagline {
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    line-height: 1;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    font-size: 1.05rem;
}

.nav-link:visited {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}

.nav-link:not(.btn-primary):hover {
    color: #ffffff;
}

.nav-link:not(.btn-primary):visited:hover {
    color: #ffffff;
}

.nav-link:not(.btn-primary)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-teal);
    transition: width 0.3s ease;
    border-radius: 3px;
}

.nav-link:not(.btn-primary):hover::after {
    width: 100%;
}

/* Botão Contato Sofisticado */
.nav-link.btn-primary {
    background: linear-gradient(135deg, var(--accent-teal) 0%, var(--accent-cyan) 100%);
    color: var(--text-light);
    padding: 0.875rem 2rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.05rem;
    box-shadow: 
        0 4px 15px rgba(20, 184, 166, 0.3),
        0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.nav-link.btn-primary:visited {
    color: var(--text-light);
    text-decoration: none;
}

.nav-link.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.nav-link.btn-primary:hover::before {
    left: 100%;
}

.nav-link.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 6px 25px rgba(20, 184, 166, 0.4),
        0 4px 12px rgba(0, 0, 0, 0.15);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    z-index: 1001;
    position: relative;
    padding: 10px;
    margin: -10px;
    pointer-events: auto;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Menu Mobile Backdrop */
.menu-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.menu-backdrop.active {
    opacity: 1;
    visibility: visible;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding-top: 140px;
    padding-bottom: 3rem;
    overflow: visible;
}

.hero .container {
    overflow: visible;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 15% 25%, rgba(20, 184, 166, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 85% 75%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
        linear-gradient(135deg, #1a1f2e 0%, #0f1419 100%);
    z-index: -1;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    height: 1000px;
    background: 
        radial-gradient(circle at 35% 35%, rgba(20, 184, 166, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 65% 65%, rgba(139, 92, 246, 0.10) 0%, transparent 40%);
    animation: neuralPulse 12s ease-in-out infinite;
}

/* Neural Network Pattern - Cérebro Pensante - Modernizado */
.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(0deg, transparent 0, transparent 50px, rgba(59, 130, 246, 0.02) 50px, rgba(59, 130, 246, 0.02) 51px),
        repeating-linear-gradient(90deg, transparent 0, transparent 50px, rgba(59, 130, 246, 0.02) 50px, rgba(59, 130, 246, 0.02) 51px);
    animation: gridMove 80s linear infinite;
}

@keyframes neuralPulse {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.7;
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.15);
        opacity: 1;
    }
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    width: 100%;
}

.hero-text {
    animation: fadeInUp 1s ease;
}

.hero-badge {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: rgba(59, 130, 246, 0.15);
    color: var(--accent-color);
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(59, 130, 246, 0.3);
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero-title {
    font-size: 3.75rem;
    font-weight: 900;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 2rem;
    letter-spacing: -1px;
}

.gradient-text {
    background: linear-gradient(135deg, #14b8a6 0%, #3b82f6 50%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 8s ease infinite;
    background-size: 200% 200%;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle-compact {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.8;
}

/* Value Icons - Visual Compacto */
.value-icons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.value-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-align: center;
}

.value-icon-circle {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background: rgba(22, 27, 34, 0.6);
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    cursor: pointer;
}

.value-icon-circle::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-teal), var(--accent-purple));
    opacity: 0;
    transition: all 0.5s ease;
    z-index: -1;
    filter: blur(15px);
}

.value-icon-circle::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.value-icon-circle:hover::after {
    opacity: 1;
}

.value-icon-item:nth-child(1) .value-icon-circle { border-color: var(--accent-orange); }
.value-icon-item:nth-child(2) .value-icon-circle { border-color: var(--accent-teal); }
.value-icon-item:nth-child(3) .value-icon-circle { border-color: var(--accent-purple); }
.value-icon-item:nth-child(4) .value-icon-circle { border-color: var(--accent-cyan); }

.value-icon-circle:hover {
    transform: translateY(-12px) scale(1.15) rotate(5deg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border-width: 2px;
}

.value-icon-item:nth-child(1) .value-icon-circle:hover { 
    background: var(--gradient-orange);
    border-color: var(--accent-orange);
    box-shadow: 
        0 20px 50px rgba(245, 158, 11, 0.4),
        0 0 40px rgba(245, 158, 11, 0.3);
}

.value-icon-item:nth-child(1) .value-icon-circle:hover::before {
    background: var(--accent-orange);
    opacity: 0.5;
}

.value-icon-item:nth-child(2) .value-icon-circle:hover { 
    background: var(--gradient-teal);
    border-color: var(--accent-teal);
    box-shadow: 
        0 20px 50px rgba(20, 184, 166, 0.4),
        0 0 40px rgba(20, 184, 166, 0.3);
}

.value-icon-item:nth-child(2) .value-icon-circle:hover::before {
    background: var(--accent-teal);
    opacity: 0.5;
}

.value-icon-item:nth-child(3) .value-icon-circle:hover { 
    background: var(--gradient-purple);
    border-color: var(--accent-purple);
    box-shadow: 
        0 20px 50px rgba(139, 92, 246, 0.4),
        0 0 40px rgba(139, 92, 246, 0.3);
}

.value-icon-item:nth-child(3) .value-icon-circle:hover::before {
    background: var(--accent-purple);
    opacity: 0.5;
}

.value-icon-item:nth-child(4) .value-icon-circle:hover { 
    background: linear-gradient(135deg, var(--accent-cyan) 0%, #06b6d4 100%);
    border-color: var(--accent-cyan);
    box-shadow: 
        0 20px 50px rgba(6, 182, 212, 0.4),
        0 0 40px rgba(6, 182, 212, 0.3);
}

.value-icon-item:nth-child(4) .value-icon-circle:hover::before {
    background: var(--accent-cyan);
    opacity: 0.5;
}

.value-icon-circle i {
    font-size: 2rem;
    color: var(--text-primary);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 1;
}

.value-icon-item:nth-child(1) .value-icon-circle i { color: var(--accent-orange); }
.value-icon-item:nth-child(2) .value-icon-circle i { color: var(--accent-teal); }
.value-icon-item:nth-child(3) .value-icon-circle i { color: var(--accent-purple); }
.value-icon-item:nth-child(4) .value-icon-circle i { color: var(--accent-cyan); }

.value-icon-circle:hover i {
    color: #ffffff;
    transform: scale(1.2) rotate(-5deg);
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.5));
}

.value-icon-item span {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    font-size: 1.05rem;
    position: relative;
    overflow: hidden;
}

.btn:visited {
    text-decoration: none;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-teal) 0%, var(--accent-cyan) 100%);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(20, 184, 166, 0.4);
}

.btn-primary:visited {
    color: #ffffff;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(20, 184, 166, 0.5);
}

.btn-secondary {
    background: rgba(22, 27, 34, 0.8);
    backdrop-filter: blur(10px);
    color: var(--text-primary);
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.btn-secondary:hover {
    background: rgba(22, 27, 34, 1);
    border-color: var(--accent-teal);
    color: var(--accent-teal);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 10px 25px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(20, 184, 166, 0.3);
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.hero-image {
    position: relative;
    height: auto;
    animation: fadeInRight 1s ease;
    overflow: visible;
}

/* Corporate Visual - Data Ecosystem */
.corporate-visual {
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 1rem 0;
    overflow: visible;
}

.data-ecosystem {
    width: 100%;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: auto 0;
    overflow: visible;
}

/* Data Layers - Glassmorphism Moderno Dark */
.data-layer {
    background: rgba(22, 27, 34, 0.7);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 6px 24px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.data-layer::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 16px;
    padding: 2px;
    background: linear-gradient(135deg, transparent 0%, transparent 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.data-layer:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(22, 27, 34, 0.85);
}

.layer-1 {
    border-left: 4px solid var(--accent-orange);
    animation: slideInRight 0.8s ease 0.2s backwards;
}

.layer-2 {
    border-left: 4px solid var(--accent-teal);
    animation: slideInRight 0.8s ease 0.4s backwards;
}

.layer-3 {
    border-left: 4px solid var(--accent-purple);
    animation: slideInRight 0.8s ease 0.6s backwards;
}

/* Animação de Nascimento/Emergência - Conceito Born */
@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(80px) scale(0.3);
        filter: blur(10px);
    }
    60% {
        transform: translateX(-5px) scale(1.05);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
        filter: blur(0);
    }
}

.layer-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-muted);
    margin-bottom: 0.875rem;
    text-align: center;
}

.layer-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.layer-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
    animation: textReveal 1s ease 0.8s backwards;
}

@keyframes textReveal {
    0% {
        opacity: 0;
        transform: translateY(20px);
        filter: blur(5px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

.layer-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.mini-tag {
    display: inline-block;
    padding: 0.4rem 0.9rem;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
    color: var(--accent-teal);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(20, 184, 166, 0.2);
    animation: tagEmerge 0.6s ease backwards;
    transition: all 0.3s ease;
}

.mini-tag:nth-child(1) { animation-delay: 1.2s; }
.mini-tag:nth-child(2) { animation-delay: 1.4s; }
.mini-tag:nth-child(3) { animation-delay: 1.6s; }

.mini-tag:hover {
    transform: translateY(-2px) scale(1.05);
    border-color: var(--accent-teal);
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.2) 0%, rgba(6, 182, 212, 0.2) 100%);
    box-shadow: 0 4px 12px rgba(20, 184, 166, 0.3);
}

@keyframes tagEmerge {
    0% {
        opacity: 0;
        transform: scale(0.5) translateY(10px);
    }
    70% {
        transform: scale(1.1) translateY(-2px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Data Sources Visual - Grid de 4 itens */
.data-sources-visual {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.625rem;
}

.source-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    padding: 0.75rem;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(251, 146, 60, 0.15) 100%);
    border: 2px solid var(--accent-orange);
    border-radius: 10px;
    transition: all 0.3s ease;
    animation: sourceEmerge 0.8s ease backwards;
}

.source-icon i {
    font-size: 1.5rem;
    color: var(--accent-orange);
    transition: all 0.3s ease;
}

.source-label {
    font-size: 0.625rem;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.source-icon:hover {
    transform: scale(1.05);
    background: var(--gradient-orange);
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
}

.source-icon:hover i,
.source-icon:hover .source-label {
    color: #ffffff;
}

.source-1 { animation-delay: 0.8s; }
.source-2 { animation-delay: 1s; }
.source-3 { animation-delay: 1.2s; }
.source-4 { animation-delay: 1.4s; }

@keyframes sourceEmerge {
    0% {
        opacity: 0;
        transform: scale(0) rotate(-180deg);
    }
    70% {
        transform: scale(1.15) rotate(10deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0);
    }
}

@keyframes energyBurst {
    0%, 100% {
        opacity: 0;
        transform: scale(0.8);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.2);
    }
}

/* Pulse Orgânico - Respiração de Vida */
@keyframes pulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
    }
    50% { 
        transform: scale(1.08);
        box-shadow: 0 8px 20px rgba(245, 158, 11, 0.5);
    }
}

/* Processing Icons - Visual */
.processing-icons {
    display: flex;
    gap: 0.625rem;
    justify-content: space-between;
}

.process-icon {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.375rem;
    padding: 0.75rem 0.625rem;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.15) 0%, rgba(13, 148, 136, 0.15) 100%);
    border: 2px solid var(--accent-teal);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.process-icon i {
    font-size: 1.25rem;
    color: var(--accent-teal);
}

.process-icon span {
    font-size: 0.625rem;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.process-icon:hover {
    background: var(--gradient-teal);
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(20, 184, 166, 0.3);
}

.process-icon:hover i,
.process-icon:hover span {
    color: #ffffff;
}

/* Intelligence Visual Enhanced */
.intelligence-visual-enhanced {
    display: flex;
    gap: 0.625rem;
    justify-content: space-between;
}

.insight-icon {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.375rem;
    padding: 0.75rem 0.625rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(124, 58, 237, 0.15) 100%);
    border: 2px solid var(--accent-purple);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.insight-icon i {
    font-size: 1.25rem;
    color: var(--accent-purple);
}

.insight-icon span {
    font-size: 0.625rem;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.insight-icon:hover {
    background: var(--gradient-purple);
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.3);
}

.insight-icon:hover i,
.insight-icon:hover span {
    color: #ffffff;
}

/* Intelligence Visual (antigo - manter para compatibilidade) */
.intelligence-visual {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.insight-item {
    flex: 1;
    background: linear-gradient(135deg, var(--accent-purple) 0%, #a78bfa 100%);
    padding: 1.25rem;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
    position: relative;
    overflow: hidden;
    animation: ideaBirth 3s ease-in-out infinite;
}

.insight-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    opacity: 0;
    animation: ideaSparkle 4s ease-in-out infinite;
}

.insight-item:nth-child(2)::before {
    animation-delay: 2s;
}

@keyframes ideaBirth {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
    }
    50% {
        box-shadow: 0 8px 20px rgba(139, 92, 246, 0.5);
    }
}

@keyframes ideaSparkle {
    0%, 100% {
        opacity: 0;
        transform: translate(0, 0);
    }
    50% {
        opacity: 0.4;
        transform: translate(25%, 25%);
    }
}

.insight-item i {
    font-size: 1.75rem;
    position: relative;
    z-index: 1;
    animation: iconGlow 2s ease-in-out infinite;
}

@keyframes iconGlow {
    0%, 100% {
        filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.5));
    }
    50% {
        filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.8));
    }
}

.insight-item span {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
}

/* Flow Connector - Sinapses Neurais */
.flow-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.75rem 0;
    position: relative;
}

.connector-line {
    width: 2px;
    height: 20px;
    background: linear-gradient(180deg, var(--accent-teal) 0%, var(--accent-purple) 100%);
    border-radius: 2px;
    position: relative;
    animation: synapseGrow 2s ease-out 1.2s backwards;
}

.connector-line::before,
.connector-line::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, var(--accent-teal) 0%, transparent 70%);
    border-radius: 50%;
    animation: synapsePulse 2s ease-in-out infinite;
}

.connector-line::before {
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
}

.connector-line::after {
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(circle, var(--accent-purple) 0%, transparent 70%);
    animation-delay: 1s;
}

@keyframes synapseGrow {
    0% {
        height: 0;
        opacity: 0;
    }
    100% {
        height: 30px;
        opacity: 1;
    }
}

@keyframes synapsePulse {
    0%, 100% { 
        transform: translateX(-50%) scale(1);
        opacity: 0.6;
    }
    50% { 
        transform: translateX(-50%) scale(1.5);
        opacity: 1;
    }
}

.flow-connector i,
.flow-arrow {
    font-size: 1.25rem;
    color: var(--accent-teal);
    margin-top: 0.25rem;
    animation: neuralFlow 2s ease-in-out infinite;
}

@keyframes neuralFlow {
    0%, 100% { 
        transform: translateY(0);
        opacity: 0.7;
    }
    50% { 
        transform: translateY(8px);
        opacity: 1;
    }
}

.floating-card {
    position: absolute;
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.floating-card i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.floating-card span {
    font-weight: 600;
    color: var(--text-primary);
}

.card-1 {
    top: 10%;
    left: 5%;
    animation: float 5s ease-in-out infinite;
}

.card-2 {
    top: 60%;
    right: 5%;
    animation: float 4s ease-in-out infinite 1s;
}

.card-3 {
    bottom: 15%;
    left: 10%;
    animation: float 6s ease-in-out infinite 2s;
}

/* Sections */
section {
    padding: 6rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4.5rem;
}

.section-tag {
    display: inline-block;
    padding: 0.625rem 1.25rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    color: var(--accent-color);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    border: 2px solid rgba(59, 130, 246, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Variações de cores nas tags */
.sobre .section-tag {
    background: rgba(245, 158, 11, 0.1);
    color: var(--accent-orange);
    border-color: rgba(245, 158, 11, 0.3);
}

.valor .section-tag {
    background: rgba(139, 92, 246, 0.1);
    color: var(--accent-purple);
    border-color: rgba(139, 92, 246, 0.3);
}

.servicos .section-tag {
    background: rgba(20, 184, 166, 0.1);
    color: var(--accent-teal);
    border-color: rgba(20, 184, 166, 0.3);
}

.solucoes .section-tag {
    background: rgba(6, 182, 212, 0.1);
    color: var(--accent-cyan);
    border-color: rgba(6, 182, 212, 0.3);
}

.tecnologias .section-tag {
    background: rgba(245, 158, 11, 0.1);
    color: var(--accent-orange);
    border-color: rgba(245, 158, 11, 0.3);
}

.cases .section-tag {
    background: rgba(139, 92, 246, 0.1);
    color: var(--accent-purple);
    border-color: rgba(139, 92, 246, 0.3);
}

.presenca-local .section-tag {
    background: rgba(20, 184, 166, 0.1);
    color: var(--accent-teal);
    border-color: rgba(20, 184, 166, 0.3);
}

.section-title {
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    letter-spacing: -1px;
    line-height: 1.2;
}

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

/* Sobre Section */
.sobre {
    background: 
        radial-gradient(circle at 10% 20%, rgba(20, 184, 166, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 40%),
        linear-gradient(180deg, #161b22 0%, #0f1419 100%);
    position: relative;
    overflow: hidden;
}

.sobre::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 25s ease-in-out infinite;
}

.sobre-intro {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.intro-text {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.intro-text.highlight {
    font-size: 1.3rem;
    color: var(--text-primary);
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(251, 146, 60, 0.15) 100%);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid var(--accent-orange);
    border-left: 5px solid var(--accent-orange);
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    font-weight: 600;
    backdrop-filter: blur(10px);
}

/* Liderança */
.lideranca {
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

.lideranca-content {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 3rem;
    align-items: start;
    background: rgba(255, 255, 255, 0.02);
    padding: 2.5rem;
    border-radius: 16px;
    border: 2px solid rgba(255, 255, 255, 0.05);
}

.lideranca-image {
    text-align: center;
}

.profile-placeholder {
    width: 200px;
    height: 200px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.profile-placeholder i {
    font-size: 5rem;
    color: var(--text-primary);
}

.lideranca-text h3 {
    font-size: 1.75rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.cargo {
    font-size: 1.05rem;
    color: var(--accent-teal);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.lideranca-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

/* Serviços */
.servicos {
    background: #0d1117;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.servico-card {
    background: rgba(22, 27, 34, 0.7);
    backdrop-filter: blur(20px);
    padding: 2.75rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.servico-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--accent-teal) 0%, var(--accent-purple) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.servico-card:hover::before {
    opacity: 1;
}

.servico-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(20, 184, 166, 0.5);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(20, 184, 166, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    background: rgba(22, 27, 34, 0.9);
}

.servico-icon {
    width: 75px;
    height: 75px;
    background: var(--gradient-1);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.75rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* Cores variadas nos ícones dos serviços */
.servico-card:nth-child(1) .servico-icon { background: var(--gradient-1); }
.servico-card:nth-child(2) .servico-icon { background: var(--gradient-teal); }
.servico-card:nth-child(3) .servico-icon { background: var(--gradient-orange); }
.servico-card:nth-child(4) .servico-icon { background: var(--gradient-purple); }
.servico-card:nth-child(5) .servico-icon { background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%); }
.servico-card:nth-child(6) .servico-icon { background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%); }
.servico-card:nth-child(7) .servico-icon { background: linear-gradient(135deg, #14b8a6 0%, #06b6d4 100%); }

.servico-card:hover .servico-icon {
    transform: translateY(-8px) rotate(8deg) scale(1.15);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.servico-icon i {
    font-size: 2.25rem;
    color: #ffffff;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.servico-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    letter-spacing: -0.3px;
}

.servico-card p {
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 1.25rem;
    color: var(--text-secondary);
}

.servico-list {
    list-style: none;
}

.servico-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.servico-list i {
    color: var(--accent-color);
    font-size: 0.75rem;
}

/* Servico Destaque */
.servico-destaque {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.servico-destaque i {
    color: var(--accent-teal);
    margin-top: 0.25rem;
    font-size: 0.9rem;
}

.servico-destaque span {
    font-size: 0.95rem;
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Tecnologias */
.tecnologias {
    padding: 5rem 0;
    background: #0a0a0a;
    position: relative;
}

.tecnologias::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(20, 184, 166, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(10, 10, 10, 0.8) 100%);
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tech-item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.tech-item:hover::before {
    width: 200px;
    height: 200px;
}

.tech-item:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: var(--shadow-lg), 0 0 20px rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.15);
}

.tech-item i {
    font-size: 3rem;
    color: var(--accent-color);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.tech-item:hover i {
    color: #ffffff;
    transform: scale(1.1);
}

.tech-item span {
    font-weight: 600;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
}

/* Cases de Sucesso */
.cases {
    background: 
        radial-gradient(circle at 85% 20%, rgba(139, 92, 246, 0.12) 0%, transparent 45%),
        radial-gradient(circle at 15% 80%, rgba(59, 130, 246, 0.12) 0%, transparent 45%),
        linear-gradient(180deg, #0f1419 0%, #0d1117 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.cases::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -20%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 35s ease-in-out infinite;
}

/* Case Principal */
.case-principal {
    max-width: 1000px;
    margin: 0 auto;
}

.case-principal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    margin-bottom: 2rem;
    padding: 3rem;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(30, 58, 138, 0.25);
    position: relative;
    overflow: hidden;
}

.case-principal-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(30%, -30%);
}

/* Logo Solis */
.solis-logo-wrapper {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.15);
    padding: 1.5rem 2.5rem;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
}

.solis-logo-wrapper:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.solis-logo-img {
    height: 70px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
}

/* Stats Inline */
.case-stats-inline {
    display: flex;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.stat-inline {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-inline strong {
    font-size: 1.75rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 0.25rem;
}

.stat-inline span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Case Intro Header */
.case-intro-header {
    background: rgba(22, 27, 34, 0.7);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 16px;
    margin-bottom: 2rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.case-intro-header h3 {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 700;
}

.case-intro-header .case-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
}

.case-principal-content {
    background: rgba(22, 27, 34, 0.6);
    backdrop-filter: blur(15px);
    padding: 3rem;
    border-radius: 16px;
    border: 2px solid rgba(255, 255, 255, 0.08);
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.case-intro {
    margin-bottom: 3rem;
}

.case-intro p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.case-section {
    margin-bottom: 3rem;
}

.case-section h4 {
    font-size: 1.4rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.case-section h4 i {
    color: var(--accent-orange);
}

.case-section:nth-child(3) h4 i { color: var(--accent-teal); }
.case-section:nth-child(4) h4 i { color: var(--accent-purple); }

.case-list {
    list-style: none;
    padding-left: 0;
}

.case-list li {
    padding: 1.25rem 1.75rem;
    margin-bottom: 1rem;
    background: rgba(13, 17, 23, 0.6);
    border-radius: 10px;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-left: 4px solid var(--accent-teal);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.case-section:nth-child(2) .case-list li { border-left-color: var(--accent-orange); }
.case-section:nth-child(3) .case-list li { border-left-color: var(--accent-teal); }

.case-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.case-result-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: rgba(13, 17, 23, 0.5);
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.case-result-item:hover {
    background: rgba(13, 17, 23, 0.8);
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.15);
}

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

.result-icon i {
    font-size: 1.5rem;
    color: var(--text-primary);
}

.case-result-item strong {
    display: block;
    color: var(--text-primary);
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.case-result-item p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.case-conclusao {
    margin-top: 3rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2) 0%, rgba(251, 146, 60, 0.2) 100%);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    border: 2px solid var(--accent-orange);
    border-left: 5px solid var(--accent-orange);
}

.case-conclusao p {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--text-primary);
    margin: 0;
    font-weight: 600;
}

/* Contato */
.contato {
    background: 
        radial-gradient(circle at 20% 30%, rgba(20, 184, 166, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        linear-gradient(180deg, #0d1117 0%, #0f1419 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.contato::before {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 30s ease-in-out infinite reverse;
}

.contato-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4.5rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

.contato-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.contato-form-wrapper {
    background: rgba(22, 27, 34, 0.8);
    backdrop-filter: blur(20px);
    padding: 3.5rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.contato-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-teal) 0%, var(--accent-purple) 100%);
}

.contato-form-wrapper h3 {
    font-size: 1.85rem;
    color: var(--text-primary);
    margin-bottom: 2.25rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.contato-info h2 {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.contato-info p {
    font-size: 1.125rem;
    margin-bottom: 3rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-method {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-method:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
}

.contact-icon i {
    font-size: 1.5rem;
    color: #ffffff;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.contact-details h4 {
    font-size: 1.125rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.contact-details p {
    font-size: 1rem;
    margin: 0.25rem 0;
}

.canais-oficiais {
    margin-top: 3rem;
}

.canais-oficiais h4 {
    font-size: 1.125rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.05);
}

.social-link i {
    font-size: 1.5rem;
    color: var(--accent-teal);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--accent-teal);
    transform: translateX(10px);
}

.social-link:hover i {
    transform: scale(1.1);
}

/* Form */
.form-group {
    margin-bottom: 1.75rem;
}

.form-group label {
    display: block;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.625rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1.125rem 1.25rem;
    background: rgba(13, 17, 23, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-teal);
    box-shadow: 
        0 0 0 4px rgba(20, 184, 166, 0.2),
        0 4px 12px rgba(0, 0, 0, 0.4);
    background: rgba(13, 17, 23, 0.8);
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
}

.form-message {
    margin-top: 1.25rem;
    padding: 1.125rem 1.5rem;
    border-radius: 12px;
    display: none;
    font-weight: 600;
    animation: slideDown 0.3s ease;
}

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

.form-message.success {
    background: rgba(34, 197, 94, 0.12);
    color: #16a34a;
    border: 2px solid rgba(34, 197, 94, 0.3);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.form-message.success::before {
    content: '\f058';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 1.25rem;
}

.form-message.error {
    background: rgba(239, 68, 68, 0.12);
    color: #dc2626;
    border: 2px solid rgba(239, 68, 68, 0.3);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.form-message.error::before {
    content: '\f06a';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 1.25rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
    padding: 4rem 0 2rem;
    border-top: 4px solid var(--accent-teal);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.footer-logo-name {
    font-size: 1.75rem;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -0.5px;
    line-height: 1;
}

.footer-logo-tagline {
    font-size: 0.65rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    line-height: 1;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icon {
    width: 50px;
    height: 50px;
    background: #ffffff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e3a8a;
    font-size: 1.4rem;
    transition: all 0.3s ease;
    padding: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.social-icon:hover {
    background: var(--accent-teal);
    color: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(20, 184, 166, 0.4);
}

.footer-column p {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

.footer-column h4 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

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

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1rem;
}

.footer-column ul li a:visited {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.footer-column ul li a:hover,
.footer-column ul li a:visited:hover {
    color: #ffffff;
    text-decoration: none;
}

.footer-column ul li i {
    color: var(--accent-teal);
    margin-right: 0.75rem;
    font-size: 1rem;
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:visited {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.footer-links a:hover,
.footer-links a:visited:hover {
    color: #ffffff;
    text-decoration: none;
}

/* Scroll to Top */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--accent-teal) 0%, var(--accent-cyan) 100%);
    border: none;
    border-radius: 50%;
    color: #ffffff;
    font-size: 1.4rem;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(20, 184, 166, 0.4);
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-top:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 8px 30px rgba(20, 184, 166, 0.5);
}

.scroll-top.visible {
    display: flex;
}

/* Páginas Legais (Termos de Uso e Política de Privacidade) */
.legal-page {
    padding: 200px 0 5rem;
    background: 
        radial-gradient(circle at 20% 30%, rgba(20, 184, 166, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
        repeating-linear-gradient(0deg, transparent 0, transparent 50px, rgba(59, 130, 246, 0.02) 50px, rgba(59, 130, 246, 0.02) 51px),
        repeating-linear-gradient(90deg, transparent 0, transparent 50px, rgba(59, 130, 246, 0.02) 50px, rgba(59, 130, 246, 0.02) 51px),
        linear-gradient(135deg, #1a1f2e 0%, #0f1419 100%);
    min-height: 100vh;
    position: relative;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(22, 27, 34, 0.8);
    backdrop-filter: blur(20px);
    padding: 4rem;
    border-radius: 24px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.legal-content h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 3px solid var(--accent-teal);
    animation: fadeInUp 0.6s ease;
}

.legal-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.legal-content p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.legal-content ul {
    margin: 1.5rem 0 1.5rem 2rem;
    list-style: disc;
}

.legal-content ul li {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

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

.legal-content a {
    color: var(--accent-teal);
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 2px solid rgba(20, 184, 166, 0.3);
}

.legal-content a:hover {
    color: var(--accent-cyan);
    border-bottom-color: var(--accent-cyan);
}

.contact-highlight {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.15) 0%, rgba(13, 148, 136, 0.15) 100%);
    backdrop-filter: blur(10px);
    border: 2px solid var(--accent-teal);
    border-left: 5px solid var(--accent-teal);
    border-radius: 12px;
    margin: 2rem 0;
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.contact-highlight i {
    font-size: 1.5rem;
    color: var(--accent-teal);
}

.legal-footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.legal-footer p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .legal-page {
        padding: 180px 0 3rem;
    }

    .legal-content {
        padding: 2.5rem 1.5rem;
    }

    .legal-content h1 {
        font-size: 2rem;
    }

    .legal-content h2 {
        font-size: 1.5rem;
    }

    .legal-footer {
        flex-direction: column;
        text-align: center;
    }
}

/* Login Page */
.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.login-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.login-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
}

.circle-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.15) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    animation: float 20s ease-in-out infinite;
}

.circle-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
    bottom: -80px;
    left: -80px;
    animation: float 15s ease-in-out infinite 5s;
}

.circle-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: float 18s ease-in-out infinite 10s;
}

.login-container {
    position: relative;
    z-index: 1;
    background: #ffffff;
    border-radius: 28px;
    padding: 0;
    max-width: 500px;
    width: 100%;
    box-shadow: 
        0 25px 70px rgba(0, 0, 0, 0.12),
        0 10px 40px rgba(0, 0, 0, 0.08);
    animation: fadeInUp 0.6s ease;
    overflow: hidden;
}

.login-brand {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
    padding: 3rem 3rem 2.5rem;
    text-align: center;
    position: relative;
}

.login-brand::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(30%, -30%);
}

.login-logo {
    display: inline-block;
    margin-bottom: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.login-logo:hover {
    transform: scale(1.08) rotate(2deg);
}

.login-logo img {
    height: 80px;
    width: auto;
    filter: brightness(0) invert(1) drop-shadow(0 8px 20px rgba(0, 0, 0, 0.3));
}

.login-brand-name {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -0.5px;
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.login-brand-tagline {
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1;
}

.login-header {
    padding: 2.5rem 3rem 0.5rem;
    text-align: center;
}

.login-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.login-header p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.login-header p i {
    color: var(--accent-teal);
}

.login-form {
    padding: 0 3rem 2.5rem;
}

.login-form .form-group {
    margin-bottom: 1.75rem;
}

.login-form label {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.875rem;
    font-size: 0.925rem;
}

.login-form label i {
    color: var(--accent-teal);
    font-size: 1rem;
    width: 18px;
    text-align: center;
}

.login-form input[type="text"],
.login-form input[type="password"] {
    width: 100%;
    padding: 1.125rem 1.5rem;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 14px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.login-form input:focus {
    outline: none;
    border-color: var(--accent-teal);
    background: #ffffff;
    box-shadow: 
        0 0 0 4px rgba(20, 184, 166, 0.12),
        0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-1px);
}

.password-wrapper {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.toggle-password:hover {
    color: var(--accent-teal);
    transform: translateY(-50%) scale(1.1);
}

.checkbox-label {
    display: flex !important;
    align-items: center;
    gap: 0.875rem;
    cursor: pointer;
    font-weight: 500 !important;
    color: var(--text-secondary);
    font-size: 0.925rem;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--accent-teal);
}

.login-btn {
    margin-top: 2rem;
    padding: 1.25rem;
    font-size: 1.05rem;
    background: linear-gradient(135deg, var(--accent-teal) 0%, var(--accent-cyan) 100%);
    color: #ffffff;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(20, 184, 166, 0.3);
    position: relative;
    overflow: hidden;
}

.login-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.login-btn:hover::before {
    left: 100%;
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(20, 184, 166, 0.5);
}

.login-footer {
    text-align: center;
    padding: 2rem 3rem 3rem;
    border-top: 2px solid rgba(0, 0, 0, 0.06);
}

.login-footer p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.login-footer p i {
    color: #22c55e;
    font-size: 1rem;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    background: #f8fafc;
    border: 2px solid rgba(0, 0, 0, 0.06);
}

.back-link:hover {
    color: var(--accent-teal);
    gap: 1rem;
    background: #ffffff;
    border-color: var(--accent-teal);
    transform: translateX(-5px);
}

@media (max-width: 480px) {
    .login-container {
        max-width: 100%;
    }
    
    .login-brand {
        padding: 2rem 1.5rem 2rem;
    }
    
    .login-header {
        padding: 2rem 1.5rem 0.5rem;
    }
    
    .login-form {
        padding: 0 1.5rem 2rem;
    }
    
    .login-footer {
        padding: 1.5rem 1.5rem 2rem;
    }
    
    .login-brand-name {
        font-size: 2rem;
    }
    
    .login-logo img {
        height: 65px;
    }
}

/* Dashboard/Admin Area */
.admin-body {
    background: #f1f5f9;
}

.admin-navbar {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border-bottom: 3px solid var(--accent-teal);
}

.admin-nav-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.admin-logo:visited {
    text-decoration: none;
}

.admin-logo:hover {
    transform: translateY(-2px);
    filter: drop-shadow(0 4px 12px rgba(20, 184, 166, 0.4));
}

.admin-logo img {
    height: 45px;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

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

.admin-logo-name {
    font-size: 1.5rem;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -0.3px;
    line-height: 1;
}

.admin-logo-subtitle {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

.admin-user-menu {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.admin-username {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 0.95rem;
}

.admin-username::before {
    content: '👤 ';
}

.btn-logout {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    font-size: 0.95rem;
}

.btn-logout:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: #ef4444;
    color: #fecaca;
    transform: translateY(-2px);
}

.dashboard-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.stat-icon {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #ffffff;
}

.stat-info h3 {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0;
}

.dashboard-filters {
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.dashboard-filters h2 {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.filter-options {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-options select {
    padding: 0.875rem 1.25rem;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-primary);
    background: #f8fafc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-options select:focus {
    outline: none;
    border-color: var(--accent-teal);
    box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.1);
}

.btn-refresh {
    padding: 0.875rem 1.5rem;
    background: linear-gradient(135deg, var(--accent-teal) 0%, var(--accent-cyan) 100%);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-refresh:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(20, 184, 166, 0.4);
}

.dashboard-table-wrapper {
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.dashboard-table-wrapper h2 {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contacts-table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
}

.contacts-table thead {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
}

.contacts-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 700;
    color: #ffffff;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contacts-table td {
    padding: 1.25rem 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.contacts-table tr {
    transition: background 0.2s ease;
}

.contacts-table tbody tr:hover {
    background: #f8fafc;
}

.status-badge {
    display: inline-block;
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.status-novo { background: #fef3c7; color: #92400e; }
.status-lido { background: #dbeafe; color: #1e3a8a; }
.status-respondido { background: #d1fae5; color: #065f46; }
.status-arquivado { background: #e5e7eb; color: #374151; }

.contact-actions {
    display: flex;
    gap: 0.5rem;
}

.btn-action {
    padding: 0.5rem 0.75rem;
    background: #f8fafc;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.875rem;
}

.btn-action:hover {
    background: var(--accent-teal);
    border-color: var(--accent-teal);
    color: #ffffff;
}

.loading-state {
    text-align: center;
    padding: 4rem;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.loading-state i {
    font-size: 2rem;
    color: var(--accent-teal);
    margin-bottom: 1rem;
    display: block;
}

.no-data {
    text-align: center;
    padding: 4rem;
    color: var(--text-muted);
}

.no-data i {
    font-size: 3rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    display: block;
}

/* Modal for Contact Details */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 600px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.3s ease;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

.modal-header h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin: 0;
}

.btn-close-modal {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.btn-close-modal:hover {
    color: #ef4444;
}

.contact-detail {
    margin-bottom: 1.5rem;
}

.contact-detail label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.contact-detail p {
    font-size: 1.05rem;
    color: var(--text-primary);
    padding: 0.75rem 1rem;
    background: #f8fafc;
    border-radius: 8px;
    border-left: 4px solid var(--accent-teal);
    margin: 0;
}

.contact-detail.message p {
    white-space: pre-wrap;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .dashboard-container {
        padding: 1rem;
    }

    .dashboard-stats {
        grid-template-columns: 1fr;
    }

    .filter-options {
        flex-direction: column;
    }

    .contacts-table {
        font-size: 0.85rem;
    }

    .contacts-table th,
    .contacts-table td {
        padding: 0.75rem 0.5rem;
    }
}

/* Animations */
/* RedRex-Style Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.fade-in-up.revealed {
    animation-play-state: running;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in-right {
    opacity: 0;
    animation: fadeInRight 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.fade-in-right.revealed {
    animation-play-state: running;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Responsive */
@media (max-width: 1024px) {
    .hero-content,
    .contato-wrapper,
    .lideranca-content {
        grid-template-columns: 1fr;
    }

    .hero-image {
        height: auto;
    }

    .corporate-visual {
        height: auto;
    }

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

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

    .case-principal-header {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .case-stats-inline {
        flex-direction: column;
        gap: 1.5rem;
    }

    .solis-logo-img {
        height: 55px;
    }

    .solis-logo-wrapper {
        padding: 1.25rem 1.75rem;
    }

    .case-stats-inline {
        gap: 2rem;
    }

    .stat-inline strong {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex !important;
        align-items: center;
        justify-content: center;
    }

    .logo img {
        height: 55px;
    }

    .logo-name {
        font-size: 2rem;
    }

    .logo-tagline {
        font-size: 0.65rem;
    }

    .nav-menu {
        display: flex !important;
        position: fixed;
        top: 95px;
        left: -100%;
        flex-direction: column;
        background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
        width: 100%;
        padding: 2rem;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
        border-top: 3px solid var(--accent-teal);
        z-index: 999;
        max-height: calc(100vh - 95px);
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
        text-align: left;
    }

    .nav-link.btn-primary {
        margin-top: 1rem;
        padding: 1rem;
        border-bottom: none;
        border-radius: 12px;
        text-align: center;
    }

    .nav-link:last-child {
        border-bottom: none;
    }

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

    .hero-subtitle {
        font-size: 1.125rem;
    }

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

    .servicos-grid {
        grid-template-columns: 1fr;
    }

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

    .value-icons {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .value-icon-circle {
        width: 65px;
        height: 65px;
    }

    .value-icon-circle i {
        font-size: 1.75rem;
    }

    .value-icon-item span {
        font-size: 0.8rem;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .case-principal-content {
        padding: 2rem 1.5rem;
    }

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

    .value-blocks {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-image {
        height: auto;
    }

    .corporate-visual {
        height: auto;
    }

    .value-icons {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.875rem;
    }

    .value-icon-circle {
        width: 60px;
        height: 60px;
    }

    .value-icon-circle i {
        font-size: 1.5rem;
    }

    .value-icon-item span {
        font-size: 0.75rem;
    }

    .floating-card {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }

    .floating-card i {
        font-size: 1.25rem;
    }
}

