/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;
    width: 100%;
}

:root {
    /* Paleta de Cores StarkWorks */
    --blue-electric: #007BFF;
    --gray-metallic: #A0A0A0;
    --gray-dark: #20232A;
    --white: #FFFFFF;
    --gray-light: #F8F9FA;
    --gray-medium: #6C757D;
    
    /* Tipografia */
    --font-primary: 'Space Grotesk', monospace;
    --font-secondary: 'Roboto', sans-serif;
    
    /* Espaçamentos */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    
    /* Sombras */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.2);
    
    /* Transições */
    --transition: all 0.3s ease;
}

body {
    font-family: var(--font-secondary);
    line-height: 1.6;
    color: var(--gray-dark);
    background-color: var(--white);
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

/* Header - Design Épico */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background:
        linear-gradient(135deg,
            rgba(255, 255, 255, 0.98) 0%,
            rgba(248, 250, 252, 0.95) 50%,
            rgba(241, 245, 249, 0.92) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 123, 255, 0.1);
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.08),
        0 1px 3px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(0, 123, 255, 0.3) 20%,
        rgba(0, 212, 255, 0.5) 50%,
        rgba(0, 123, 255, 0.3) 80%,
        transparent 100%);
    animation: headerGlow 3s ease-in-out infinite alternate;
}

@keyframes headerGlow {
    0% { opacity: 0.3; transform: scaleX(0.8); }
    100% { opacity: 0.8; transform: scaleX(1); }
}

.header.scrolled {
    background:
        linear-gradient(135deg,
            rgba(255, 255, 255, 0.99) 0%,
            rgba(248, 250, 252, 0.97) 50%,
            rgba(241, 245, 249, 0.95) 100%);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.12),
        0 2px 8px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
    border-bottom-color: rgba(0, 123, 255, 0.2);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md) 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: var(--spacing-lg);
    padding-right: var(--spacing-lg);
    position: relative;
}

.nav-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(0, 123, 255, 0.2) 50%,
        transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.header:hover .nav-container::after {
    opacity: 1;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

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

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

.logo:hover {
    background: rgba(0, 123, 255, 0.05);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.15);
}

.logo-img {
    height: 42px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 123, 255, 0.2));
    transition: all 0.3s ease;
}

.logo:hover .logo-img {
    transform: scale(1.05) rotate(2deg);
    filter: drop-shadow(0 4px 8px rgba(0, 123, 255, 0.3));
}

.logo-text {
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 1.3rem;
    background: linear-gradient(135deg,
        var(--blue-electric) 0%,
        #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0, 123, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.logo-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--blue-electric), #00d4ff);
    transition: width 0.3s ease;
}

.logo:hover .logo-text::after {
    width: 100%;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--gray-dark);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: 8px;
    overflow: hidden;
}

.nav-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(0, 123, 255, 0.1) 0%,
        rgba(0, 212, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.nav-links a:hover::before {
    opacity: 1;
}

.nav-links a:hover {
    color: var(--blue-electric);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.15);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg,
        var(--blue-electric) 0%,
        #00d4ff 100%);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 1px;
}

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

.nav-links a.active {
    color: var(--blue-electric);
    background: rgba(0, 123, 255, 0.08);
}

.nav-links a.active::after {
    width: 80%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: var(--spacing-xs);
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-toggle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 123, 255, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-toggle:hover::before {
    opacity: 1;
}

.nav-toggle:hover {
    transform: scale(1.05);
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: linear-gradient(135deg,
        var(--gray-dark) 0%,
        var(--blue-electric) 100%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
    position: relative;
    z-index: 1;
}

.nav-toggle:hover span {
    background: linear-gradient(135deg,
        var(--blue-electric) 0%,
        #00d4ff 100%);
    box-shadow: 0 2px 4px rgba(0, 123, 255, 0.3);
}

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

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(20px);
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Hero Section - Design Ultra Moderno */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 140px 0 var(--spacing-xl);
    overflow: hidden;
    background:
        linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 25%, #16213e 50%, #0f1419 100%);
    color: var(--white);
}

/* Background Moderno */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-mesh-gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 20%, rgba(0, 123, 255, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(138, 43, 226, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(0, 212, 255, 0.2) 0%, transparent 50%);
    animation: meshFloat 20s ease-in-out infinite;
}

@keyframes meshFloat {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.8; }
    50% { transform: scale(1.1) rotate(1deg); opacity: 1; }
}

.hero-floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-orb {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(138, 43, 226, 0.1));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.orb-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 5%;
    animation: orbFloat1 15s ease-in-out infinite;
}

.orb-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 10%;
    animation: orbFloat2 18s ease-in-out infinite;
}

.orb-3 {
    width: 100px;
    height: 100px;
    top: 30%;
    left: 70%;
    animation: orbFloat3 12s ease-in-out infinite;
}

.orb-4 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 20%;
    animation: orbFloat4 20s ease-in-out infinite;
}

@keyframes orbFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -20px) scale(1.1); }
}

@keyframes orbFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-20px, 30px) scale(0.9); }
}

@keyframes orbFloat3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(15px, 25px) scale(1.2); }
}

@keyframes orbFloat4 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-25px, -15px) scale(0.8); }
}

.hero-grid-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background:
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="modernGrid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(0,212,255,0.1)" stroke-width="0.5"/><circle cx="25" cy="25" r="1" fill="rgba(0,212,255,0.2)"/></pattern></defs><rect width="100" height="100" fill="url(%23modernGrid)"/></svg>') repeat;
    opacity: 0.3;
    animation: gridMove 30s linear infinite;
}

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

/* Container Moderno */
.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--spacing-lg);
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    position: relative;
    z-index: 2;
}

/* Conteúdo da Hero */
.hero-content {
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    background:
        linear-gradient(135deg,
            rgba(0, 212, 255, 0.2) 0%,
            rgba(138, 43, 226, 0.1) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 50px;
    padding: var(--spacing-sm) var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    position: relative;
    overflow: hidden;
}

.badge-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent,
        rgba(0, 212, 255, 0.3),
        transparent);
    animation: badgeGlow 3s ease-in-out infinite;
}

@keyframes badgeGlow {
    0% { left: -100%; }
    100% { left: 100%; }
}

.badge-text {
    font-weight: 600;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.badge-text i {
    color: #00d4ff;
    font-size: 1rem;
}

/* Título Moderno */
.hero-title {
    font-family: var(--font-primary);
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--spacing-lg);
    position: relative;
}

.title-line-1 {
    display: block;
    font-size: 2.5rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--spacing-xs);
    animation: fadeInUp 0.8s ease-out;
}

.title-line-2 {
    display: block;
    margin-bottom: var(--spacing-xs);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.title-line-3 {
    display: block;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.9);
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.title-highlight {
    background: linear-gradient(135deg,
        #00d4ff 0%,
        #0099cc 50%,
        #007bff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    animation: titleGlow 3s ease-in-out infinite;
}

.title-accent {
    color: #8a2be2;
    margin-left: var(--spacing-sm);
    position: relative;
}

@keyframes titleGlow {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.5));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.8));
    }
}

