/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Cores base - verde muito escuro, quase preto */
    --primary-green: #00ff88;
    --dark-green: #030a03;
    --darker-green: #020602;
    --bg-dark: #020602;
    --bg-darker: #010401;
    --bg-secondary: #020602;
    --text-light: rgba(255, 255, 255, 0.9);
    --text-muted: rgba(255, 255, 255, 0.6);
    --text-dark: rgba(255, 255, 255, 0.3);
    --text-secondary: rgba(152, 147, 184, 0.9);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #000d05;
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Fundo exatamente como DynastyAI mas em verde */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        /* Grid com quadrados maiores e diferentes opacidades */
        linear-gradient(rgba(0, 255, 136, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 136, 0.06) 1px, transparent 1px),
        /* Grid secundário mais sutil */
        linear-gradient(rgba(0, 255, 136, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 136, 0.02) 1px, transparent 1px),
        /* Gradiente radial no centro superior */
        radial-gradient(ellipse 800px 600px at 50% 0%, rgba(0, 255, 136, 0.06) 0%, transparent 50%),
        /* Gradiente radial inferior esquerdo */
        radial-gradient(ellipse 600px 400px at 0% 100%, rgba(0, 200, 100, 0.04) 0%, transparent 50%),
        /* Gradiente radial superior direito */
        radial-gradient(ellipse 500px 300px at 100% 0%, rgba(0, 255, 136, 0.03) 0%, transparent 50%),
        /* Fundo base verde muito escuro, quase preto */
        linear-gradient(180deg, #000d05 0%, #000805 50%, #000000 100%);
    background-size: 
        80px 80px,
        80px 80px,
        20px 20px,
        20px 20px,
        100% 100%,
        100% 100%,
        100% 100%,
        100% 100%;
    z-index: -2;
    animation: subtleGlow 8s ease-in-out infinite alternate;
}

@keyframes subtleGlow {
    0% {
        opacity: 0.8;
    }
    100% {
        opacity: 1;
    }
}

/* Efeitos de luz flutuantes como na DynastyAI */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        /* Pontos de luz espalhados - Muito mais intensos */
        radial-gradient(circle 4px at 15% 25%, rgba(0, 255, 136, 0.8), transparent),
        radial-gradient(circle 3px at 85% 15%, rgba(0, 255, 136, 0.7), transparent),
        radial-gradient(circle 3.5px at 65% 75%, rgba(0, 255, 136, 0.75), transparent),
        radial-gradient(circle 2.5px at 25% 85%, rgba(0, 255, 136, 0.6), transparent),
        radial-gradient(circle 4px at 95% 65%, rgba(0, 255, 136, 0.7), transparent),
        radial-gradient(circle 3px at 5% 35%, rgba(0, 255, 136, 0.75), transparent),
        radial-gradient(circle 3.5px at 75% 5%, rgba(0, 255, 136, 0.6), transparent),
        /* Partículas adicionais - Mais intensas */
        radial-gradient(circle 2.5px at 45% 45%, rgba(0, 255, 136, 0.65), transparent),
        radial-gradient(circle 3px at 55% 55%, rgba(0, 255, 136, 0.7), transparent),
        radial-gradient(circle 2px at 35% 65%, rgba(0, 255, 136, 0.55), transparent),
        radial-gradient(circle 3.5px at 65% 35%, rgba(0, 255, 136, 0.7), transparent),
        radial-gradient(circle 2.5px at 85% 85%, rgba(0, 255, 136, 0.6), transparent),
        radial-gradient(circle 3px at 15% 75%, rgba(0, 255, 136, 0.65), transparent),
        /* Partículas extras para mais intensidade */
        radial-gradient(circle 2px at 30% 15%, rgba(0, 255, 136, 0.7), transparent),
        radial-gradient(circle 3px at 70% 25%, rgba(0, 255, 136, 0.75), transparent),
        radial-gradient(circle 2.5px at 90% 45%, rgba(0, 255, 136, 0.65), transparent),
        radial-gradient(circle 2px at 10% 55%, rgba(0, 255, 136, 0.6), transparent),
        radial-gradient(circle 3.5px at 40% 85%, rgba(0, 255, 136, 0.7), transparent),
        radial-gradient(circle 2.5px at 80% 95%, rgba(0, 255, 136, 0.65), transparent);
    z-index: -1;
    animation: floatingLights 12s ease-in-out infinite;
}

