/* ===================================
   LUMO TECNOLOGIA - STYLES
   =================================== */

/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Cores principais */
    --primary: #6366F1;
    --primary-light: #818CF8;
    --primary-dark: #4F46E5;
    --secondary: #10B981;
    --accent: #F59E0B;
    
    /* Backgrounds */
    --bg-dark: #0F0F1A;
    --bg-darker: #080810;
    --bg-card: rgba(255, 255, 255, 0.02);
    --bg-card-hover: rgba(255, 255, 255, 0.05);
    
    /* Textos */
    --text-white: #FFFFFF;
    --text-light: #E2E8F0;
    --text-gray: #94A3B8;
    --text-muted: #64748B;
    
    /* Gradientes */
    --gradient-primary: linear-gradient(135deg, #6366F1 0%, #8B5CF6 50%, #A855F7 100%);
    --gradient-secondary: linear-gradient(135deg, #10B981 0%, #34D399 100%);
    --gradient-accent: linear-gradient(135deg, #F59E0B 0%, #FBBF24 100%);
    --gradient-dark: linear-gradient(135deg, #1E1B4B 0%, #0F0F1A 100%);
    
    /* Sombras */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 40px rgba(99, 102, 241, 0.3);
    
    /* Transições */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-full: 9999px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===================================
   TYPOGRAPHY
   =================================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-white);
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.25rem; }

p {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.7;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-light {
    background: linear-gradient(135deg, #fff 0%, #E2E8F0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===================================
   BUTTONS
   =================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all var(--transition-normal);
}

.btn-lg {
    padding: 18px 36px;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-white);
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-white {
    background: var(--text-white);
    color: var(--bg-dark);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.btn-ghost-light {
    background: transparent;
    color: var(--text-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-ghost-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* ===================================
   SECTION STYLES
   =================================== */

.section-label {
    display: inline-block;
    color: var(--primary-light);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-label.light {
    color: rgba(255, 255, 255, 0.7);
}

.section-header {
    margin-bottom: 60px;
}

.section-header.center {
    text-align: center;
}

.section-header p {
    max-width: 600px;
    margin-top: 16px;
    font-size: 1.1rem;
}

.section-header.center p {
    margin-left: auto;
    margin-right: auto;
}

/* ===================================
   PRELOADER - ULTRA PROFISSIONAL
   =================================== */

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, #1a1a2e 0%, #0f0f1a 50%, #050510 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.8s ease, visibility 0.8s ease, transform 0.8s ease;
    overflow: hidden;
}

.preloader::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-bg 3s ease-in-out infinite;
}

.preloader::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-bg 3s ease-in-out infinite 0.5s;
}

@keyframes pulse-bg {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 1; }
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    transform: scale(1.1);
}

.loader {
    text-align: center;
    position: relative;
    z-index: 10;
}

/* Container do ícone */
.loader-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    position: relative;
    animation: float 3s ease-in-out infinite;
}

.loader-icon-box {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #6366F1 0%, #8B5CF6 50%, #A855F7 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 20px 60px rgba(99, 102, 241, 0.4),
        0 0 100px rgba(139, 92, 246, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    animation: icon-glow 2s ease-in-out infinite alternate;
}

.loader-icon-box span {
    font-size: 48px;
    font-weight: 900;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

@keyframes icon-glow {
    0% {
        box-shadow: 
            0 20px 60px rgba(99, 102, 241, 0.4),
            0 0 100px rgba(139, 92, 246, 0.2);
        transform: rotateY(0deg);
    }
    100% {
        box-shadow: 
            0 25px 80px rgba(99, 102, 241, 0.6),
            0 0 150px rgba(139, 92, 246, 0.4);
        transform: rotateY(5deg);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Texto LUMO */
.loader-text {
    font-size: 5rem;
    font-weight: 900;
    letter-spacing: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    animation: text-appear 0.8s ease forwards;
}

.loader-text .lu {
    color: #FFFFFF;
    text-shadow: 
        0 0 20px rgba(255, 255, 255, 0.5),
        0 0 40px rgba(255, 255, 255, 0.2);
    animation: letter-glow 2s ease-in-out infinite;
}

.loader-text .mo {
    background: linear-gradient(135deg, #818CF8 0%, #6366F1 50%, #A855F7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 30px rgba(99, 102, 241, 0.5));
    animation: gradient-shift 3s ease-in-out infinite;
}

@keyframes letter-glow {
    0%, 100% { text-shadow: 0 0 20px rgba(255, 255, 255, 0.5), 0 0 40px rgba(255, 255, 255, 0.2); }
    50% { text-shadow: 0 0 30px rgba(255, 255, 255, 0.8), 0 0 60px rgba(255, 255, 255, 0.4); }
}

@keyframes gradient-shift {
    0%, 100% { filter: drop-shadow(0 0 30px rgba(99, 102, 241, 0.5)) hue-rotate(0deg); }
    50% { filter: drop-shadow(0 0 50px rgba(139, 92, 246, 0.7)) hue-rotate(20deg); }
}

@keyframes text-appear {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Subtítulo TECNOLOGIA */
.loader-subtitle {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 10px;
    color: #94A3B8;
    text-transform: uppercase;
    margin-bottom: 40px;
    animation: subtitle-appear 0.8s ease forwards 0.3s;
    opacity: 0;
}

@keyframes subtitle-appear {
    0% { opacity: 0; transform: translateY(10px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Barra de loading melhorada */
.loader-bar {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    overflow: hidden;
    position: relative;
    margin: 0 auto;
}

.loader-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 2s infinite;
}

.loader-bar::after {
    content: '';
    display: block;
    width: 40%;
    height: 100%;
    background: linear-gradient(90deg, #6366F1, #8B5CF6, #A855F7);
    border-radius: var(--radius-full);
    animation: loading 1.2s ease infinite;
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.5);
}

@keyframes loading {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(350%); }
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Partículas flutuantes */
.loader-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.loader-particles span {
    position: absolute;
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, #6366F1, #A855F7);
    border-radius: 50%;
    animation: particle-float 4s ease-in-out infinite;
    opacity: 0.6;
}

.loader-particles span:nth-child(1) { left: 10%; animation-delay: 0s; }
.loader-particles span:nth-child(2) { left: 20%; animation-delay: 0.5s; }
.loader-particles span:nth-child(3) { left: 30%; animation-delay: 1s; }
.loader-particles span:nth-child(4) { left: 70%; animation-delay: 1.5s; }
.loader-particles span:nth-child(5) { left: 80%; animation-delay: 2s; }
.loader-particles span:nth-child(6) { left: 90%; animation-delay: 2.5s; }

@keyframes particle-float {
    0%, 100% { 
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100px) scale(1);
        opacity: 0;
    }
}

/* ===================================
   HEADER
   =================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(15, 15, 26, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-normal);
}

.header.scrolled {
    padding: 12px 0;
    background: rgba(8, 8, 16, 0.95);
    box-shadow: var(--shadow-md);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    height: 65px;
    width: auto;
    transition: all var(--transition-normal);
    filter: drop-shadow(0 0 10px rgba(99, 102, 241, 0.2));
}

.logo:hover .logo-img {
    transform: scale(1.08);
    filter: drop-shadow(0 0 25px rgba(99, 102, 241, 0.6));
}

.logo-icon {
    font-size: 1.5rem;
}

.logo-text {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-white);
}

.logo-accent {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 36px;
}

.nav-menu a {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color var(--transition-fast);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--transition-normal);
}

.nav-menu a:hover {
    color: var(--text-white);
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--text-white);
    border-radius: var(--radius-full);
    transition: all var(--transition-normal);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ===================================
   HERO SECTION
   =================================== */

.hero {
    min-height: 100vh;
    padding: 140px 0 80px;
    position: relative;
    background: var(--bg-darker);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-bg-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
}

.circle-1 {
    width: 600px;
    height: 600px;
    background: var(--primary);
    top: -200px;
    right: -200px;
}

.circle-2 {
    width: 400px;
    height: 400px;
    background: #8B5CF6;
    bottom: -100px;
    left: -100px;
}

.circle-3 {
    width: 300px;
    height: 300px;
    background: var(--secondary);
    top: 50%;
    right: 20%;
    opacity: 0.2;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    color: var(--primary-light);
    margin-bottom: 24px;
}

.hero-content h1 {
    margin-bottom: 24px;
}

.hero-content > p {
    font-size: 1.2rem;
    margin-bottom: 32px;
    max-width: 540px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 48px;
}

.stat {
    text-align: left;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-white);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.hero-mockup {
    position: relative;
    perspective: 1000px;
}

.mockup-browser {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transform: rotateY(-10deg) rotateX(5deg);
    box-shadow: var(--shadow-lg);
}

.browser-header {
    display: flex;
    gap: 8px;
    padding: 16px;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.browser-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.browser-dot.red { background: #FF5F57; }
.browser-dot.yellow { background: #FEBC2E; }
.browser-dot.green { background: #28C840; }

.browser-content {
    padding: 0;
    min-height: 250px;
    overflow: hidden;
}

.mockup-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.code-line {
    height: 12px;
    background: rgba(99, 102, 241, 0.3);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
}

.code-line.short { width: 60%; }
.code-line.medium { width: 80%; }

.mockup-phone {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 160px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 8px;
    transform: rotate(10deg);
    box-shadow: var(--shadow-lg);
}

.phone-screen {
    background: var(--bg-darker);
    border-radius: 16px;
    overflow: hidden;
    height: 280px;
}

.app-header {
    height: 40px;
    background: var(--gradient-primary);
}

.app-content {
    padding: 12px;
}

.app-card {
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    margin-bottom: 8px;
}

/* ===================================
   BANNER ROTATIVO DE SERVIÇOS
   =================================== */

.banner-rotativo {
    position: relative;
    width: 100%;
    max-width: 500px;
    min-height: 300px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 
        0 25px 60px rgba(99, 102, 241, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-item {
    display: none;
    text-align: center;
    padding: 60px 40px;
    animation: bannerFadeIn 0.6s ease;
}

.banner-item.active {
    display: block;
}

@keyframes bannerFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.banner-emoji {
    font-size: 5rem;
    display: block;
    margin-bottom: 20px;
    animation: emojiPulse 2s ease-in-out infinite;
}

@keyframes emojiPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.banner-titulo {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 12px;
    background: linear-gradient(135deg, #FFFFFF 0%, #818CF8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.banner-subtitulo {
    font-size: 1.2rem;
    color: var(--text-muted);
    font-weight: 400;
}

.banner-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.banner-dots .dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.banner-dots .dot:hover {
    background: rgba(255, 255, 255, 0.4);
}

.banner-dots .dot.active {
    background: var(--primary);
    transform: scale(1.2);
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.5);
}

/* Antigo Slider - não usado */
.hero-slider {
    display: none;
}

.slider-dots {
    display: none;
}

/* Hero Tags */
.hero-tags {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
}

.tag {
    position: absolute;
    padding: 12px 20px;
    border-radius: var(--radius-lg);
    font-size: 0.9rem;
    font-weight: 500;
    animation: float 6s ease-in-out infinite;
    backdrop-filter: blur(10px);
}

.tag-sites {
    background: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.3);
    color: var(--primary-light);
    top: 20%;
    right: 8%;
}

.tag-apps {
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: var(--secondary);
    top: 35%;
    right: 3%;
    animation-delay: 1s;
}

.tag-design {
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid rgba(245, 158, 11, 0.3);
    color: var(--accent);
    top: 50%;
    right: 10%;
    animation-delay: 2s;
}

.tag-sistemas {
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.3);
    color: #A78BFA;
    top: 65%;
    right: 5%;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.8rem;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--primary), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    50.1% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ===================================
   ABOUT SECTION
   =================================== */

.about {
    padding: 120px 0;
    background: var(--bg-dark);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-lead {
    font-size: 1.15rem;
    color: var(--text-light);
    margin: 24px 0;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 32px;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.feature-icon {
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(99, 102, 241, 0.1);
    border-radius: var(--radius-md);
}

.feature-text strong {
    display: block;
    color: var(--text-white);
    margin-bottom: 4px;
}

.feature-text span {
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* About Visual */
.about-visual {
    position: relative;
}

.about-image {
    position: relative;
    z-index: 1;
}

.image-placeholder {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #1E1B4B 0%, #0F172A 50%, #0F0F1A 100%);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(99, 102, 241, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 0;
    box-shadow: 
        0 0 60px rgba(99, 102, 241, 0.1),
        inset 0 0 80px rgba(99, 102, 241, 0.05);
    overflow: hidden;
    position: relative;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 50%);
    animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

/* Nova imagem do programador */
.about-programmer-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    transition: transform var(--transition-slow);
}

.image-placeholder:hover .about-programmer-img {
    transform: scale(1.05);
}

.image-placeholder span {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
    background: linear-gradient(to top, rgba(15, 15, 26, 0.9), transparent);
    width: 100%;
    padding: 40px 20px 20px;
    text-align: center;
}

/* Remover estilo antigo do foguete */
.about-rocket-img {
    display: none;
}

/* Floating Cards - Sobre */
.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: rgba(15, 15, 26, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    z-index: 10;
    animation: float 3s ease-in-out infinite;
}

.floating-card i {
    font-size: 1.3rem;
    color: var(--primary-light);
}

.floating-card.card-1 {
    bottom: 30%;
    left: -30px;
    animation-delay: 0s;
}

.floating-card.card-1 i {
    color: #FBBF24;
}

.floating-card.card-2 {
    bottom: 10%;
    left: 20px;
    animation-delay: 1.5s;
}

.floating-card.card-2 i {
    color: #60A5FA;
}

.card-text {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.95rem;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ===================================
   SERVICES SECTION
   =================================== */

.services {
    padding: 120px 0;
    background: var(--bg-darker);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    transition: all var(--transition-normal);
}

.service-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-8px);
}

.service-card.featured {
    border-color: rgba(99, 102, 241, 0.3);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.05) 100%);
}

.service-card.wide {
    grid-column: span 2;
}

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-primary);
    color: var(--text-white);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: var(--radius-full);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-icon span {
    font-size: 2rem;
}

.service-card h3 {
    margin-bottom: 16px;
}

.service-card > p {
    margin-bottom: 24px;
}

.service-features {
    list-style: none;
    margin-bottom: 24px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.service-features li i {
    color: var(--secondary);
    font-size: 0.8rem;
}

.service-features.horizontal {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 20px;
}

/* ===================================
   PROCESS SECTION
   =================================== */

.process {
    padding: 120px 0;
    background: var(--bg-dark);
}

.process-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary), var(--secondary));
    opacity: 0.3;
}

.process-step {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 80px;
    height: 80px;
    min-width: 80px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-white);
    position: relative;
    z-index: 1;
}

.step-content {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 32px;
    flex: 1;
    transition: all var(--transition-normal);
}

.step-content:hover {
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateX(10px);
}

.step-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.step-content h3 {
    margin-bottom: 12px;
}

.step-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.step-tags span {
    padding: 6px 12px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    color: var(--primary-light);
}

/* ===================================
   TECHNOLOGIES SECTION
   =================================== */

.technologies {
    padding: 100px 0;
    background: var(--bg-darker);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.tech-category {
    margin-bottom: 50px;
}

.tech-category:last-child {
    margin-bottom: 0;
}

.tech-category-title {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 25px;
    font-weight: 500;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 24px 16px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
    cursor: pointer;
}

.tech-item:hover {
    border-color: rgba(99, 102, 241, 0.4);
    transform: translateY(-8px);
    background: rgba(99, 102, 241, 0.1);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.2);
}

.tech-item i {
    font-size: 2.2rem;
    color: var(--primary-light);
    transition: all var(--transition-normal);
}

.tech-item:hover i {
    color: var(--text-white);
    transform: scale(1.1);
}

.tech-item span {
    font-size: 0.85rem;
    color: var(--text-gray);
    font-weight: 500;
    text-align: center;
}

/* ===================================
   PORTFOLIO SECTION
   =================================== */

.portfolio {
    padding: 120px 0;
    background: var(--bg-dark);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.portfolio-item {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-normal);
}

.portfolio-item:hover {
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-8px);
}

/* ===================================
   CLIENTES - Sites que fizemos
   =================================== */

.clientes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.cliente-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 28px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    text-decoration: none;
    transition: all var(--transition-normal);
}

.cliente-card:hover {
    background: rgba(99, 102, 241, 0.08);
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15);
}

.cliente-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cliente-icon i {
    font-size: 1.5rem;
    color: white;
}

.cliente-info {
    flex: 1;
}

.cliente-info h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 4px;
}

.cliente-site {
    font-size: 0.9rem;
    color: var(--primary-light);
}

.cliente-arrow {
    opacity: 0;
    transform: translateX(-10px);
    transition: all var(--transition-fast);
}

.cliente-arrow i {
    color: var(--primary-light);
    font-size: 1rem;
}

.cliente-card:hover .cliente-arrow {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 1024px) {
    .clientes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .clientes-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   PORTFOLIO - Antigo (não usado)
   =================================== */

.portfolio-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.portfolio-image {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.portfolio-item.large .portfolio-image {
    aspect-ratio: auto;
    height: 300px;
}

.portfolio-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition-normal);
}

.portfolio-item:hover .portfolio-placeholder {
    transform: scale(1.05);
}

.portfolio-placeholder.gradient-1 { background: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%); }
.portfolio-placeholder.gradient-2 { background: linear-gradient(135deg, #10B981 0%, #34D399 100%); }
.portfolio-placeholder.gradient-3 { background: linear-gradient(135deg, #F59E0B 0%, #FBBF24 100%); }
.portfolio-placeholder.gradient-4 { background: linear-gradient(135deg, #EC4899 0%, #F472B6 100%); }
.portfolio-placeholder.gradient-5 { background: linear-gradient(135deg, #06B6D4 0%, #22D3EE 100%); }

.portfolio-icon {
    font-size: 3rem;
    filter: brightness(1.5);
}

.portfolio-svg-icon {
    width: 100px;
    height: 100px;
    filter: drop-shadow(0 4px 20px rgba(255, 255, 255, 0.3));
    transition: transform var(--transition-normal);
}

.portfolio-item:hover .portfolio-svg-icon {
    transform: scale(1.1);
}

.portfolio-item.large .portfolio-svg-icon {
    width: 140px;
    height: 140px;
}

/* Imagens reais do portfólio */
.portfolio-real-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 100%);
    transition: transform var(--transition-normal), filter var(--transition-normal);
}

.portfolio-item:hover .portfolio-real-img {
    transform: scale(1.05);
}

.portfolio-placeholder:has(.portfolio-real-img) {
    background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 100%);
}

.portfolio-placeholder.gradient-1:has(.portfolio-real-img)::before,
.portfolio-placeholder.gradient-2:has(.portfolio-real-img)::before,
.portfolio-placeholder.gradient-3:has(.portfolio-real-img)::before,
.portfolio-placeholder.gradient-4:has(.portfolio-real-img)::before,
.portfolio-placeholder.gradient-5:has(.portfolio-real-img)::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.3;
    transition: opacity var(--transition-normal);
}

.portfolio-placeholder.gradient-1:has(.portfolio-real-img)::before { background: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%); }
.portfolio-placeholder.gradient-2:has(.portfolio-real-img)::before { background: linear-gradient(135deg, #10B981 0%, #34D399 100%); }
.portfolio-placeholder.gradient-3:has(.portfolio-real-img)::before { background: linear-gradient(135deg, #F59E0B 0%, #FBBF24 100%); }
.portfolio-placeholder.gradient-4:has(.portfolio-real-img)::before { background: linear-gradient(135deg, #EC4899 0%, #F472B6 100%); }
.portfolio-placeholder.gradient-5:has(.portfolio-real-img)::before { background: linear-gradient(135deg, #06B6D4 0%, #22D3EE 100%); }

.portfolio-item:hover .portfolio-placeholder:has(.portfolio-real-img)::before {
    opacity: 0.15;
}

.portfolio-placeholder {
    position: relative;
}

.portfolio-info {
    padding: 24px;
}

.portfolio-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.tag-category {
    background: var(--gradient-primary);
    color: var(--text-white);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
}

.tag-tech {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
}

.portfolio-info h3 {
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.portfolio-info p {
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.portfolio-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: gap var(--transition-fast);
}

.portfolio-link:hover {
    gap: 12px;
}

/* ===================================
   TESTIMONIALS SECTION
   =================================== */

.testimonials {
    padding: 120px 0;
    background: var(--bg-darker);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all var(--transition-normal);
}

.testimonial-card:hover {
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-5px);
}

.testimonial-rating {
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: var(--accent);
    font-size: 0.9rem;
}

.testimonial-card > p {
    font-style: italic;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-weight: 700;
    font-size: 0.9rem;
}

.author-info strong {
    display: block;
    color: var(--text-white);
    font-size: 0.95rem;
}

.author-info span {
    font-size: 0.85rem;
    color: var(--text-gray);
}

/* ===================================
   CTA SECTION
   =================================== */

.cta {
    padding: 120px 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.shape-1 {
    width: 400px;
    height: 400px;
    top: -200px;
    right: -100px;
}

.shape-2 {
    width: 300px;
    height: 300px;
    bottom: -150px;
    left: -100px;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta h2 {
    margin-bottom: 16px;
}

.cta p {
    max-width: 600px;
    margin: 0 auto 32px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.cta-contact-info {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.contact-item i {
    font-size: 1.1rem;
}

/* ===================================
   FAQ SECTION
   =================================== */

.faq {
    padding: 120px 0;
    background: var(--bg-dark);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.faq-question:hover {
    background: var(--bg-card-hover);
}

.faq-question span {
    font-weight: 600;
    color: var(--text-white);
    font-size: 1rem;
}

.faq-question i {
    color: var(--primary-light);
    transition: transform var(--transition-normal);
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 24px 24px;
    font-size: 0.95rem;
}

/* ===================================
   MARQUEE
   =================================== */

.marquee {
    background: var(--bg-darker);
    padding: 24px 0;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.marquee-content {
    display: flex;
    gap: 48px;
    animation: marquee 25s linear infinite;
    white-space: nowrap;
}

.marquee-content span {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-muted);
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===================================
   FOOTER
   =================================== */

.footer {
    padding: 80px 0 40px;
    background: var(--bg-darker);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 40px;
    width: auto;
}

.footer-brand p {
    margin-bottom: 24px;
    max-width: 280px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    transition: all var(--transition-normal);
}

.social-links a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--text-white);
    transform: translateY(-3px);
}

.footer-col h4 {
    margin-bottom: 24px;
    font-size: 1rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 12px;
}

.footer-col a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color var(--transition-fast);
}

.footer-col a:hover {
    color: var(--primary-light);
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-list i {
    color: var(--primary-light);
    margin-top: 3px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary-light);
}

/* ===================================
   BACK TO TOP
   =================================== */

.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-5px);
}

/* ===================================
   WHATSAPP FLOAT
   =================================== */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all var(--transition-normal);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

/* ===================================
   SEÇÃO DE ORÇAMENTO
   =================================== */

.orcamento {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
    position: relative;
    overflow: hidden;
}

.orcamento::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(139, 92, 246, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.orcamento-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.orcamento-info {
    padding-right: 40px;
}

.orcamento-info h2 {
    margin-bottom: 20px;
}

.orcamento-info > p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 40px;
}

.orcamento-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.orcamento-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 1rem;
}

.orcamento-feature i {
    color: var(--accent);
    font-size: 1.2rem;
}

.orcamento-form-wrapper {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    padding: 40px;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.orcamento-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group label i {
    color: var(--primary);
    font-size: 0.85rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-white);
    font-size: 1rem;
    font-family: inherit;
    transition: all var(--transition-fast);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    background: rgba(99, 102, 241, 0.08);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23818CF8' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-group select option {
    background: var(--bg-darker);
    color: var(--text-white);
    padding: 12px;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-full {
    width: 100%;
}

.orcamento-form .btn {
    padding: 18px 32px;
    font-size: 1.1rem;
    gap: 12px;
}

.orcamento-form .btn i {
    font-size: 1.3rem;
}

.form-disclaimer {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 8px;
}

.form-disclaimer i {
    color: var(--accent);
}

/* Portfolio App Mockup Icon - Escondido */
.portfolio-app-mockup {
    display: none;
}

.portfolio-image {
    position: relative;
}

/* ===================================
   RESPONSIVE
   =================================== */

@media (max-width: 1024px) {
    .orcamento-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .orcamento-info {
        padding-right: 0;
        text-align: center;
    }
    
    .orcamento-features {
        align-items: center;
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-group.full-width {
        grid-column: span 1;
    }
    
    .orcamento-form-wrapper {
        padding: 24px;
    }
}

/* ===================================
   RESPONSIVE
   =================================== */

@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
    }
    
    .hero-visual {
        display: none;
    }
    
    .hero-stats {
        justify-content: flex-start;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-card.wide {
        grid-column: span 2;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .portfolio-item.large {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--bg-darker);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 32px;
        transition: left var(--transition-normal);
        z-index: 998;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu a {
        font-size: 1.2rem;
    }
    
    .nav .btn {
        display: none;
    }
    
    .hamburger {
        display: flex;
        z-index: 999;
    }
    
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-content > p {
        max-width: 100%;
    }
    
    .hero-slider {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .slider-img {
        height: 280px;
    }
    
    .slider-label {
        font-size: 0.95rem;
        padding: 12px 18px;
    }
    
    .hero-tags {
        display: none;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 24px;
    }
    
    .stat {
        text-align: center;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-content {
        text-align: center;
    }
    
    .about-features {
        align-items: center;
    }
    
    .feature {
        flex-direction: column;
        text-align: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card.wide {
        grid-column: span 1;
    }
    
    .service-features.horizontal {
        grid-template-columns: 1fr;
    }
    
    .process-step {
        flex-direction: column;
        gap: 20px;
    }
    
    .timeline-line {
        display: none;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }
    
    .step-content {
        text-align: center;
    }
    
    .step-tags {
        justify-content: center;
    }
    
    .tech-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
    
    .tech-item {
        padding: 16px 10px;
    }
    
    .tech-item i {
        font-size: 1.8rem;
    }
    
    .tech-item span {
        font-size: 0.75rem;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-item.large {
        grid-column: span 1;
    }
    
    .testimonials-slider {
        flex-direction: column;
    }
    
    .cta-content {
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-contact-info {
        flex-direction: column;
        gap: 16px;
        justify-content: center;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .back-to-top {
        bottom: 90px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.5rem; }
    
    .btn-lg {
        padding: 14px 24px;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
    }
    
    .slider-img {
        height: 220px;
    }
    
    .tech-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    
    .tech-item {
        padding: 14px 8px;
    }
    
    .tech-item i {
        font-size: 1.5rem;
    }
    
    .tech-item span {
        font-size: 0.7rem;
    }
    
    .tech-category-title {
        font-size: 0.95rem;
    }
}

/* ===================================
   SCROLLBAR
   =================================== */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-darker);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}

/* ===================================
   SELECTION
   =================================== */

::selection {
    background: var(--primary);
    color: var(--text-white);
}