/* Descrição */
.hero-description {
    font-size: 1.2rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--spacing-xl);
    max-width: 500px;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.text-highlight {
    color: #00d4ff;
    font-weight: 600;
}

/* Botões Modernos */
.hero-actions {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.btn-modern {
    position: relative;
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: 50px;
    border: none;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.btn-modern.btn-primary {
    background: linear-gradient(135deg, #00d4ff 0%, #007bff 100%);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
}

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

.btn-content {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    position: relative;
    z-index: 2;
}

.btn-glow {
    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;
}

.btn-modern:hover .btn-glow {
    left: 100%;
}

.btn-modern:hover {
    transform: translateY(-2px);
}

.btn-modern.btn-primary:hover {
    box-shadow: 0 12px 35px rgba(0, 212, 255, 0.6);
}

.btn-modern.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}



/* Visual da Hero */
.hero-visual {
    position: relative;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.visual-container {
    position: relative;
}

.main-visual {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hero-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-effects {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.glow-effect {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00d4ff, transparent);
    animation: scanMove 3s ease-in-out infinite;
}

@keyframes scanMove {
    0% { top: 0; opacity: 1; }
    50% { top: 50%; opacity: 0.5; }
    100% { top: 100%; opacity: 0; }
}

/* Cards Flutuantes */
.floating-cards {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.product-card {
    position: absolute;
    width: 120px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    animation: cardFloat 6s ease-in-out infinite;
}

.card-1 {
    top: 10%;
    right: -60px;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    left: -60px;
    animation-delay: 2s;
}

.card-3 {
    bottom: 10%;
    right: -40px;
    animation-delay: 4s;
}

@keyframes cardFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

.product-card img {
    width: 100%;
    height: 80px;
    object-fit: cover;
}

.card-info {
    padding: var(--spacing-sm);
    text-align: center;
}

.card-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--white);
    display: block;
    margin-bottom: var(--spacing-xs);
}

.card-price {
    font-size: 0.9rem;
    font-weight: 700;
    color: #00d4ff;
}

/* Indicadores Tech */
.tech-indicators {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.indicator {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.indicator.active {
    opacity: 1;
    border-color: #00d4ff;
}

.indicator-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
}

.indicator.active .indicator-dot {
    background: #00d4ff;
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.7; }
}

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

/* Responsividade Hero Moderna */
@media (max-width: 768px) {
    .hero {
        padding: 120px 0 var(--spacing-xl);
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        text-align: center;
        align-items: center;
    }

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

    .title-line-1 {
        font-size: 2rem;
    }

    .title-line-3 {
        font-size: 2.5rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
        margin-bottom: var(--spacing-xl);
    }

    .hero-image {
        height: 300px;
    }

    .floating-cards {
        display: none;
    }

    .tech-indicators {
        position: static;
        transform: none;
        margin-top: var(--spacing-lg);
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 0 var(--spacing-xl);
    }

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

    .title-line-1 {
        font-size: 1.5rem;
    }

    .title-line-3 {
        font-size: 2rem;
    }

    .btn-modern {
        width: 100%;
        max-width: 300px;
    }
}











/* Value Proposition - Seção de Benefícios */
.value-proposition {
    padding: var(--spacing-xl) 0;
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow: hidden;
}

.value-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(0, 123, 255, 0.1), rgba(118, 75, 162, 0.1));
    animation: floatShape 15s ease-in-out infinite;
}

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

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: 3s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 20%;
    animation-delay: 6s;
}

.shape-4 {
    width: 120px;
    height: 120px;
    top: 30%;
    right: 30%;
    animation-delay: 9s;
}

@keyframes floatShape {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(120deg); }
    66% { transform: translateY(10px) rotate(240deg); }
}

.value-proposition .container {
    position: relative;
    z-index: 2;
}

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

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    background: linear-gradient(45deg, #ff6b6b, #feca57);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    animation: bounce 2s ease-in-out infinite;
}

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

.section-header .section-title {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
}

.section-header .title-highlight {
    background: linear-gradient(45deg, var(--blue-electric), #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.benefits-showcase {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.benefits-main {
    display: flex;
    justify-content: center;
    margin-bottom: var(--spacing-xl);
}

.featured-benefit {
    position: relative;
    background: linear-gradient(135deg, var(--blue-electric), #00d4ff);
    color: var(--white);
    border-radius: 20px;
    overflow: hidden;
    padding: var(--spacing-xl);
    box-shadow: 0 20px 40px rgba(0, 123, 255, 0.3);
    max-width: 900px;
    width: 100%;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    min-height: 280px;
}

.benefit-background {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 220px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.benefit-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    transition: var(--transition);
}

.featured-benefit:hover .benefit-background img {
    transform: scale(1.05);
}

.benefit-content {
    position: relative;
    z-index: 2;
}

.mega-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
    backdrop-filter: blur(10px);
}

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

.featured-benefit p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
    opacity: 0.95;
}

.benefit-stats {
    display: flex;
    gap: var(--spacing-lg);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

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

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-card {
    background: var(--white);
    border-radius: 16px;
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, var(--blue-electric), #00d4ff);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

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

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--blue-electric), #00d4ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: var(--spacing-md);
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.3);
    transition: var(--transition);
}

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

.benefit-card h3 {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--gray-dark);
    margin-bottom: var(--spacing-sm);
}

.benefit-card p {
    color: var(--gray-medium);
    line-height: 1.6;
    margin-bottom: var(--spacing-sm);
    font-size: 0.95rem;
}

.benefit-highlight {
    display: inline-block;
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: var(--spacing-xs);
}

.value-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: var(--spacing-xl);
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.value-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="20" cy="80" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="80" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    animation: sparkle 10s linear infinite;
}

@keyframes sparkle {
    0% { transform: translateX(0px); }
    100% { transform: translateX(100px); }
}

.cta-content {
    position: relative;
    z-index: 2;
    margin-bottom: var(--spacing-lg);
}