@keyframes floatingLights {
    0%, 100% {
        opacity: 0.6;
        transform: translateY(0px);
    }
    50% {
        opacity: 1;
        transform: translateY(-10px);
    }
}

@keyframes particlesFloat {
    0% {
        transform: translateY(0) translateX(0);
    }
    33% {
        transform: translateY(-10px) translateX(10px);
    }
    66% {
        transform: translateY(5px) translateX(-5px);
    }
    100% {
        transform: translateY(0) translateX(0);
    }
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(25px);
    border-bottom: 1px solid rgba(0, 255, 136, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

header:hover {
    background: rgba(5, 5, 5, 0.98);
    border-bottom-color: rgba(0, 255, 136, 0.25);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

/* Header escondido quando rola para baixo */
header.header-hidden {
    transform: translateY(-100%);
    opacity: 0;
}

/* Navegação */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Logo */
.logo {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #00ff88 25%, #00cc6a 50%, #00994d 75%, #006633 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    transition: all 0.3s ease;
    text-shadow: 0 0 5px rgba(0, 255, 136, 0.2);
}

.logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.5));
}

/* Menu de navegação */
.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
    align-items: center;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.7rem 0;
    position: relative;
    transition: all 0.3s ease;
    text-transform: capitalize;
    letter-spacing: 0.3px;
}

.nav-links a:hover {
    color: var(--primary-green);
    transform: translateY(-2px);
    text-shadow: 0 0 8px rgba(0, 255, 136, 0.3);
}

/* Efeito de linha animada no hover */
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-green), #00cc6a);
    transition: all 0.3s ease;
    border-radius: 1px;
    transform: translateX(-50%);
    box-shadow: 0 0 8px rgba(0, 255, 136, 0.4);
}

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

/* Botão CTA do menu */
.cta-nav {
    background: linear-gradient(135deg, 
        rgba(0, 255, 136, 0.2), 
        rgba(0, 200, 100, 0.15));
    border: 1px solid rgba(0, 255, 136, 0.4);
    color: var(--primary-green);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    backdrop-filter: blur(25px);
    box-shadow: 
        0 0 25px rgba(0, 255, 136, 0.25),
        inset 0 0 25px rgba(0, 255, 136, 0.08);
}

.cta-nav::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;
}

.cta-nav:hover::before {
    left: 100%;
}

.cta-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.3);
    filter: brightness(1.1);
}

/* Social Buttons */
.social-buttons {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-btn {
    width: 50px;
    height: 50px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-btn:hover {
    background: rgba(0, 255, 136, 0.2);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.social-btn svg {
    width: 20px;
    height: 20px;
}

/* Container principal */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Main content com margem para o header fixo */
main {
    margin-top: 80px;
    position: relative;
    z-index: 1;
}

/* Botão Voltar ao Topo */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-green), #00cc6a);
    border: none;
    border-radius: 50%;
    color: var(--bg-dark);
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.5);
    filter: brightness(1.1);
}

.scroll-to-top:active {
    transform: translateY(-1px);
}

/* Ícone do botão */
.scroll-to-top svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.scroll-to-top:hover svg {
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 900px;
    z-index: 1;
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(0, 255, 136, 0.08);
    border: 1px solid rgba(0, 255, 136, 0.15);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    margin-bottom: 3rem;
    backdrop-filter: blur(10px);
    color: var(--primary-green);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #00ff88 30%, #00cc6a 60%, #00994d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
    text-shadow: 0 0 5px rgba(0, 255, 136, 0.2);
    white-space: normal;
    word-wrap: break-word;
    word-break: normal;
    overflow-wrap: normal;
}

.hero-subtitle {
    font-size: 1.35rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.cta-button {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
    color: var(--primary-green);
}

.cta-button.primary {
    background: linear-gradient(135deg, 
        rgba(0, 255, 136, 0.2), 
        rgba(0, 200, 100, 0.15));
    border: 1px solid rgba(0, 255, 136, 0.4);
    color: var(--primary-green);
    backdrop-filter: blur(25px);
    box-shadow: 
        0 0 25px rgba(0, 255, 136, 0.25),
        inset 0 0 25px rgba(0, 255, 136, 0.08);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 700;
    transition: all 0.3s ease;
    border-radius: 50px;
}

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

.cta-button.primary:hover::before {
    left: 100%;
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, 
        rgba(0, 255, 136, 0.25), 
        rgba(0, 200, 100, 0.2));
    border-color: rgba(0, 255, 136, 0.5);
    box-shadow: 
        0 0 30px rgba(0, 255, 136, 0.4),
        inset 0 0 25px rgba(0, 255, 136, 0.1);
    color: #ffffff;
    text-shadow: 0 0 12px rgba(0, 255, 136, 0.6);
}

.cta-button.secondary {
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.8), 
        rgba(10, 10, 10, 0.9));
    border: 1px solid rgba(0, 255, 136, 0.3);
    color: var(--primary-green);
    backdrop-filter: blur(25px);
    box-shadow: 
        0 0 20px rgba(0, 255, 136, 0.15),
        inset 0 0 20px rgba(0, 255, 136, 0.05);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 700;
    transition: all 0.3s ease;
    border-radius: 50px;
}

.cta-button.secondary::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;
}

.cta-button.secondary:hover::before {
    left: 100%;
}

.cta-button.secondary:hover {
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.9), 
        rgba(10, 10, 10, 0.95));
    border-color: rgba(0, 255, 136, 0.5);
    transform: translateY(-2px);
    box-shadow: 
        0 0 30px rgba(0, 255, 136, 0.3),
        inset 0 0 25px rgba(0, 255, 136, 0.1);
    color: #ffffff;
    text-shadow: 0 0 12px rgba(0, 255, 136, 0.6);
}

/* Trusted By Section */
.trusted-by {
    padding: 4rem 0;
    background: var(--bg-secondary);
    overflow: hidden;
    position: relative;
}

.trusted-title {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Animação dos Logos das Empresas */
.companies-grid {
    display: flex;
    gap: 3rem;
    max-width: none;
    margin: 0;
    overflow: hidden;
    position: relative;
    padding: 2rem 0;
    align-items: center;
    justify-content: center;
}

.company-logo {
    text-align: center;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(10, 10, 10, 0.95) 100%);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 20px;
    color: var(--text-muted);
    font-weight: 600;
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    min-width: 180px;
    height: 100px;
    flex-shrink: 0;
    animation: slideLogos 15s linear infinite;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.company-logo img {
    width: 140px;
    height: 70px;
    max-width: 140px;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: brightness(0.9);
}

.company-logo:hover {
    color: var(--primary-green);
    transform: translateY(-8px);
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(10, 10, 10, 0.98) 100%);
    border-color: rgba(0, 255, 136, 0.3);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(0, 255, 136, 0.2);
}

.company-logo:hover svg {
    filter: brightness(1.2) drop-shadow(0 0 10px rgba(0, 255, 136, 0.3));
    transform: scale(1.05);
}

@keyframes slideLogos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

@keyframes slideInTimeline {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes popInNumber {
    0% {
        opacity: 0;
        transform: scale(0.6);
    }
    60% {
        opacity: 1;
        transform: scale(1.1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Gradientes nas bordas */
.trusted-by::before,
.trusted-by::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.trusted-by::before {
    left: 0;
    background: linear-gradient(90deg, var(--bg-secondary) 0%, transparent 100%);
}

.trusted-by::after {
    right: 0;
    background: linear-gradient(90deg, transparent 0%, var(--bg-secondary) 100%);
}

/* Enterprise Section */
.enterprise {
    padding: 8rem 0;
    text-align: center;
}

.enterprise-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #00ff88 30%, #00cc6a 60%, #00994d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 5px rgba(0, 255, 136, 0.2);
    line-height: 1.2;
}

.enterprise-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services-section {
    padding: 8rem 0;
    background: var(--bg-secondary);
}

.services-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #00ff88 30%, #00cc6a 60%, #00994d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 5px rgba(0, 255, 136, 0.2);
}

.services-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1rem;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(10, 10, 10, 0.9) 100%);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 255, 136, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(0, 255, 136, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(0, 255, 136, 0.15);
    border-color: rgba(0, 255, 136, 0.25);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.15) 0%, rgba(0, 200, 100, 0.1) 100%);
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2.5rem auto;
    position: relative;
    box-shadow: 
        0 8px 16px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(0, 255, 136, 0.2),
        inset 0 2px 4px rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.2);
}