.value-cta h3 {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.value-cta p {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.6;
}

.value-cta .btn {
    position: relative;
    z-index: 2;
    background: var(--white);
    color: var(--blue-electric);
    font-weight: 700;
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: 1.1rem;
}

.value-cta .btn:hover {
    background: var(--gray-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Responsividade Value Proposition */
@media (max-width: 768px) {
    .section-header .section-title {
        font-size: 2rem;
    }

    .benefits-showcase {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .featured-benefit {
        grid-template-columns: 1fr;
        text-align: center;
        padding: var(--spacing-lg);
        gap: var(--spacing-md);
    }

    .featured-benefit h3 {
        font-size: 1.5rem;
    }

    .benefit-stats {
        justify-content: center;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }

    .value-cta {
        padding: var(--spacing-lg);
    }

    .value-cta h3 {
        font-size: 1.5rem;
    }

    .value-cta .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .section-header .section-title {
        font-size: 1.8rem;
    }

    .section-header .section-subtitle {
        font-size: 1rem;
    }

    .featured-benefit {
        text-align: center;
        grid-template-columns: 1fr;
    }

    .benefit-stats {
        flex-direction: column;
        gap: var(--spacing-sm);
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .mega-icon {
        margin: 0 auto var(--spacing-md);
    }
}

/* Portfolio Melhorado */
.portfolio {
    padding: var(--spacing-xl) 0;
    position: relative;
    background: var(--white);
}

.portfolio-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.portfolio-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="portfolio-pattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="1" fill="rgba(0,123,255,0.05)"/><circle cx="5" cy="5" r="0.5" fill="rgba(118,75,162,0.05)"/><circle cx="25" cy="25" r="0.5" fill="rgba(0,212,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23portfolio-pattern)"/></svg>');
}

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

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

.portfolio-header .section-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.portfolio-header .section-title {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
}

.portfolio-header .title-highlight {
    background: linear-gradient(45deg, var(--blue-electric), #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
    flex-wrap: wrap;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    background: var(--white);
    color: var(--gray-medium);
    border: 2px solid var(--gray-light);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: 25px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--blue-electric);
    color: var(--white);
    border-color: var(--blue-electric);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

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

.portfolio-item {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.featured-item {
    grid-column: span 2;
}

.portfolio-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.featured-item .portfolio-image {
    height: 400px;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 123, 255, 0.95), rgba(118, 75, 162, 0.95));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    padding: var(--spacing-lg);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-info {
    text-align: center;
    color: var(--white);
}

.project-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    backdrop-filter: blur(10px);
}

.portfolio-info h4 {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

.portfolio-info p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
    opacity: 0.95;
}

.project-specs {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    flex-wrap: wrap;
}

.spec {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    backdrop-filter: blur(10px);
}

.btn-small {
    padding: var(--spacing-xs) var(--spacing-md);
    font-size: 0.9rem;
    background: var(--white);
    color: var(--blue-electric);
    font-weight: 600;
}

.btn-small:hover {
    background: var(--gray-light);
    transform: translateY(-1px);
}

.portfolio-details {
    padding: var(--spacing-lg);
}

.portfolio-details h4 {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--gray-dark);
    margin-bottom: var(--spacing-xs);
}

.portfolio-category {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.portfolio-category.geek {
    background: linear-gradient(45deg, #ff6b6b, #feca57);
    color: var(--white);
}

.portfolio-category.tech {
    background: linear-gradient(45deg, var(--blue-electric), #00d4ff);
    color: var(--white);
}

.portfolio-category.art {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: var(--white);
}

.portfolio-rating {
    display: flex;
    align-items: center;
    gap: 4px;
}

.portfolio-rating i {
    color: #ffc107;
    font-size: 0.9rem;
}

.rating-text {
    margin-left: var(--spacing-xs);
    font-size: 0.8rem;
    color: var(--gray-medium);
    font-weight: 600;
}

.portfolio-cta {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    border-radius: 20px;
    padding: var(--spacing-xl);
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.portfolio-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon points="0,0 100,0 50,100" fill="rgba(255,255,255,0.05)"/><polygon points="0,100 100,100 50,0" fill="rgba(255,255,255,0.05)"/></svg>');
    animation: geometricMove 15s linear infinite;
}

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

.portfolio-cta h3 {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    position: relative;
    z-index: 2;
}

.portfolio-cta p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
    opacity: 0.95;
    position: relative;
    z-index: 2;
}

.portfolio-cta .btn {
    position: relative;
    z-index: 2;
    background: var(--white);
    color: var(--blue-electric);
    font-weight: 700;
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: 1.1rem;
}

.portfolio-cta .btn:hover {
    background: var(--gray-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Responsividade Portfolio */
@media (max-width: 768px) {
    .portfolio-filters {
        gap: var(--spacing-sm);
    }

    .filter-btn {
        padding: var(--spacing-xs) var(--spacing-sm);
        font-size: 0.9rem;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .featured-item {
        grid-column: span 1;
    }

    .portfolio-image,
    .featured-item .portfolio-image {
        height: 250px;
    }

    .portfolio-overlay {
        padding: var(--spacing-md);
    }

    .portfolio-info h4 {
        font-size: 1.3rem;
    }

    .project-specs {
        flex-direction: column;
        gap: var(--spacing-xs);
    }

    .portfolio-cta {
        padding: var(--spacing-lg);
    }

    .portfolio-cta h3 {
        font-size: 1.5rem;
    }

    .portfolio-cta .btn {
        width: 100%;
        max-width: 300px;
    }
}

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

    .portfolio-filters {
        flex-direction: column;
        align-items: center;
    }

    .filter-btn {
        width: 200px;
        justify-content: center;
    }

    .portfolio-image,
    .featured-item .portfolio-image {
        height: 200px;
    }

    .portfolio-cta h3 {
        font-size: 1.3rem;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-sm) var(--spacing-md);
    border: none;
    border-radius: 8px;
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--blue-electric);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.cta-microcopy {
    font-size: 0.9rem;
    color: var(--gray-medium);
    margin-top: var(--spacing-xs);
    text-align: center;
}

.hero-badges {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-xs) var(--spacing-sm);
    background: var(--white);
    border: 1px solid var(--gray-metallic);
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--gray-dark);
    font-weight: 500;
}

.badge i {
    color: var(--blue-electric);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
}

.printer-animation {
    position: relative;
    width: 200px;
    height: 200px;
}

.printer-base {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 80px;
    background: var(--gray-metallic);
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.printer-head {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 40px;
    background: var(--blue-electric);
    border-radius: 4px;
    animation: print 3s infinite;
}

.print-line {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 0;
    background: var(--blue-electric);
    animation: printLine 3s infinite;
}

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

@keyframes printLine {
    0% { height: 0; }
    50% { height: 60px; }
    100% { height: 60px; }
}

/* Seções Gerais */
.section-title {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    color: var(--gray-dark);
    margin-bottom: var(--spacing-lg);
}

/* Proposta de Valor */
.value-proposition {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

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

.benefit-card {
    text-align: center;
    padding: var(--spacing-lg);
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(160, 160, 160, 0.1);
}

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

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-md);
    background: linear-gradient(135deg, var(--blue-electric), #0056b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
}

.benefit-card h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray-dark);
    margin-bottom: var(--spacing-sm);
}

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

/* Portfólio */
.portfolio {
    padding: var(--spacing-xl) 0;
    background: var(--gray-light);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

.portfolio-item {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.portfolio-image {
    height: 200px;
    background: var(--gray-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-img {
    width: 80px;
    height: 80px;
    background: var(--blue-electric);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
}

.portfolio-item h4 {
    padding: var(--spacing-sm);
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--gray-dark);
    text-align: center;
}

/* Depoimentos */
.testimonials {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

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

.testimonial-card {
    background: var(--gray-light);
    padding: var(--spacing-lg);
    border-radius: 12px;
    border-left: 4px solid var(--blue-electric);
}

.testimonial-content p {
    font-style: italic;
    color: var(--gray-dark);
    margin-bottom: var(--spacing-md);
    font-size: 1.1rem;
    line-height: 1.6;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--blue-electric);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}

.author-info h4 {
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--gray-dark);
    margin-bottom: 2px;
}

.author-info span {
    color: var(--gray-medium);
    font-size: 0.9rem;
}

/* Processo */
.process {
    padding: var(--spacing-xl) 0;
    background: var(--gray-light);
}

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

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--blue-electric);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.2rem;
    z-index: 2;
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 20px auto var(--spacing-md);
    background: var(--white);
    border: 3px solid var(--blue-electric);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--blue-electric);
}

.process-step h3 {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--gray-dark);
    margin-bottom: var(--spacing-sm);
}

.process-step p {
    color: var(--gray-medium);
    line-height: 1.6;
}

/* Preços - Seção Revolucionária */
.pricing {
    padding: var(--spacing-xl) 0;
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f1f3f4 100%);
    overflow: hidden;
}

.pricing-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.pricing-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.price-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(0, 123, 255, 0.1), rgba(118, 75, 162, 0.1));
    animation: floatPriceShape 20s ease-in-out infinite;
}

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

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