.service-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 100px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.3), rgba(0, 200, 100, 0.2));
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.3);
}

.service-icon svg {
    width: 32px;
    height: 32px;
    color: var(--primary-green);
    filter: drop-shadow(0 0 8px rgba(0, 255, 136, 0.3));
}

.service-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    background: linear-gradient(135deg, #ffffff 0%, #00ff88 30%, #00cc6a 60%, #00994d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.2);
}

.service-description {
    color: rgba(152, 147, 184, 0.8);
    line-height: 1.7;
    text-align: center;
    font-size: 0.95rem;
}

/* Blueprint Section */
.blueprint-section {
    padding: 6rem 0;
}

.blueprint-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #00ff88 30%, #00cc6a 60%, #00994d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 5px rgba(0, 255, 136, 0.2);
}

.blueprint-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.blueprint-card {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(10, 10, 10, 0.95) 100%);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 255, 136, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.blueprint-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(0, 255, 136, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.blueprint-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(0, 255, 136, 0.2);
    border-color: rgba(0, 255, 136, 0.3);
}

.blueprint-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    opacity: 0.4;
    text-align: center;
    text-shadow: 0 0 15px rgba(0, 255, 136, 0.3);
}

.blueprint-step {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #00ff88 30%, #00cc6a 60%, #00994d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.blueprint-description {
    color: rgba(152, 147, 184, 0.9);
    line-height: 1.7;
    text-align: center;
    font-size: 1rem;
}

/* Impact Results Section */
.impact-results {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.impact-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.impact-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 4rem;
}

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

.impact-card {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(10, 10, 10, 0.95) 100%);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 255, 136, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.impact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(0, 255, 136, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.impact-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(0, 255, 136, 0.2);
    border-color: rgba(0, 255, 136, 0.3);
}

.impact-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-green);
    display: inline;
    text-shadow: 0 0 15px rgba(0, 255, 136, 0.3);
}

.impact-symbol {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-green);
    display: inline;
    text-shadow: 0 0 15px rgba(0, 255, 136, 0.3);
}

.impact-label {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 1.5rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #00ff88 30%, #00cc6a 60%, #00994d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.impact-description {
    color: rgba(152, 147, 184, 0.9);
    font-size: 1rem;
    line-height: 1.7;
}

/* Security Section */
.security-section {
    padding: 6rem 0;
}

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

.security-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.15) 0%, rgba(0, 200, 100, 0.1) 100%);
    border: 1px solid rgba(0, 255, 136, 0.3);
    padding: 1rem 2rem;
    border-radius: 50px;
    color: var(--primary-green);
    font-weight: 600;
    backdrop-filter: blur(20px);
    box-shadow: 
        rgba(0, 0, 0, 0.1) 0px 4px 6px 0px,
        rgba(0, 255, 136, 0.2) 0px 1px 1px 0px inset;
    transition: all 0.3s ease;
}

.security-badge:hover {
    transform: translateY(-2px);
    box-shadow: 
        rgba(0, 0, 0, 0.15) 0px 8px 12px 0px,
        rgba(0, 255, 136, 0.3) 0px 2px 2px 0px inset;
}

.security-badge svg {
    width: 18px;
    height: 18px;
    filter: drop-shadow(0 0 5px rgba(0, 255, 136, 0.4));
}

.security-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #00ff88 30%, #00cc6a 60%, #00994d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 5px rgba(0, 255, 136, 0.2);
}

.security-description {
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.security-feature {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(10, 10, 10, 0.95) 100%);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 255, 136, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    text-align: left;
}

.security-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(0, 255, 136, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.security-feature:hover::before {
    opacity: 1;
}

.security-feature:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(0, 255, 136, 0.2);
    border-color: rgba(0, 255, 136, 0.3);
}

.security-feature svg {
    width: 28px;
    height: 28px;
    color: var(--primary-green);
    flex-shrink: 0;
    margin-top: 0.25rem;
    filter: drop-shadow(0 0 8px rgba(0, 255, 136, 0.4));
}

.security-feature h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    background: linear-gradient(135deg, #ffffff 0%, #00ff88 30%, #00cc6a 60%, #00994d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.security-feature p {
    color: rgba(152, 147, 184, 0.9);
    font-size: 1rem;
    line-height: 1.7;
}

/* Features Section */
.features-section {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.features-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #00ff88 30%, #00cc6a 60%, #00994d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 5px rgba(0, 255, 136, 0.2);
}

.features-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.feature-card {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(10, 10, 10, 0.95) 100%);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(0, 255, 136, 0.2);
    border-color: rgba(0, 255, 136, 0.3);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.2) 0%, rgba(0, 200, 100, 0.15) 100%);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem auto;
    color: var(--primary-green);
    position: relative;
    box-shadow: 
        0 8px 16px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(0, 255, 136, 0.3),
        inset 0 2px 4px rgba(0, 255, 136, 0.2);
}

.feature-icon svg {
    width: 30px;
    height: 30px;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.cta-subtitle {
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
footer {
    background: var(--bg-dark);
    border-top: 1px solid rgba(0, 255, 136, 0.15);
    position: relative;
    overflow: hidden;
}

/* Fundo quadriculado do footer como no topo */
footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        /* Grid com quadrados elegantes */
        linear-gradient(rgba(0, 255, 136, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 136, 0.04) 1px, transparent 1px),
        /* Grid secundário mais sutil */
        linear-gradient(rgba(0, 255, 136, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 136, 0.015) 1px, transparent 1px),
        /* Gradiente radial sutil */
        radial-gradient(ellipse 600px 400px at 50% 100%, rgba(0, 255, 136, 0.03) 0%, transparent 50%),
        /* Fundo base */
        linear-gradient(180deg, #000d05 0%, #000805 100%);
    background-size: 
        60px 60px,
        60px 60px,
        15px 15px,
        15px 15px,
        100% 100%,
        100% 100%;
    z-index: 1;
    animation: subtleGlow 8s ease-in-out infinite alternate;
}

/* Partículas flutuantes no footer */
footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        /* Partículas sutis e elegantes */
        radial-gradient(circle 2px at 20% 20%, rgba(0, 255, 136, 0.3), transparent),
        radial-gradient(circle 1.5px at 80% 30%, rgba(0, 255, 136, 0.25), transparent),
        radial-gradient(circle 2px at 60% 80%, rgba(0, 255, 136, 0.2), transparent),
        radial-gradient(circle 1px at 30% 70%, rgba(0, 255, 136, 0.15), transparent),
        radial-gradient(circle 2px at 90% 80%, rgba(0, 255, 136, 0.2), transparent),
        radial-gradient(circle 1.5px at 10% 60%, rgba(0, 255, 136, 0.25), transparent),
        radial-gradient(circle 1px at 70% 40%, rgba(0, 255, 136, 0.2), transparent),
        /* Partículas adicionais */
        radial-gradient(circle 1.5px at 45% 25%, rgba(0, 255, 136, 0.2), transparent),
        radial-gradient(circle 2px at 55% 75%, rgba(0, 255, 136, 0.15), transparent),
        radial-gradient(circle 1px at 85% 50%, rgba(0, 255, 136, 0.25), transparent);
    z-index: 1;
    animation: floatingLights 15s ease-in-out infinite;
}

.footer-content {
    position: relative;
    z-index: 2;
    padding: 3rem 0 1rem;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    gap: 3rem;
}

.footer-logo-section {
    flex: 1;
    min-width: 300px;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #00ff88 30%, #00cc6a 60%, #00994d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 8px rgba(0, 255, 136, 0.3);
    letter-spacing: 0.5px;
}

.footer-description {
    color: rgba(152, 147, 184, 0.8);
    line-height: 1.7;
    font-size: 0.95rem;
    max-width: 400px;
}

.footer-social {
    display: flex;
    gap: 1.2rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.08), rgba(0, 200, 100, 0.05));
    border: 1px solid rgba(0, 255, 136, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.social-icon:hover {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.15), rgba(0, 200, 100, 0.1));
    transform: translateY(-3px) scale(1.05);
    border-color: rgba(0, 255, 136, 0.3);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(0, 255, 136, 0.2);
    filter: brightness(1.1);
}