.price-shape.shape-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 30%;
    animation-delay: 14s;
}

@keyframes floatPriceShape {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-30px) rotate(120deg); }
    66% { transform: translateY(15px) rotate(240deg); }
}

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

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

.pricing-header .section-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    background: linear-gradient(45deg, #28a745, #20c997);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
    animation: priceGlow 3s ease-in-out infinite;
}

@keyframes priceGlow {
    0%, 100% { box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3); }
    50% { box-shadow: 0 8px 25px rgba(40, 167, 69, 0.5); }
}

.pricing-header .section-title {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
}

.pricing-header .title-highlight {
    background: linear-gradient(45deg, #28a745, #20c997);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
    background: rgba(255, 255, 255, 0.8);
    padding: var(--spacing-md);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.toggle-label {
    font-weight: 600;
    color: var(--gray-dark);
    font-size: 0.9rem;
}

.toggle-switch {
    width: 60px;
    height: 30px;
    background: var(--gray-light);
    border-radius: 15px;
    position: relative;
    cursor: pointer;
    transition: var(--transition);
}

.toggle-slider {
    width: 26px;
    height: 26px;
    background: var(--blue-electric);
    border-radius: 50%;
    position: absolute;
    top: 2px;
    left: 2px;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.3);
}

.toggle-slider.active {
    left: 32px;
    background: linear-gradient(45deg, #ff6b6b, #feca57);
}

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

.pricing-card {
    background: var(--white);
    border-radius: 20px;
    padding: var(--spacing-xl);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, var(--blue-electric), #00d4ff);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--blue-electric);
}

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

.pricing-card.featured {
    transform: scale(1.05);
    border-color: var(--blue-electric);
    box-shadow: 0 15px 35px rgba(0, 123, 255, 0.2);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-card.geek-special {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    border-color: #00d4ff;
}

.pricing-card.geek-special::before {
    background: linear-gradient(45deg, #ff6b6b, #feca57);
}

.popular-badge,
.geek-badge {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.popular-badge {
    background: linear-gradient(45deg, var(--blue-electric), #00d4ff);
    color: var(--white);
}

.geek-badge {
    background: linear-gradient(45deg, #ff6b6b, #feca57);
    color: var(--white);
}

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

.pricing-card.featured .card-header,
.pricing-card.geek-special .card-header {
    margin-top: calc(var(--spacing-lg) + 20px);
}

.plan-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--blue-electric), #00d4ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    margin: 0 auto var(--spacing-md);
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.3);
    transition: var(--transition);
}

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

.geek-special .plan-icon {
    background: linear-gradient(45deg, #ff6b6b, #feca57);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.3);
}

.card-header h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-dark);
    margin-bottom: var(--spacing-xs);
}

.geek-special .card-header h3 {
    color: var(--white);
}

.plan-description {
    color: var(--gray-medium);
    font-size: 0.9rem;
    line-height: 1.4;
}

.geek-special .plan-description {
    color: rgba(255, 255, 255, 0.9);
}

.price-section {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    padding: var(--spacing-md) 0;
    border-radius: 12px;
    background: rgba(0, 123, 255, 0.05);
}

.geek-special .price-section {
    background: rgba(255, 255, 255, 0.1);
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: var(--spacing-xs);
}

.currency {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--blue-electric);
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--blue-electric);
    line-height: 1;
}

.period {
    font-size: 0.9rem;
    color: var(--gray-medium);
    font-weight: 500;
}

.geek-special .currency,
.geek-special .amount {
    color: var(--white);
}

.geek-special .period {
    color: rgba(255, 255, 255, 0.8);
}

.price-note {
    font-size: 0.8rem;
    color: var(--gray-medium);
    font-weight: 500;
}

.geek-special .price-note {
    color: rgba(255, 255, 255, 0.8);
}

.features {
    margin-bottom: var(--spacing-lg);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-xs) 0;
    color: var(--gray-dark);
    font-size: 0.9rem;
    line-height: 1.4;
}

.feature-item i {
    color: var(--blue-electric);
    font-size: 0.8rem;
    width: 16px;
    flex-shrink: 0;
}

.geek-special .feature-item {
    color: var(--white);
}

.geek-special .feature-item i {
    color: #00d4ff;
}

.pricing-card .btn {
    width: 100%;
    padding: var(--spacing-md);
    font-weight: 700;
    border-radius: 12px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
}

.btn-outline {
    background: transparent;
    color: var(--blue-electric);
    border: 2px solid var(--blue-electric);
}

.btn-outline:hover {
    background: var(--blue-electric);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.3);
}

.btn-geek {
    background: linear-gradient(45deg, #ff6b6b, #feca57);
    color: var(--white);
    border: none;
}

.btn-geek:hover {
    background: linear-gradient(45deg, #ff5252, #ffb74d);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.4);
}

.pricing-footer {
    text-align: center;
    margin-top: var(--spacing-xl);
}

.guarantee-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    background: rgba(40, 167, 69, 0.1);
    padding: var(--spacing-lg);
    border-radius: 16px;
    margin-bottom: var(--spacing-lg);
    border: 2px solid rgba(40, 167, 69, 0.2);
}

.guarantee-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #28a745, #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(40, 167, 69, 0.3);
}

.guarantee-content {
    text-align: left;
}

.guarantee-content h4 {
    font-family: var(--font-primary);
    font-weight: 700;
    color: var(--gray-dark);
    margin-bottom: var(--spacing-xs);
    font-size: 1.2rem;
}

.guarantee-content p {
    color: var(--gray-medium);
    line-height: 1.5;
    margin: 0;
}

.pricing-benefits {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--gray-dark);
    font-weight: 600;
    font-size: 0.9rem;
}

.benefit-item i {
    color: var(--blue-electric);
    font-size: 1.1rem;
}

/* Modo Geek Toggle */
.pricing-grid.geek-mode .pricing-card:not(.geek-special) {
    opacity: 0.6;
    transform: scale(0.95);
}

.pricing-grid.geek-mode .pricing-card.geek-special {
    transform: scale(1.1);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
}

/* Responsividade Preços */
@media (max-width: 768px) {
    .pricing-header .section-title {
        font-size: 2rem;
    }

    .pricing-toggle {
        flex-direction: column;
        gap: var(--spacing-sm);
        padding: var(--spacing-sm);
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card:hover {
        transform: translateY(-5px);
    }

    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }

    .guarantee-section {
        flex-direction: column;
        text-align: center;
    }

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

    .pricing-benefits {
        gap: var(--spacing-md);
    }

    .pricing-grid.geek-mode .pricing-card.geek-special {
        transform: none;
    }
}

@media (max-width: 480px) {
    .pricing-header .section-title {
        font-size: 1.8rem;
    }

    .pricing-card {
        padding: var(--spacing-lg);
    }

    .amount {
        font-size: 2.5rem;
    }

    .pricing-benefits {
        flex-direction: column;
        gap: var(--spacing-sm);
        align-items: center;
    }

    .toggle-switch {
        width: 50px;
        height: 25px;
    }

    .toggle-slider {
        width: 21px;
        height: 21px;
    }

    .toggle-slider.active {
        left: 27px;
    }
}

/* Contato - Seção Revolucionária */
.contact {
    padding: var(--spacing-xl) 0;
    position: relative;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: var(--white);
    overflow: hidden;
}

.contact-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.contact-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.contact-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(0, 212, 255, 0.1));
    animation: floatContactShape 25s ease-in-out infinite;
}

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

.contact-shape.shape-2 {
    width: 200px;
    height: 200px;
    top: 40%;
    right: -30px;
    animation-delay: 8s;
}

.contact-shape.shape-3 {
    width: 150px;
    height: 150px;
    bottom: -30px;
    left: 30%;
    animation-delay: 16s;
}

@keyframes floatContactShape {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-40px) rotate(120deg); }
    66% { transform: translateY(20px) rotate(240deg); }
}

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

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

.contact-header .section-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    background: linear-gradient(45deg, #00d4ff, #0099cc);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
    animation: contactGlow 4s ease-in-out infinite;
}

@keyframes contactGlow {
    0%, 100% { box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3); }
    50% { box-shadow: 0 8px 25px rgba(0, 212, 255, 0.6); }
}

.contact-header .section-title {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--white);
}

.contact-header .title-highlight {
    background: linear-gradient(45deg, #00d4ff, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-header .section-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--spacing-xl);
    align-items: start;
}

.info-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: var(--spacing-xl);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

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

.info-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #25d366, #128c7e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    margin: 0 auto var(--spacing-md);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    animation: whatsappPulse 3s ease-in-out infinite;
}

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