.social-icon svg {
    width: 20px;
    height: 20px;
    filter: drop-shadow(0 0 5px rgba(0, 255, 136, 0.3));
}

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(0, 255, 136, 0.1);
    color: rgba(152, 147, 184, 0.7);
    position: relative;
    z-index: 2;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
}

/* Responsividade básica */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    nav {
        padding: 1rem;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .company-logo {
        min-width: 140px;
        height: 80px;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .company-logo img {
        width: 110px;
        height: 55px;
        max-width: 110px;
    }
    
    .trusted-by::before,
    .trusted-by::after {
        width: 50px;
    }
    
    .social-buttons {
        right: 10px;
    }
    
    .social-btn {
        width: 40px;
        height: 40px;
    }
    
    .footer-top {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-logo-section {
        min-width: auto;
    }
    
    .footer-description {
        max-width: none;
        margin: 0 auto;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
    }
    
    .social-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .services-grid,
    .blueprint-grid,
    .impact-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .security-features {
        grid-template-columns: 1fr;
    }
    
    .security-badges {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .enterprise-title,
    .services-title,
    .blueprint-title,
    .impact-title,
    .security-title,
    .features-title,
    .cta-title {
        font-size: 2rem;
    }
}

/* Process Transformation Section */
.process-transformation {
    padding: 6rem 0;
    background: var(--bg-secondary);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.process-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.process-text {
    text-align: left;
    position: sticky;
    top: 120px;
    height: fit-content;
}

.process-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #00ff88 30%, #00cc6a 60%, #00994d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 5px rgba(0, 255, 136, 0.2);
    line-height: 1.2;
}

.process-description {
    color: rgba(152, 147, 184, 0.9);
    font-size: 1.2rem;
    line-height: 1.7;
}

.process-timeline {
    position: relative;
    padding-left: 6rem;
    padding-top: 2rem;
}

.timeline-line {
    position: absolute;
    left: 2rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--primary-green), transparent);
}

.timeline-step {
    position: relative;
    margin-bottom: 4rem;
    padding-left: 1rem;
    opacity: 0;
    transform: translateX(50px);
    animation: slideInTimeline 0.8s ease-out forwards;
}

.timeline-step:nth-child(1) { animation-delay: 0.2s; }
.timeline-step:nth-child(2) { animation-delay: 0.4s; }
.timeline-step:nth-child(3) { animation-delay: 0.6s; }
.timeline-step:nth-child(4) { animation-delay: 0.8s; }
.timeline-step:nth-child(5) { animation-delay: 1.0s; }

.timeline-step:nth-child(1) .step-number-large { animation-delay: 0.1s; }
.timeline-step:nth-child(2) .step-number-large { animation-delay: 0.3s; }
.timeline-step:nth-child(3) .step-number-large { animation-delay: 0.5s; }
.timeline-step:nth-child(4) .step-number-large { animation-delay: 0.7s; }
.timeline-step:nth-child(5) .step-number-large { animation-delay: 0.9s; }

.step-number-large {
    position: absolute;
    left: -2.5rem;
    top: 0;
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.15) 0%, rgba(0, 200, 100, 0.1) 100%);
    border: 1px solid rgba(0, 255, 136, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-green);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.2);
    z-index: 2;
    opacity: 0;
    transform: scale(0.8);
    animation: popInNumber 0.6s ease-out forwards;
}