.info-header h3 {
    font-family: var(--font-primary);
    font-weight: 700;
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

.info-card > p {
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: var(--transition);
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.contact-item i {
    width: 40px;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.contact-item h4 {
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--white);
    margin-bottom: 2px;
    font-size: 0.9rem;
}

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

.quick-contact {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: var(--spacing-md);
}

.quick-contact h4 {
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--white);
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.quick-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.btn-whatsapp {
    background: linear-gradient(45deg, #25d366, #128c7e);
    color: var(--white);
    border: none;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    transition: var(--transition);
    font-size: 0.9rem;
}

.btn-whatsapp:hover {
    background: linear-gradient(45deg, #128c7e, #25d366);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.contact-form-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: var(--spacing-xl);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

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

.form-header h3 {
    font-family: var(--font-primary);
    font-weight: 700;
    color: var(--gray-dark);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-xs);
}

.form-header p {
    color: var(--gray-medium);
    margin: 0;
}

.contact-form {
    color: var(--gray-dark);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
    color: var(--gray-dark);
    font-size: 0.9rem;
}

.form-group label i {
    color: var(--blue-electric);
    width: 16px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: var(--spacing-sm);
    border: 2px solid var(--gray-light);
    border-radius: 12px;
    font-family: var(--font-secondary);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--blue-electric);
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
    transform: translateY(-1px);
}

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

.file-upload {
    position: relative;
}

.file-input-wrapper {
    position: relative;
}

.file-input-wrapper input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.file-input-display {
    border: 2px dashed var(--gray-light);
    border-radius: 12px;
    padding: var(--spacing-lg);
    text-align: center;
    background: var(--gray-light);
    transition: var(--transition);
    cursor: pointer;
}

.file-input-display:hover {
    border-color: var(--blue-electric);
    background: rgba(0, 123, 255, 0.05);
}

.file-input-display i {
    font-size: 2rem;
    color: var(--blue-electric);
    margin-bottom: var(--spacing-sm);
}

.file-input-display span {
    display: block;
    font-weight: 600;
    color: var(--gray-dark);
    margin-bottom: var(--spacing-xs);
}

.file-input-display small {
    color: var(--gray-medium);
    font-size: 0.8rem;
}

.form-actions {
    text-align: center;
    margin-top: var(--spacing-lg);
}

.form-actions .btn {
    position: relative;
    overflow: hidden;
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    min-width: 250px;
    justify-content: center;
}

.form-actions .btn-shine {
    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;
}

.form-actions .btn:hover .btn-shine {
    left: 100%;
}

.form-note {
    margin-top: var(--spacing-md);
    color: var(--gray-medium);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
}

.form-note i {
    color: #28a745;
}

/* Responsividade Contato */
@media (max-width: 768px) {
    .contact-header .section-title {
        font-size: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .info-card {
        padding: var(--spacing-lg);
    }

    .contact-form-container {
        padding: var(--spacing-lg);
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }

    .form-actions .btn {
        width: 100%;
        min-width: auto;
    }

    .quick-buttons {
        flex-direction: row;
        gap: var(--spacing-xs);
    }

    .btn-whatsapp {
        font-size: 0.8rem;
        padding: var(--spacing-xs) var(--spacing-sm);
    }
}

@media (max-width: 480px) {
    .contact-header .section-title {
        font-size: 1.8rem;
    }

    .contact-header .section-subtitle {
        font-size: 1rem;
    }

    .info-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .contact-item {
        padding: var(--spacing-xs);
    }

    .contact-item i {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

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

    .form-header h3 {
        font-size: 1.3rem;
    }

    .file-input-display {
        padding: var(--spacing-md);
    }

    .file-input-display i {
        font-size: 1.5rem;
    }
}

/* Footer - Seção Premium Épica */
.footer {
    position: relative;
    background:
        radial-gradient(circle at 20% 80%, rgba(0, 123, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 212, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(138, 43, 226, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #0a0a1a 0%, #1a1a2e 25%, #16213e 50%, #0f3460 75%, #0a2040 100%);
    color: var(--white);
    padding: var(--spacing-xl) 0 0;
    overflow: hidden;
    width: 100vw;
    margin-left: -100vw;
    left: 50%;
    transform: translateX(50%);
    box-shadow:
        0 -20px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg,
        transparent 0%,
        #00d4ff 20%,
        #007bff 50%,
        #8a2be2 80%,
        transparent 100%);
    animation: footerGlow 3s ease-in-out infinite alternate;
}

@keyframes footerGlow {
    0% { opacity: 0.5; transform: scaleX(0.8); }
    100% { opacity: 1; transform: scaleX(1); }
}

.footer-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background:
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(0,212,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>') repeat;
}



.footer .container {
    position: relative;
    z-index: 2;
    backdrop-filter: blur(10px);
}

.footer-main {
    margin-bottom: var(--spacing-xl);
    padding: var(--spacing-lg);
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

.footer-main:hover {
    transform: translateY(-2px);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(0, 212, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
    position: relative;
}

.footer-content::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg,
        rgba(0, 212, 255, 0.05) 0%,
        transparent 25%,
        rgba(138, 43, 226, 0.05) 50%,
        transparent 75%,
        rgba(0, 123, 255, 0.05) 100%);
    border-radius: 25px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-content:hover::before {
    opacity: 1;
}

.brand-section {
    padding-right: var(--spacing-lg);
    position: relative;
}

.brand-section::after {
    content: '';
    position: absolute;
    right: 0;
    top: 10%;
    bottom: 10%;
    width: 1px;
    background: linear-gradient(to bottom,
        transparent 0%,
        rgba(0, 212, 255, 0.3) 20%,
        rgba(0, 212, 255, 0.6) 50%,
        rgba(0, 212, 255, 0.3) 80%,
        transparent 100%);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.footer-logo-img {
    height: 45px;
    width: auto;
    filter: brightness(1.3) drop-shadow(0 0 10px rgba(0, 212, 255, 0.3));
    transition: all 0.3s ease;
}

.footer-logo:hover .footer-logo-img {
    filter: brightness(1.5) drop-shadow(0 0 20px rgba(0, 212, 255, 0.6));
    transform: rotate(5deg);
}

.logo-text {
    display: flex;
    flex-direction: column;
    position: relative;
}

.brand-name {
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--white);
    line-height: 1;
    text-shadow:
        0 2px 4px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(0, 212, 255, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    transition: all 0.3s ease;
}

.brand-name::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00d4ff, #007bff);
    transition: width 0.3s ease;
}

.footer-logo:hover .brand-name::after {
    width: 100%;
}

.brand-tagline {
    font-size: 0.95rem;
    color: #00d4ff;
    font-weight: 600;
    margin-top: 2px;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
    animation: taglineGlow 2s ease-in-out infinite alternate;
}

@keyframes taglineGlow {
    0% { text-shadow: 0 0 10px rgba(0, 212, 255, 0.5); }
    100% { text-shadow: 0 0 20px rgba(0, 212, 255, 0.8); }
}

.brand-description {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: var(--spacing-lg);
    font-size: 0.95rem;
    position: relative;
    padding: var(--spacing-sm);
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border-left: 3px solid #00d4ff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.brand-description:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(5px);
    border-left-color: #007bff;
}

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

.social-link {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-xs) var(--spacing-sm);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.social-link.whatsapp:hover {
    background: #25d366;
    border-color: #25d366;
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-color: #bc1888;
}

.social-link.facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
}

.footer-section h4 {
    font-family: var(--font-primary);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--white);
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: 1.1rem;
}

.footer-section h4 i {
    color: #00d4ff;
    font-size: 1rem;
}

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
    display: block;
    padding: 4px 0;
}

.footer-section ul li a:hover {
    color: #00d4ff;
    transform: translateX(5px);
}

.contact-section .contact-info {
    margin-bottom: var(--spacing-lg);
}

.contact-section .contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    padding: var(--spacing-xs);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: var(--transition);
}

.contact-section .contact-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.contact-section .contact-item i {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    margin-top: 2px;
    width: 16px;
    flex-shrink: 0;
    transition: var(--transition);
}

.contact-section .contact-item:hover i {
    color: #00d4ff;
}

.contact-section .contact-item div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-section .contact-item strong {
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
}

.contact-section .contact-item span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.quick-contact-footer {
    margin-top: var(--spacing-md);
}

.btn-footer {
    background: linear-gradient(45deg, #25d366, #128c7e);
    color: var(--white);
    border: none;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: 25px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    transition: var(--transition);
    font-size: 0.9rem;
    width: 100%;
    justify-content: center;
}

.btn-footer:hover {
    background: linear-gradient(45deg, #128c7e, #25d366);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}



.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: var(--spacing-lg) 0;
    background: rgba(0, 0, 0, 0.3);
    width: 100vw;
    margin-left: -100vw;
    left: 50%;
    transform: translateX(50%);
    position: relative;
}

.footer-bottom-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.copyright {
    text-align: left;
}

.copyright p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.copyright .legal-text {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 4px;
}

.footer-links {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
    padding: 4px 8px;
    border-radius: 4px;
}

.footer-links a:hover {
    color: #00d4ff;
    background: rgba(255, 255, 255, 0.1);
}

.developer-credits {
    text-align: right;
}

.credits-text {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 4px 0;
}

.developer-link {
    display: inline-block;
    text-decoration: none;
    transition: var(--transition);
}

.developer-link:hover {
    transform: translateY(-2px);
}

.developer-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    margin-bottom: 2px;
}

.developer-logo i {
    color: #00d4ff;
    font-size: 1rem;
}

.developer-name {
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
}

.developer-tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    font-style: italic;
}

.developer-link:hover .developer-name {
    color: #00d4ff;
}

.developer-link:hover .developer-tagline {
    color: rgba(255, 255, 255, 0.9);
}

/* Responsividade Footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .brand-section {
        padding-right: 0;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--spacing-md);
    }

    .copyright,
    .developer-credits {
        text-align: center;
    }

    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .footer-logo {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-xs);
    }

    .social-links {
        flex-direction: column;
        align-items: center;
    }

    .social-link {
        width: 200px;
        justify-content: center;
    }

    .contact-section .contact-item {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-xs);
    }

    .footer-links {
        flex-direction: column;
        gap: var(--spacing-xs);
    }

    .developer-logo {
        justify-content: center;
    }
}

/* WhatsApp Widget */
.whatsapp-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    z-index: 1000;
}

.whatsapp-widget:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Loading Overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.loading-spinner {
    text-align: center;
    color: var(--white);
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--gray-metallic);
    border-top: 4px solid var(--blue-electric);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto var(--spacing-sm);
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsividade Header */
@media (max-width: 768px) {
    .header {
        padding: 0;
    }

    .nav-container {
        padding: var(--spacing-sm) var(--spacing-md);
    }

    .logo-text {
        font-size: 1.1rem;
    }

    .logo-img {
        height: 35px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background:
            linear-gradient(135deg,
                rgba(255, 255, 255, 0.98) 0%,
                rgba(248, 250, 252, 0.95) 100%);
        backdrop-filter: blur(20px);
        flex-direction: column;
        gap: 0;
        padding: var(--spacing-lg);
        border-top: 1px solid rgba(0, 123, 255, 0.1);
        box-shadow:
            0 8px 32px rgba(0, 0, 0, 0.12),
            0 2px 8px rgba(0, 0, 0, 0.08);
        animation: slideDown 0.3s ease-out;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: var(--spacing-sm) var(--spacing-md);
        margin: var(--spacing-xs) 0;
        border-radius: 12px;
        text-align: center;
        font-size: 1rem;
        background: rgba(0, 123, 255, 0.02);
        border: 1px solid rgba(0, 123, 255, 0.1);
        transition: all 0.3s ease;
    }

    .nav-links a:hover {
        background: rgba(0, 123, 255, 0.1);
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(0, 123, 255, 0.2);
    }

    .nav-toggle {
        display: flex;
    }
}

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

@media (max-width: 480px) {
    .nav-container {
        padding: var(--spacing-xs) var(--spacing-sm);
    }

    .logo-text {
        font-size: 1rem;
    }

    .logo-img {
        height: 32px;
    }

    .nav-links {
        padding: var(--spacing-md);
    }
}
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .whatsapp-widget {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .benefits-grid,
    .portfolio-grid,
    .testimonials-grid,
    .process-steps,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-badges {
        justify-content: center;
    }
}

/* Produtos Geeks - Design Épico */
.geek-products {
    padding: var(--spacing-xl) 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(102, 126, 234, 0.8) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(118, 75, 162, 0.8) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(138, 43, 226, 0.6) 0%, transparent 50%),
        linear-gradient(135deg, #0f0f23 0%, #1a1a2e 25%, #16213e 50%, #0f3460 75%, #667eea 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 20px 40px rgba(0, 0, 0, 0.2);
}

.geek-products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="geekGrid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(102,126,234,0.1)" stroke-width="0.5"/><circle cx="10" cy="10" r="1" fill="rgba(0,212,255,0.3)"/></pattern></defs><rect width="100" height="100" fill="url(%23geekGrid)"/></svg>') repeat;
    opacity: 0.4;
    animation: gridFloat 20s ease-in-out infinite;
}

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

.geek-products::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg,
        transparent 0%,
        #667eea 20%,
        #00d4ff 50%,
        #764ba2 80%,
        transparent 100%);
    animation: geekGlow 3s ease-in-out infinite alternate;
}

@keyframes geekGlow {
    0% { opacity: 0.5; transform: scaleX(0.8); }
    100% { opacity: 1; transform: scaleX(1); }
}

.geek-products .container {
    position: relative;
    z-index: 2;
    backdrop-filter: blur(5px);
}

.geek-products .section-title {
    color: var(--white);
    text-align: center;
    margin-bottom: var(--spacing-sm);
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg,
        #ffffff 0%,
        #00d4ff 50%,
        #667eea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: titleGlow 2s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% { filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.3)); }
    100% { filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.6)); }
}

.geek-products .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    margin-bottom: var(--spacing-xl);
    font-size: 1.2rem;
    font-weight: 500;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    position: relative;
    padding: var(--spacing-sm);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.geek-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
    perspective: 1000px;
}

.geek-category {
    background:
        linear-gradient(135deg,
            rgba(255, 255, 255, 0.15) 0%,
            rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    border-radius: 20px;
    padding: var(--spacing-xl);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    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.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.geek-category::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.6s ease;
}

.geek-category:hover::before {
    left: 100%;
}

.geek-category:hover {
    transform: translateY(-10px) rotateX(5deg);
    background:
        linear-gradient(135deg,
            rgba(255, 255, 255, 0.25) 0%,
            rgba(255, 255, 255, 0.1) 100%);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(102, 126, 234, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(102, 126, 234, 0.5);
}

.category-icon {
    width: 100px;
    height: 100px;
    background:
        linear-gradient(135deg,
            #00d4ff 0%,
            #667eea 50%,
            #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-lg);
    font-size: 2.5rem;
    color: var(--white);
    box-shadow:
        0 12px 30px rgba(0, 123, 255, 0.4),
        0 0 20px rgba(102, 126, 234, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.category-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 70%);
    transform: rotate(-45deg);
    transition: transform 0.6s ease;
}

.geek-category:hover .category-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow:
        0 20px 40px rgba(0, 123, 255, 0.5),
        0 0 30px rgba(102, 126, 234, 0.5),
        inset 0 2px 0 rgba(255, 255, 255, 0.4);
}

.geek-category:hover .category-icon::before {
    transform: rotate(-45deg) translate(100%, 100%);
}

.category-icon i {
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.geek-category h3 {
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 1.4rem;
    margin-bottom: var(--spacing-sm);
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg,
        #ffffff 0%,
        #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    transition: all 0.3s ease;
}

.geek-category:hover h3 {
    transform: translateY(-2px);
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.5));
}

.geek-category p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-lg);
    line-height: 1.7;
    font-size: 0.95rem;
    font-weight: 400;
}

.category-features {
    list-style: none;
    text-align: left;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: var(--spacing-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.category-features li {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-sm);
    position: relative;
    padding-left: var(--spacing-lg);
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 8px;
    padding-top: var(--spacing-xs);
    padding-bottom: var(--spacing-xs);
}

.category-features li:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
    color: #00d4ff;
}

.category-features li::before {
    content: '⚡';
    position: absolute;
    left: var(--spacing-xs);
    color: #00d4ff;
    font-weight: bold;
    font-size: 1.1rem;
    animation: sparkle 2s ease-in-out infinite;
}

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

.category-features li:nth-child(1)::before { animation-delay: 0s; }
.category-features li:nth-child(2)::before { animation-delay: 0.3s; }
.category-features li:nth-child(3)::before { animation-delay: 0.6s; }

.geek-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
    perspective: 1000px;
}

.showcase-item {
    background:
        linear-gradient(135deg,
            rgba(255, 255, 255, 0.15) 0%,
            rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.showcase-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(102, 126, 234, 0.1) 0%,
        rgba(118, 75, 162, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.showcase-item:hover::before {
    opacity: 1;
}

.showcase-item:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(102, 126, 234, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(102, 126, 234, 0.5);
}

.showcase-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.showcase-item:hover img {
    transform: scale(1.05);
    filter: brightness(1.1) saturate(1.2);
}

.showcase-info {
    padding: var(--spacing-lg);
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.showcase-info h4 {
    font-family: var(--font-primary);
    font-weight: 800;
    color: var(--white);
    margin-bottom: var(--spacing-xs);
    font-size: 1.2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg,
        #ffffff 0%,
        #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.showcase-info p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-md);
    font-size: 0.95rem;
    line-height: 1.5;
}

.showcase-info .price {
    color: #00d4ff;
    font-weight: 800;
    font-size: 1.2rem;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
    display: inline-block;
    padding: var(--spacing-xs) var(--spacing-sm);
    background: rgba(0, 212, 255, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(0, 212, 255, 0.3);
    animation: priceGlow 2s ease-in-out infinite alternate;
}

@keyframes priceGlow {
    0% {
        box-shadow: 0 0 5px rgba(0, 212, 255, 0.3);
        transform: scale(1);
    }
    100% {
        box-shadow: 0 0 15px rgba(0, 212, 255, 0.6);
        transform: scale(1.02);
    }
}

/* Elementos Flutuantes Geeks */
.geek-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-geek-icon {
    position: absolute;
    font-size: 2rem;
    opacity: 0.6;
    animation: floatGeek 15s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(102, 126, 234, 0.5));
}

.floating-geek-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.floating-geek-2 {
    top: 20%;
    right: 10%;
    animation-delay: 2s;
}

.floating-geek-3 {
    top: 60%;
    left: 8%;
    animation-delay: 4s;
}

.floating-geek-4 {
    top: 70%;
    right: 15%;
    animation-delay: 6s;
}

.floating-geek-5 {
    top: 40%;
    left: 3%;
    animation-delay: 8s;
}

.floating-geek-6 {
    top: 80%;
    right: 5%;
    animation-delay: 10s;
}

@keyframes floatGeek {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1);
        opacity: 0.4;
    }
    25% {
        transform: translateY(-20px) rotate(5deg) scale(1.1);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-40px) rotate(-5deg) scale(0.9);
        opacity: 0.3;
    }
    75% {
        transform: translateY(-15px) rotate(3deg) scale(1.05);
        opacity: 0.6;
    }
}

/* Portfolio melhorado */
.portfolio .section-subtitle {
    text-align: center;
    color: var(--gray-medium);
    margin-bottom: var(--spacing-xl);
    font-size: 1.1rem;
}

.portfolio-image {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    height: 250px;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 123, 255, 0.9), rgba(118, 75, 162, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-info {
    text-align: center;
    color: var(--white);
    padding: var(--spacing-md);
}

.portfolio-info h4 {
    font-family: var(--font-primary);
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
    font-size: 1.3rem;
}

.portfolio-info p {
    font-size: 1rem;
    opacity: 0.9;
}

.portfolio-category {
    display: inline-block;
    background: var(--blue-electric);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-top: var(--spacing-xs);
}

/* Hero melhorado */
.hero-main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    margin-bottom: var(--spacing-md);
}

/* Processo melhorado */
.process {
    position: relative;
    overflow: hidden;
}

.process-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.process-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.1;
}

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