.step-content {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(10, 10, 10, 0.95) 100%);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.step-period {
    color: var(--primary-green);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.step-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.step-description {
    color: rgba(152, 147, 184, 0.9);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.step-list {
    list-style: none;
    padding: 0;
}

.step-list li {
    color: rgba(152, 147, 184, 0.9);
    padding: 0.3rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.step-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
}

/* Complete Solution Section */
.complete-solution-section {
    padding: 6rem 0;
}

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

.solution-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #00ff88 25%, #00cc6a 50%, #00994d 75%, #006633 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 5px rgba(0, 255, 136, 0.2);
}

.solution-subtitle {
    color: rgba(152, 147, 184, 0.9);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.solution-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.solution-feature {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(10, 10, 10, 0.95) 100%);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.solution-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(0, 255, 136, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.solution-feature:hover::before {
    opacity: 1;
}

.solution-feature:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(0, 255, 136, 0.2);
    border-color: rgba(0, 255, 136, 0.3);
}

.solution-feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.15) 0%, rgba(0, 200, 100, 0.1) 100%);
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem auto;
    position: relative;
    box-shadow: 
        0 8px 16px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(0, 255, 136, 0.2),
        inset 0 2px 4px rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.2);
}

.solution-feature-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 100px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.3), rgba(0, 200, 100, 0.2));
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.3);
}

.solution-feature-icon svg {
    width: 32px;
    height: 32px;
    color: var(--primary-green);
    filter: drop-shadow(0 0 8px rgba(0, 255, 136, 0.3));
}

.solution-feature h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #00ff88 30%, #00cc6a 60%, #00994d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.solution-feature p {
    color: rgba(152, 147, 184, 0.9);
    line-height: 1.7;
}

.solution-cta {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(10, 10, 10, 0.95) 100%);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.solution-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.solution-cta .highlight {
    background: linear-gradient(135deg, #ffffff 0%, #00ff88 25%, #00cc6a 50%, #00994d 75%, #006633 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.solution-cta p {
    color: rgba(152, 147, 184, 0.9);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.solution-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.solution-btn {
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    font-size: 0.85rem;
}

.solution-btn svg {
    width: 14px;
    height: 14px;
}

.solution-btn.whatsapp-btn {
    background: linear-gradient(135deg, 
        rgba(0, 255, 136, 0.2), 
        rgba(0, 200, 100, 0.15));
    border: 1px solid rgba(0, 255, 136, 0.4);
    color: var(--primary-green);
    backdrop-filter: blur(25px);
    box-shadow: 
        0 0 25px rgba(0, 255, 136, 0.25),
        inset 0 0 25px rgba(0, 255, 136, 0.08);
}

.solution-btn.whatsapp-btn:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, 
        rgba(0, 255, 136, 0.25), 
        rgba(0, 200, 100, 0.2));
    border-color: rgba(0, 255, 136, 0.5);
    box-shadow: 
        0 0 30px rgba(0, 255, 136, 0.4),
        inset 0 0 25px rgba(0, 255, 136, 0.1);
    color: #ffffff;
    text-shadow: 0 0 12px rgba(0, 255, 136, 0.6);
}

.solution-btn.demo-btn {
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.8), 
        rgba(10, 10, 10, 0.9));
    border: 1px solid rgba(0, 255, 136, 0.3);
    color: var(--primary-green);
    backdrop-filter: blur(25px);
    box-shadow: 
        0 0 20px rgba(0, 255, 136, 0.15),
        inset 0 0 20px rgba(0, 255, 136, 0.05);
}

.solution-btn.demo-btn:hover {
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.9), 
        rgba(10, 10, 10, 0.95));
    border-color: rgba(0, 255, 136, 0.5);
    transform: translateY(-2px);
    box-shadow: 
        0 0 30px rgba(0, 255, 136, 0.3),
        inset 0 0 25px rgba(0, 255, 136, 0.1);
    color: #ffffff;
    text-shadow: 0 0 12px rgba(0, 255, 136, 0.6);
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.faq-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #00ff88 25%, #00cc6a 50%, #00994d 75%, #006633 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 5px rgba(0, 255, 136, 0.2);
}

.faq-subtitle {
    text-align: center;
    color: rgba(152, 147, 184, 0.9);
    margin-bottom: 4rem;
    font-size: 1.1rem;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(10, 10, 10, 0.95) 100%);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 136, 0.3);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(0, 255, 136, 0.2);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    margin-bottom: 1rem;
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
    margin: 0;
}

.faq-icon {
    width: 20px;
    height: 20px;
    color: var(--primary-green);
    transition: transform 0.3s ease;
}

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

.faq-answer {
    color: rgba(152, 147, 184, 0.9);
    line-height: 1.7;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Proof Section */
.proof-section {
    padding: 6rem 0;
}

.proof-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #00ff88 25%, #00cc6a 50%, #00994d 75%, #006633 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 5px rgba(0, 255, 136, 0.2);
}

.proof-subtitle {
    text-align: center;
    color: rgba(152, 147, 184, 0.9);
    margin-bottom: 4rem;
    font-size: 1.1rem;
}

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

.proof-card {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(10, 10, 10, 0.95) 100%);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: all 0.3s ease;
}

.proof-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 255, 136, 0.3);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(0, 255, 136, 0.2);
}

.proof-company {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.proof-result {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 15px rgba(0, 255, 136, 0.4);
}

.proof-description {
    color: rgba(152, 147, 184, 0.9);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.proof-author {
    color: var(--primary-green);
    font-weight: 600;
    font-size: 0.9rem;
}

/* CTA Sphere Section */
.cta-sphere-section {
    padding: 6rem 0;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.cta-sphere-container {
    position: relative;
    z-index: 2;
}

.cta-sphere {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: spherePulse 4s ease-in-out infinite;
    z-index: 1;
}

@keyframes spherePulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.6;
    }
}

.cta-sphere-content {
    text-align: center;
    position: relative;
    z-index: 3;
}

.cta-sphere-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #00ff88 25%, #00cc6a 50%, #00994d 75%, #006633 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 5px rgba(0, 255, 136, 0.2);
}

.cta-sphere-description {
    color: rgba(152, 147, 184, 0.9);
    margin-bottom: 3rem;
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-sphere-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-sphere-button {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 700;
}

.cta-sphere-button.primary {
    background: linear-gradient(135deg, 
        rgba(0, 255, 136, 0.2), 
        rgba(0, 200, 100, 0.15));
    border: 1px solid rgba(0, 255, 136, 0.4);
    color: var(--primary-green);
    backdrop-filter: blur(25px);
    box-shadow: 
        0 0 25px rgba(0, 255, 136, 0.25),
        inset 0 0 25px rgba(0, 255, 136, 0.08);
}

.cta-sphere-button.primary:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, 
        rgba(0, 255, 136, 0.25), 
        rgba(0, 200, 100, 0.2));
    border-color: rgba(0, 255, 136, 0.5);
    box-shadow: 
        0 0 30px rgba(0, 255, 136, 0.4),
        inset 0 0 25px rgba(0, 255, 136, 0.1);
    color: #ffffff;
    text-shadow: 0 0 12px rgba(0, 255, 136, 0.6);
}

.cta-sphere-button.secondary {
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.8), 
        rgba(10, 10, 10, 0.9));
    border: 1px solid rgba(0, 255, 136, 0.3);
    color: var(--primary-green);
    backdrop-filter: blur(25px);
    box-shadow: 
        0 0 20px rgba(0, 255, 136, 0.15),
        inset 0 0 20px rgba(0, 255, 136, 0.05);
}

.cta-sphere-button.secondary:hover {
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.9), 
        rgba(10, 10, 10, 0.95));
    border-color: rgba(0, 255, 136, 0.5);
    transform: translateY(-2px);
    box-shadow: 
        0 0 30px rgba(0, 255, 136, 0.3),
        inset 0 0 25px rgba(0, 255, 136, 0.1);
    color: #ffffff;
    text-shadow: 0 0 12px rgba(0, 255, 136, 0.6);
}

/* Footer Gradient Overlay - Removido para usar o novo design */

/* Responsividade para as novas seções */
@media (max-width: 768px) {
    .process-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .process-timeline {
        padding-left: 4rem;
    }
    
    .timeline-line {
        left: 1.5rem;
    }
    
    .step-number-large {
        left: -1.5rem;
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1rem;
    }
    
    .solution-buttons,
    .cta-sphere-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .solution-btn,
    .cta-sphere-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .proof-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-sphere {
        width: 200px;
        height: 200px;
    }
}