.process .section-subtitle {
    text-align: center;
    color: var(--gray-medium);
    margin-bottom: var(--spacing-xl);
    font-size: 1.1rem;
}

/* Melhorias responsivas */
@media (max-width: 768px) {
    .geek-categories,
    .geek-showcase {
        grid-template-columns: 1fr;
    }

    .hero-main-image {
        height: 250px;
    }

    .portfolio-image {
        height: 200px;
    }

    .showcase-item img {
        height: 150px;
    }
}

/* CTA Geek */
.cta-geek {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-geek::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="20" cy="80" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="80" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

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

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    margin-bottom: var(--spacing-xl);
}

.cta-text h2 {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
    background: linear-gradient(45deg, #fff, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-text p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
    color: rgba(255, 255, 255, 0.9);
}

.cta-features {
    display: flex;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: rgba(255, 255, 255, 0.9);
}

.cta-feature i {
    color: #00d4ff;
    font-size: 1.2rem;
}

.cta-image {
    position: relative;
}

.cta-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.cta-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.floating-icon {
    position: absolute;
    font-size: 2rem;
    animation: floatIcon 3s ease-in-out infinite;
}

.floating-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.floating-2 {
    top: 20%;
    right: 15%;
    animation-delay: 0.5s;
}

.floating-3 {
    bottom: 30%;
    left: 15%;
    animation-delay: 1s;
}

.floating-4 {
    bottom: 15%;
    right: 10%;
    animation-delay: 1.5s;
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

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

.btn-large {
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: 1.1rem;
    font-weight: 600;
}

.btn-secondary {
    background: transparent;
    color: var(--gray-dark);
    border: 2px solid var(--blue-electric);
    position: relative;
    overflow: hidden;
}

.btn-secondary:hover {
    background: var(--blue-electric);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
}

/* Botão secundário específico para hero */
.hero .btn-secondary {
    background: var(--white);
    color: var(--blue-electric);
    border: 2px solid var(--blue-electric);
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.2);
}

.hero .btn-secondary:hover {
    background: var(--blue-electric);
    color: var(--white);
    border-color: var(--blue-electric);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.4);
}

.hero .btn-secondary i {
    color: inherit;
}

.hero .btn-secondary span {
    color: inherit;
    font-weight: 700;
}

/* Botão secundário na seção CTA geek */
.cta-geek .btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: 2px solid var(--white);
    backdrop-filter: blur(10px);
    font-weight: 700;
}

.cta-geek .btn-secondary:hover {
    background: var(--white);
    color: var(--blue-electric);
    border-color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* Garantir visibilidade em todos os botões secundários */
.btn-secondary {
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-secondary i,
.btn-secondary span {
    color: inherit;
}

/* Responsividade CTA */
@media (max-width: 768px) {
    .cta-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cta-text h2 {
        font-size: 2rem;
    }

    .cta-features {
        justify-content: center;
        flex-wrap: wrap;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-large {
        width: 100%;
        max-width: 300px;
    }
}



/* Melhorias gerais */
.section-subtitle {
    text-align: center;
    color: var(--gray-medium);
    margin-bottom: var(--spacing-xl);
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Animações suaves */
.portfolio-item,
.geek-category,
.showcase-item,
.pricing-card {
    animation: fadeInUp 0.6s ease-out;
}

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

/* Melhorias na animação da impressora */
.printer-animation {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto;
}

.printer-base {
    width: 100%;
    height: 60%;
    background: linear-gradient(45deg, var(--gray-metallic), var(--gray-dark));
    border-radius: 8px;
    position: absolute;
    bottom: 0;
}

.printer-head {
    width: 40%;
    height: 20px;
    background: var(--blue-electric);
    border-radius: 4px;
    position: absolute;
    top: 20%;
    left: 30%;
    animation: printMove 3s ease-in-out infinite;
}

.print-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--blue-electric), transparent);
    position: absolute;
    top: 40%;
    left: 50%;
    animation: printDrop 3s ease-in-out infinite;
}

@keyframes printMove {
    0%, 100% { left: 10%; }
    50% { left: 50%; }
}

@keyframes printDrop {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

/* Melhorias de acessibilidade */
.btn:focus,
.nav-links a:focus {
    outline: 2px solid var(--blue-electric);
    outline-offset: 2px;
}

/* Otimizações de performance */
.portfolio-image img,
.showcase-item img,
.cta-image img,
.hero-main-image {
    will-change: transform;
}

/* Ajustes finais responsivos */
@media (max-width: 480px) {
    .cta-text h2 {
        font-size: 1.8rem;
    }

    .floating-icon {
        font-size: 1.5rem;
    }

    .geek-categories {
        gap: var(--spacing-md);
    }

    .cta-features {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
}

/* Responsividade Hero Section */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--spacing-lg);
    }

    .hero-content {
        order: 2;
    }

    .hero-image {
        order: 1;
    }

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

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

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn-hero {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .hero-trust-indicators {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-badges {
        justify-content: center;
    }

    .badge {
        flex: 1;
        min-width: 140px;
        justify-content: center;
    }

    .hero-main-image {
        height: 300px;
    }

    .floating-product {
        width: 60px;
        height: 60px;
    }

    .printer-animation {
        width: 100px;
        height: 100px;
        bottom: -15px;
        right: -15px;
    }
}

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

    .hero-trust-indicators {
        flex-direction: column;
        gap: var(--spacing-xs);
    }

    .hero-badges {
        flex-direction: column;
        gap: var(--spacing-sm);
    }

    .badge {
        min-width: auto;
    }

    .floating-product {
        width: 50px;
        height: 50px;
    }

    .printer-animation {
        width: 80px;
        height: 80px;
    }
}