:root {
    --primary-blue: #0A0F1E; /* Azul marinho quase preto, elegante */
    --secondary-blue: #00D2FF; /* Ciano elÃ©trico para destaques (blue-bar e logo) */
    --royal-blue: #3B82F6; /* Azul vibrante (pode ser usado em links/hovers) */
    --text-light: #E2E8F0; /* Cinza claro suave, nÃ£o cansa a vista */
    --text-dark: #2D3748;
}

html {
    scroll-behavior: smooth; /* Efeito de deslizar suave por animaÃ§Ã£o ao clicar nos links */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Sora', sans-serif; /* Nova fonte aplicada */
}

body {
    background-color: var(--primary-blue);
    /* Detalhes de linhas de grid tech e gradientes de luz azul bem suaves */
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(0, 210, 255, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(37, 99, 235, 0.04) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h100v100H0z' fill='none'/%3E%3Cpath d='M0 50h100M50 0v100' stroke='rgba(0, 210, 255, 0.015)' stroke-width='0.5'/%3E%3Ccircle cx='50' cy='50' r='1' fill='rgba(0, 210, 255, 0.1)'/%3E%3C/svg%3E");
    color: var(--text-light);
    line-height: 1.8;
}

/* --- Barras de Destaque --- */
.blue-bar {
    width: 80px;
    height: 5px;
    background-color: var(--secondary-blue);
    margin-bottom: 3rem;
    border-radius: 4px;
    box-shadow: 0 0 15px rgba(0, 210, 255, 0.6); /* Glow Ciano elÃ©trico */
    transition: margin-left 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.infrastructure .blue-bar {
    margin-left: 0;
}

.infrastructure:has(.datacenter-container:hover) .blue-bar {
    margin-left: calc(100% - 80px);
}

.development .blue-bar {
    margin-left: calc(100% - 80px);
}

.development:has(.java-container:hover) .blue-bar {
    margin-left: 0;
}

.blue-bar-center {
    width: 80px;
    height: 5px;
    background-color: var(--secondary-blue);
    margin: 0 auto 3rem auto;
    border-radius: 4px;
    box-shadow: 0 0 15px rgba(0, 210, 255, 0.6);
}

/* --- Header e NavegaÃ§Ã£o --- */
header {
    background-color: transparent;
    padding: 1.5rem 2rem;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
}

.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

/* Links do lado esquerdo agora centralizados */
.nav-links {
    display: flex;
    gap: 6rem; /* Aumentado para espalhar os itens pelo header */
    align-items: center;
    width: 100%;
    justify-content: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-light); /* Atualizado para contrastar com o fundo escuro/transparente */
    font-weight: 600;
    font-size: 1.1rem; /* Levemente maior pois estÃ£o sozinhos */
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--secondary-blue);
}

/* Dropdown de ServiÃ§os */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: block; /* Sempre block, mas controlado por opacidade para permitir animaÃ§Ã£o */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px); /* ComeÃ§a ligeiramente acima */
    position: absolute;
    background-color: transparent; /* Igual ao header agora (Transparente) */
    min-width: 200px; 
    box-shadow: none; /* Removido para parecer mais natural ao header */
    
    /* ConfiguraÃ§Ã£o de bordas removida para maior transparÃªncia */
    border: none;
    border-radius: 0 0 12px 12px;
    
    z-index: 1;
    top: 100%;
    /* Centraliza o dropdown em relaÃ§Ã£o ao item ServiÃ§os */
    left: 50%;
    transform: translate(-50%, -8px);
    padding: 0.6rem 0;
    backdrop-filter: blur(12px);
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
                visibility 0.3s;
}

.dropdown-content a {
    color: var(--text-light);
    padding: 0.8rem 1.2rem; /* Reduzido o padding interno para caber melhor na caixa menor */
    text-decoration: none;
    display: block;
    text-transform: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-align: center;
    transition: background-color 0.2s, color 0.2s;
}

.dropdown-content a:hover {
    background-color: rgba(0, 210, 255, 0.05);
    color: var(--secondary-blue);
}

/* Hover suave acionando a animaÃ§Ã£o */
.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0); /* Move para a posiÃ§Ã£o final mantendo a centralizaÃ§Ã£o */
}

/* --- Imagem de Fundo (Hero) --- */
.hero-bg {
    height: 100vh;
    min-height: 100vh;
    background-image: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?q=80&w=2072&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradiente suave que comeÃ§a transparente no topo e fica idÃªntico ao fundo (0A0F1E) na base */
    background: linear-gradient(to bottom, rgba(10, 15, 30, 0.2) 0%, rgba(10, 15, 30, 0.8) 60%, #0A0F1E 100%);
    z-index: 1;
}

/* TÃ­tulo Espacial Neon */
.hero-title {
    position: relative;
    z-index: 2; /* Fica acima do overlay escuro */
    font-size: 5.5rem;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-align: center;
}

.hero-title .azu {
    color: #FFFFFF; /* Branco sÃ³lido */
}

.hero-title .tech {
    color: var(--secondary-blue);
    /* Efeito de neon pesado que irradia como luz de cidade ou estaÃ§Ã£o espacial */
    text-shadow: 
        0 0 10px rgba(0, 210, 255, 0.8),
        0 0 20px rgba(0, 210, 255, 0.6),
        0 0 40px rgba(0, 210, 255, 0.4),
        0 0 80px rgba(0, 210, 255, 0.2),
        0 0 120px rgba(0, 210, 255, 0.1);
}

.hero-title .tecnologia {
    display: block;
    font-size: 1.6rem;
    letter-spacing: 16px;
    color: var(--text-light);
    margin-top: 15px;
    font-weight: 300;
    opacity: 0.9;
    /* Um brilho muito mais suave para nÃ£o ofuscar o TECH */
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
    }
    .hero-title .tecnologia {
        font-size: 1rem;
        letter-spacing: 8px;
    }
}

/* --- Main e ConteÃºdo --- */
main {
    max-width: 1400px;
    margin: 0 auto; 
    padding: 4rem 2rem 8rem; /* Mais respiro no final da pÃ¡gina */
    position: relative;
    z-index: 10;
}

/* --- SeÃ§Ã£o SoluÃ§Ãµes (Interactive 3D Floating Cards) --- */
.solutions-section {
    padding: 6rem 0 4rem;
    text-align: center;
    max-width: 1400px;
    margin: 0 auto;
}

.solutions-section h2 {
    font-size: 2.8rem;
    color: var(--text-light); 
    margin-bottom: 1rem;
    font-weight: 700;
}

/* Container de Cards 3D (VanillaTilt Adaptado) */
.cards-3d-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 4rem auto 0 auto;
    transform-style: preserve-3d;
}

.box {
    text-decoration: none;
    position: relative;
    width: 300px;
    height: 400px;
    border-radius: 20px;
    transform-style: preserve-3d;
    background-color: rgba(10, 15, 30, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05); /* Borda mais limpa e discreta */
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.box .name {
    position: absolute;
    bottom: 30px;
    left: 0;
    text-align: center;
    color: var(--text-light);
    width: 100%;
    padding: 0 15px; /* Margem interna para nunca estourar a borda */
    box-sizing: border-box;
    font-size: 1.2rem; /* Tamanho reduzido para nÃ£o quebrar a linha */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform-style: preserve-3d;
    transform: translate3d(0, 0, 75px);
    transition: all 0.5s ease;
    opacity: 1;
    z-index: 10;
    text-shadow: none; /* Evita o desfoque inicial */
}

.box:hover .name {
    transform: translate3d(0, -10px, 75px);
}

.box .circle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    transition: 0.5s;
    background: transparent;
    transform-style: preserve-3d;
    z-index: 10;
    transform: translate3d(-50%, -50%, 0px);
}

.box:hover .circle {
    transform: translate3d(-50%, -50%, 35px);
}

.box .product {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120px;
    height: 120px;
    transition: 0.5s;
    z-index: 11;
    transform-style: preserve-3d;
    transform: translate3d(-50%, -50%, 0px);
    display: flex;
    justify-content: center;
    align-items: center;
}

.box:hover .product {
    transform: translate3d(-50%, -50%, 100px);
}

.box .product svg {
    width: 100%;
    height: 100%;
    transition: filter 0.4s ease;
}

/* 1. Verde (Desenvolvimento) */
.box.green .circle {
    background-color: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.2);
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.1);
}
.box.green .product svg {
    stroke: #10B981;
}
.box.green:hover {
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(16, 185, 129, 0.1);
}
.box.green:hover .product svg {
    filter: drop-shadow(0 0 10px rgba(16, 185, 129, 0.4));
}
.box.green:hover .name {
    color: #10B981;
    text-shadow: 0 0 15px rgba(16, 185, 129, 0.6);
}

/* 2. Azul (Infraestrutura) */
.box.blue .circle {
    background-color: rgba(0, 210, 255, 0.05);
    border: 1px solid rgba(0, 210, 255, 0.2);
    box-shadow: 0 0 15px rgba(0, 210, 255, 0.1);
}
.box.blue .product svg {
    stroke: var(--secondary-blue);
}
.box.blue:hover {
    border-color: rgba(0, 210, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 210, 255, 0.1);
}
.box.blue:hover .product svg {
    filter: drop-shadow(0 0 10px rgba(0, 210, 255, 0.4));
}
.box.blue:hover .name {
    color: var(--secondary-blue);
    text-shadow: 0 0 15px rgba(0, 210, 255, 0.6);
}

/* 3. Vermelho (AutomaÃ§Ã£o) */
.box.red .circle {
    background-color: rgba(239, 68, 68, 0.05);
    border: 1px solid rgba(239, 68, 68, 0.2);
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.1);
}
.box.red .product svg {
    stroke: #EF4444;
}
.box.red:hover {
    border-color: rgba(239, 68, 68, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(239, 68, 68, 0.1);
}
.box.red:hover .product svg {
    filter: drop-shadow(0 0 10px rgba(239, 68, 68, 0.4));
}
.box.red:hover .name {
    color: #EF4444;
    text-shadow: 0 0 15px rgba(239, 68, 68, 0.6);
}

/* --- Caixas de ServiÃ§os --- */
.service-section {
    padding: 6rem 0; /* Mais espaÃ§o (margin/padding) */
    margin-bottom: 4rem;
}

.service-section h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem; 
    color: var(--text-light);
    font-weight: 700;
}

/* Alinhamento exclusivo para a seÃ§Ã£o de Desenvolvimento (espelhada) */
.development {
    text-align: right;
}

.development .text-container {
    text-align: left;
}


.content-box {
    display: flex;
    align-items: flex-start; /* Mudado de center para flex-start para alinhar os topos do texto e imagem */
    gap: 6rem; /* Aumentado o espaÃ§o entre a imagem e o texto (estava 3rem) */
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

/* InversÃ£o dinÃ¢mica para o desenvolvimento */
.content-box.reverse {
    flex-direction: row-reverse;
    align-items: center;
}

.image-container {
    flex: 1;
    min-width: 300px;
}

.image-container img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.8);
    display: block;
    object-fit: cover;
    height: 350px;
}

.image-container.datacenter-container img, 
.image-container.java-container img {
    box-shadow: none !important;
    border-radius: 0 !important;
    background: transparent !important;
    border: none !important;
}

/* Containers Customizados para os SVGs Interativos - Flutuantes e sem bordas */
.datacenter-container, .java-container {
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    border: none;
    height: 350px;
    overflow: hidden; /* Permite que os cabos e mini Ã­cones expandam para fora sem corte */
    position: relative;
    box-shadow: none;
    transition: none;
}

.datacenter-container:hover, .java-container:hover {
    border: none;
    box-shadow: none;
}

/* --- GrÃ¡fico Datacenter --- */
.datacenter-svg {
    width: 100%;
    height: 100%;
    max-height: 320px;
    transition: transform 0.5s ease;
}

/* transform scale removed */

.rack-frame {
    fill: rgba(15, 23, 42, 0.95);
    stroke: rgba(0, 210, 255, 0.3);
    stroke-width: 1.5;
    transition: stroke 0.3s ease;
}

.datacenter-container:hover .rack-frame {
    stroke: var(--secondary-blue);
}

.server-blade {
    fill: rgba(30, 41, 59, 0.9);
    stroke: rgba(0, 210, 255, 0.1);
    stroke-width: 1;
}

.led-line {
    stroke: rgba(255, 255, 255, 0.05);
    stroke-width: 1.5;
}

/* LEDs Piscando */
.led {
    transition: filter 0.3s ease;
}

.led-green {
    fill: #10B981;
    filter: drop-shadow(0 0 2px #10B981);
    animation: led-blink-green 2s infinite step-start;
}

.led-blue {
    fill: var(--secondary-blue);
    filter: drop-shadow(0 0 2px var(--secondary-blue));
    animation: led-blink-blue 1.5s infinite step-start;
}

/* LEDs aceleram no hover */
.datacenter-container:hover .led-green {
    animation: led-blink-green 0.4s infinite step-start;
}

.datacenter-container:hover .led-blue {
    animation: led-blink-blue 0.3s infinite step-start;
}

@keyframes led-blink-green {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

@keyframes led-blink-blue {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* Cabos Espalhando (Hover) */
.cable-line {
    stroke: var(--secondary-blue);
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
    opacity: 0;
    transition: stroke-dashoffset 1s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s ease;
    filter: drop-shadow(0 0 5px var(--secondary-blue));
}

.datacenter-container:hover .cable-line {
    stroke-dashoffset: 0;
    opacity: 0.8;
}

/* Atrasos individuais dos cabos para efeito cascata */
.cable-1 { transition-delay: 0s; }
.cable-2 { transition-delay: 0.1s; }
.cable-3 { transition-delay: 0.05s; }
.cable-4 { transition-delay: 0.15s; }
.cable-5 { transition-delay: 0.2s; }
.cable-6 { transition-delay: 0.25s; }

/* --- Cards de Infraestrutura --- */
.infra-cards-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 4rem; /* Separa da content-box acima */
    justify-items: center; /* Garante alinhamento ao centro da grid */
}

.infra-card {
    background-color: rgba(10, 15, 30, 0.4);
    border: 1px solid rgba(0, 210, 255, 0.1);
    border-radius: 12px;
    padding: 1.2rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 542px;
    height: 286.25px; /* Tamanho exato solicitado */
}

.infra-card:hover {
    border-color: var(--secondary-blue);
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.4), inset 0 0 10px rgba(0, 210, 255, 0.1);
    transform: translateY(-5px);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: drop-shadow(0 0 5px rgba(0, 210, 255, 0.2));
    transition: filter 0.3s ease, transform 0.3s ease;
}

.infra-card:hover .card-icon {
    filter: drop-shadow(0 0 10px rgba(0, 210, 255, 0.6));
    transform: scale(1.1);
}

.card-body {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.card-body p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: auto; /* Joga as tags pro fundo do card */
    justify-content: center;
}

.tag {
    background-color: rgba(255, 255, 255, 0.05); /* Efeito transparente */
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tag:hover {
    background-color: rgba(0, 210, 255, 0.15);
    border-color: var(--secondary-blue);
    color: #fff;
    box-shadow: 0 0 12px rgba(0, 210, 255, 0.5);
    transform: translateY(-2px); /* Eleva suavemente */
}

@media (max-width: 768px) {
    .infra-cards-container {
        grid-template-columns: 1fr;
    }
}

/* --- GrÃ¡fico Java Logo --- */
.java-logo-svg {
    width: 100%;
    height: 100%;
    max-height: 320px;
}

.java-cup, .java-handle {
    stroke: #FFFFFF;
    stroke-width: 4;
    fill: none;
    stroke-linecap: round;
    transition: stroke 0.3s ease;
}

.java-saucer {
    stroke: var(--secondary-blue);
    stroke-width: 4;
    fill: none;
    stroke-linecap: round;
    filter: drop-shadow(0 0 4px var(--secondary-blue));
}

.java-container:hover .java-cup,
.java-container:hover .java-handle {
    stroke: var(--secondary-blue);
    filter: drop-shadow(0 0 4px var(--secondary-blue));
}

/* AnimaÃ§Ã£o do Vapor do Java */
.java-steam {
    stroke: var(--secondary-blue);
    stroke-width: 3.5;
    stroke-linecap: round;
    fill: none;
    stroke-dasharray: 80;
    stroke-dashoffset: 0;
    animation: java-steam-rise-anim 3.5s infinite linear;
}

.steam-1 { animation-delay: 0s; }
.steam-2 { animation-delay: 1.2s; }
.steam-3 { animation-delay: 2.4s; }

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

@keyframes java-steam-rise-anim {
    0% {
        stroke-dashoffset: 80;
        opacity: 0;
    }
    30% {
        opacity: 0.8;
    }
    70% {
        opacity: 0.8;
    }
    100% {
        stroke-dashoffset: -80;
        opacity: 0;
    }
}



/* --- Efeito Glitch no TÃ­tulo de Desenvolvimento --- */
.glitch-title {
    position: relative;
    color: var(--text-light);
    display: inline-block;
}

.glitch-title::before,
.glitch-title::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    color: var(--text-light);
    background: transparent;
    overflow: hidden;
}

.glitch-title::before {
    left: 3px;
    text-shadow: -2px 0 var(--secondary-blue);
    animation: glitch-skew-1-anim 2.5s infinite linear alternate-reverse;
}

.glitch-title::after {
    left: -3px;
    text-shadow: -2px 0 #2563EB, 2px 2px var(--secondary-blue);
    animation: glitch-skew-2-anim 1.8s infinite linear alternate-reverse;
}

@keyframes glitch-skew-1-anim {
    0% { clip-path: inset(40% 0 30% 0); }
    10% { clip-path: inset(80% 0 10% 0); }
    20% { clip-path: inset(15% 0 60% 0); }
    30% { clip-path: inset(90% 0 5% 0); }
    40% { clip-path: inset(30% 0 50% 0); }
    50% { clip-path: inset(70% 0 25% 0); }
    60% { clip-path: inset(10% 0 85% 0); }
    70% { clip-path: inset(85% 0 12% 0); }
    80% { clip-path: inset(50% 0 45% 0); }
    90% { clip-path: inset(75% 0 20% 0); }
    100% { clip-path: inset(25% 0 72% 0); }
}

@keyframes glitch-skew-2-anim {
    0% { clip-path: inset(65% 0 30% 0); }
    15% { clip-path: inset(5% 0 85% 0); }
    30% { clip-path: inset(75% 0 15% 0); }
    45% { clip-path: inset(35% 0 60% 0); }
    60% { clip-path: inset(90% 0 8% 0); }
    75% { clip-path: inset(15% 0 80% 0); }
    90% { clip-path: inset(55% 0 40% 0); }
    100% { clip-path: inset(20% 0 75% 0); }
}

.text-container {
    flex: 1;
    min-width: 300px;
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.8; /* Aumentado o line-height especificamente aqui para 1.8 */
}

/* --- Equipe --- */
.team {
    text-align: center;
    padding: 12rem 2rem;
    color: var(--text-light);
    /* Fundo e bordas removidos para ficar "no ar" */
    margin-top: 6rem;
}

/* --- Carrossel de Tecnologias (CSS Marquee) --- */
.tech-carousel-section {
    padding: 8rem 0;
    text-align: center;
    overflow: hidden;
}

.tech-carousel-section h2 {
    font-size: 2.8rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    font-weight: 700;
}

.carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 3rem 0;
}

.carousel-track {
    display: flex;
    width: calc(200px * 14); /* 14 itens ao todo (7 originais + 7 duplicados) */
    animation: scrollMarquee 20s linear infinite;
}

.carousel-item {
    width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    flex-shrink: 0;
}

.carousel-item img, .carousel-item svg {
    width: 70px;
    height: 70px;
    object-fit: contain;
    filter: drop-shadow(0 0 6px rgba(0, 210, 255, 0.4));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.carousel-item:hover img, .carousel-item:hover svg {
    transform: scale(1.15);
    filter: drop-shadow(0 0 15px rgba(0, 210, 255, 0.9));
}

.carousel-item span {
    color: #94A3B8;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}
/* --- SeÃ§Ã£o de Contato e OrÃ§amento --- */
.contact-section {
    padding: 12rem 2rem;
    position: relative;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: transparent;
    padding: 4rem;
    border: none;
    box-shadow: none;
    text-align: center;
}

.contact-container h2 {
    font-size: 2.2rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.4;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 3rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background-color: rgba(10, 15, 30, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    padding: 1.2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #64748B;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--secondary-blue);
    box-shadow: 0 0 12px rgba(0, 210, 255, 0.3);
}

.submit-btn {
    background-color: var(--secondary-blue);
    color: var(--primary-blue);
    border: none;
    padding: 1.2rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s, transform 0.2s, box-shadow 0.3s;
    box-shadow: 0 0 15px rgba(0, 210, 255, 0.4);
    margin-top: 1rem;
}

.submit-btn:hover {
    background-color: #33DBFF; /* Fica um pouco mais claro no hover */
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(0, 210, 255, 0.7);
}

@media (max-width: 768px) {
    .contact-container {
        padding: 2rem;
    }
    
    .contact-container h2 {
        font-size: 1.8rem;
    }
}
@keyframes scrollMarquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-200px * 7)); /* Move o tamanho exato dos 7 itens originais */
    }
}

.team h2 {
    color: var(--secondary-blue);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.team p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* --- Footer --- */
.site-footer {
    background-color: rgba(10, 15, 30, 0.4);
    color: var(--text-light);
    padding: 4rem 2rem 1.5rem;
    border-top: 1px solid rgba(0, 210, 255, 0.1);
}

.site-footer .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 3rem;
    margin-bottom: 3rem;
}

.site-footer .footer-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.site-footer .footer-section h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.site-footer .footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer .footer-section ul li {
    margin-bottom: 1rem;
}

.site-footer .footer-section ul li a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.site-footer .footer-section ul li a:hover {
    color: var(--secondary-blue);
    text-shadow: 0 0 8px rgba(0, 210, 255, 0.4);
}

.site-footer .footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #64748b;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .site-footer .footer-container {
        flex-direction: column;
        align-items: center;
        gap: 2.5rem;
    }
}

/* --- SeÃ§Ã£o de ReduÃ§Ã£o de Custo --- */
.highlight-blue {
    color: var(--secondary-blue);
    font-weight: 700;
    text-shadow: 0 0 8px rgba(0, 210, 255, 0.4);
}

/* --- CYBER MODAL CSS --- */
:root {
  --modal-accent: var(--secondary-blue);
  --modal-shadow: #00D2FF;
  --flicker: linear(0 0%, 0.1864 6.17%, 0.0001 14.41%, 0.5244 20.97%, 0.3927 37.91%, 0.8115 60.62%, 0.9416 61.92%, 0.9928 67.98%, 0.5032 70.42%, 0.9077 96.96%, 0.6736 98.74%, 1 100%);
}

#tagModal.modal {
  --corner: 12px;
  --border: 2px;
  --clip: polygon(0 0, 100% 0, 100% calc(100% - var(--corner)), calc(100% - var(--corner)) 100%, 0% 100%);
  color: var(--modal-accent);
  width: clamp(280px, 90vw, 480px);
  border: 0;
  padding: 0;
  overflow: hidden;
  background: transparent;
  font-family: 'Sora', sans-serif;
  margin: auto;
  box-sizing: border-box;
}

#tagModal.modal::backdrop {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

#tagModal .version {
  position: absolute;
  right: 4px;
  top: 4px;
  font-size: 8px;
  opacity: 0.5;
  color: var(--modal-accent);
}

#tagModal h2 {
  padding-bottom: 0.5rem;
  margin: 0;
  text-transform: uppercase;
  position: relative;
  font-size: 1.5rem;
  color: var(--modal-accent);
}

#tagModal h2::after {
  content: '';
  height: var(--border);
  top: 100%;
  left: 0;
  right: 0;
  background: var(--modal-accent);
  position: absolute;
}

#tagModal .body__text p {
  color: var(--text-light);
  font-size: 1rem;
  margin-top: 1rem;
}

#tagModal::after, #tagModal::before {
  content: '';
  position: absolute;
  top: 1px;
  bottom: 1px;
  right: 100%;
  width: 1rem;
  border: var(--border) solid var(--modal-accent);
  translate: var(--border) 0;
  backdrop-filter: saturate(180%) blur(6px);
}

#tagModal::before {
  background: var(--modal-accent);
  mask: linear-gradient(#fff, rgba(255,255,255, 0.6) 15% 95%, #fff);
  -webkit-mask: linear-gradient(#fff, rgba(255,255,255, 0.6) 15% 95%, #fff);
}

#tagModal .modal__body {
  backdrop-filter: saturate(180%) blur(6px);
  clip-path: inset(0 -100% 0 0);
}

#tagModal .body__content {
  padding: 2rem;
  position: relative;
}

#tagModal .modal__actions {
  position: absolute;
  top: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
  padding-block: 1rem;
}

#tagModal .body__backdrop {
  position: absolute;
  inset: 0;
}
#tagModal .body__backdrop::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 2rem;
  width: calc(2 * var(--border));
  height: 40%;
  background: var(--modal-accent);
  opacity: 0.7;
  clip-path: polygon(0 0, 0 100%, 100% calc(100% - 6px), 100% 6px);
}

#tagModal .backdrop {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: rgba(10, 15, 30, 0.9);
  clip-path: var(--clip);
  pointer-events: none;
}
#tagModal .backdrop::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--modal-accent);
  translate: 0 0;
  border: var(--border) solid transparent;
  clip-path: var(--clip);
  mask: linear-gradient(#0000 0% 100%), linear-gradient(#fff 0% 100%);
  -webkit-mask: linear-gradient(#0000 0% 100%), linear-gradient(#fff 0% 100%);
  mask-clip: padding-box, border-box;
  -webkit-mask-clip: padding-box, border-box;
  mask-composite: intersect;
  z-index: 2;
}

#tagModal .corner {
  position: absolute;
  bottom: 0;
  right: 0;
  height: var(--corner);
  width: var(--corner);
}
#tagModal .corner::after {
  content: '';
  height: calc(var(--border) * 2);
  width: 200%;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  transform: rotate(135deg);
  background: var(--modal-accent);
}

.cyber-btn {
  --corner: 12px;
  --border: 1px;
  --clip: polygon(0 0, 100% 0, 100% calc(100% - var(--corner)), calc(100% - var(--corner)) 100%, 0% 100%);
  width: 140px;
  text-align: left;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.8rem;
  border: 0;
  background: transparent;
  position: relative;
  color: var(--modal-accent);
  cursor: pointer;
  font-weight: bold;
}
.cyber-btn * {
  pointer-events: none;
}
.cyber-btn .backdrop {
  backdrop-filter: saturate(180%) blur(6px);
  background: rgba(10, 15, 30, 0.9);
}
.cyber-btn:hover .backdrop {
  background: var(--modal-accent);
}
.cyber-btn:hover {
  color: var(--primary-blue);
}
.cyber-btn kbd {
  color: var(--primary-blue);
  font-weight: bold;
  width: 24px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1;
  font-size: 10px;
  border-radius: 50%;
  background: var(--modal-accent);
}

.modal__glitch {
  --shimmy-distance: 2;
  --clip-one: polygon(0 2%, 100% 2%, 100% 95%, 95% 95%, 95% 90%, 85% 90%, 85% 95%, 8% 95%, 0 70%);
  --clip-two: polygon(0 78%, 100% 78%, 100% 100%, 95% 100%, 95% 90%, 85% 90%, 85% 100%, 8% 100%, 0 78%);
  --clip-three: polygon(0 44%, 100% 44%, 100% 54%, 95% 54%, 95% 54%, 85% 54%, 85% 54%, 8% 54%, 0 54%);
  --clip-four: polygon(0 0, 100% 0, 100% 0, 95% 0, 95% 0, 85% 0, 85% 0, 8% 0, 0 0);
  --clip-five: polygon(0 0, 100% 0, 100% 0, 95% 0, 95% 0, 85% 0, 85% 0, 8% 0, 0 0);
  --clip-six: polygon(0 40%, 100% 40%, 100% 85%, 95% 85%, 95% 85%, 85% 85%, 85% 85%, 8% 85%, 0 70%);
  --clip-seven: polygon(0 63%, 100% 63%, 100% 80%, 95% 80%, 95% 80%, 85% 80%, 85% 80%, 8% 80%, 0 70%);
  position: absolute;
  inset: 0;
  padding: 2rem;
  animation-duration: 2s;
  color: var(--modal-shadow);
  z-index: -1;
  text-shadow: 2px 0 var(--modal-accent), -2px 0 red;
}

@keyframes glitch {
  0% { clip-path: var(--clip-one); }
  2%, 8% { clip-path: var(--clip-two); transform: translate(calc(var(--shimmy-distance) * -1%), 0); }
  6% { clip-path: var(--clip-two); transform: translate(calc(var(--shimmy-distance) * 1%), 0); }
  9% { clip-path: var(--clip-two); transform: translate(0, 0); }
  10% { clip-path: var(--clip-three); transform: translate(calc(var(--shimmy-distance) * 1%), 0); }
  13% { clip-path: var(--clip-three); transform: translate(0, 0); }
  14%, 21% { clip-path: var(--clip-four); transform: translate(calc(var(--shimmy-distance) * 1%), 0); }
  25% { clip-path: var(--clip-five); transform: translate(calc(var(--shimmy-distance) * 1%), 0); }
  30% { clip-path: var(--clip-five); transform: translate(calc(var(--shimmy-distance) * -1%), 0); }
  35%, 45% { clip-path: var(--clip-six); transform: translate(calc(var(--shimmy-distance) * -1%)); }
  40% { clip-path: var(--clip-six); transform: translate(calc(var(--shimmy-distance) * 1%)); }
  50% { clip-path: var(--clip-six); transform: translate(0, 0); }
  55% { clip-path: var(--clip-seven); transform: translate(calc(var(--shimmy-distance) * 1%), 0); }
  60% { clip-path: var(--clip-seven); transform: translate(0, 0); }
  31%, 61%, 100% { clip-path: var(--clip-four); }
}

#tagModal.modal {
  transition-property: display, overlay;
  transition-duration: 1s;
  transition-behavior: allow-discrete;
  transition-timing-function: ease-out;
}
#tagModal.modal::after, #tagModal.modal::before {
  transition-property: opacity, translate;
  transition-duration: 0.2s;
  transition-timing-function: ease-out;
  translate: -25% 0;
  opacity: 0;
}
#tagModal.modal h2::after {
  transform-origin: 0 50%;
  transition-duration: 0.26s;
  transition-property: scale;
  transition-timing-function: ease-in;
  scale: 0 1;
}
#tagModal.modal h2 span {
  opacity: 0;
  transition-property: opacity;
  transition-timing-function: ease-out;
  transition-duration: 0.26s;
}
#tagModal.modal .body__backdrop {
  transition-property: translate;
  transition-duration: 0.26s;
  translate: calc(-100% - (2 * var(--border))) 0;
}
#tagModal.modal .modal__body, #tagModal.modal .body__content {
  transition-property: clip-path;
  transition-duration: 0.26s;
  clip-path: inset(0 calc(100% + (2 * var(--border))) 0 0);
}
#tagModal.modal .body__text {
  opacity: 0;
  translate: 0 -1lh;
  transition-property: opacity, translate;
  transition-duration: 0.26s;
  transition-timing-function: ease-out;
}
#tagModal.modal .modal__actions {
  transition-property: translate, opacity;
  transition-duration: 0.1s;
  transition-timing-function: ease-out;
  opacity: 0;
  translate: -24px 0;
}
#tagModal.modal:popover-open::before, #tagModal.modal:popover-open::after {
  opacity: 1;
  translate: var(--border) 0;
}
#tagModal.modal:popover-open::before {
  animation: flicker 0.625s var(--flicker) none;
}
#tagModal.modal:popover-open .body__backdrop { translate: 0 0; }
#tagModal.modal:popover-open .body__content { clip-path: inset(0 calc(var(--border) * -1) 0 0); }
#tagModal.modal:popover-open .modal__body { clip-path: inset(0 calc(var(--border) * -1) 0 0); }
#tagModal.modal:popover-open h2 span { opacity: 1; }
#tagModal.modal:popover-open h2::after { scale: 1 1; }
#tagModal.modal:popover-open .body__text { translate: 0 0; opacity: 1; }
#tagModal.modal:popover-open .modal__actions { opacity: 1; translate: 0 0; }

@starting-style {
  #tagModal.modal:popover-open { opacity: 0; }
  #tagModal.modal:popover-open::before, #tagModal.modal:popover-open::after { opacity: 0; translate: -25% 0; }
  #tagModal.modal:popover-open .modal__actions { translate: -24px 0; opacity: 0; }
  #tagModal.modal:popover-open .body__backdrop { translate: calc(-100% - (2 * var(--border))) 0; }
  #tagModal.modal:popover-open .body__text { opacity: 0; translate: 0 -1lh; }
  #tagModal.modal:popover-open .body__content { clip-path: inset(0 calc(100% + (2 * var(--border))) 0 0); }
  #tagModal.modal:popover-open .modal__body { clip-path: inset(0 calc(100% + (2 * var(--border))) 0 0); }
  #tagModal.modal:popover-open h2 span { opacity: 0; }
  #tagModal.modal:popover-open h2::after { scale: 0 1; }
}
@keyframes flicker {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

/* --- Hamburger Menu Base --- */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 101;
    padding: 0;
}

.hamburger-menu span {
    width: 100%;
    height: 3px;
    background: var(--text-light);
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: left center;
}

.hamburger-menu:hover span {
    background: var(--secondary-blue);
    box-shadow: 0 0 8px rgba(0, 210, 255, 0.5);
}

.hamburger-menu.active span:nth-child(1) { transform: rotate(45deg); }
.hamburger-menu.active span:nth-child(2) { opacity: 0; width: 0; }
.hamburger-menu.active span:nth-child(3) { transform: rotate(-45deg); }


/* --- Mobile Responsivo --- */
@media (max-width: 768px) {
    .hamburger-menu {
        display: flex;
        
        margin-right: auto;
    }
    
    .navbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }
    
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        gap: 1.5rem;
        padding-top: 2rem;
        align-items: flex-start;
    }
    
    .nav-links.active {
        display: flex;
        animation: fadeIn 0.4s ease;
    }
    
    .dropdown-content {
        position: relative;
        transform: none;
        left: 0;
        top: 0;
        box-shadow: none;
        background: transparent;
        padding-left: 1rem;
        display: none;
    }
    
    .dropdown:hover .dropdown-content, .dropdown:focus-within .dropdown-content {
        display: block;
        transform: none;
    }
    
    .content-box {
        flex-direction: column;
        gap: 3rem;
    }
    
    .content-box.reverse {
        flex-direction: column;
    }
    
    .image-container img {
        height: auto;
    }
    
    .service-section, .solutions-section {
        padding: 4rem 0;
    }

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

    .service-section h2, .tech-carousel-section h2, .solutions-section h2, .contact-container h2 {
        font-size: 2rem;
    }
}

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

/* --- CorreÃ§Ãµes Mobile Finais --- */
html, body {
    overflow-x: hidden;
    width: 100%;
}

@media (max-width: 768px) {
    .hero-bg { background-attachment: scroll; }
    
    .contact-container {
        padding: 2rem 1.5rem;
        background-color: rgba(10, 15, 30, 0.8);
        border: 1px solid rgba(0, 210, 255, 0.15);
        border-radius: 16px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }
    
    .contact-container h2 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
        line-height: 1.5;
        padding: 0 10px;
    }
}
/* --- Efeito de Scroll da Infraestrutura --- */
.scroll-lines-container {
    position: absolute;
    left: 0;
    right: 0;
    max-width: 1400px;
    margin: 0 auto;
    pointer-events: none;
    z-index: 1; /* Atras dos cards mas acima do bg */
}

.scroll-line {
    position: absolute;
    background-color: var(--secondary-blue);
    box-shadow: 0 0 15px rgba(0, 210, 255, 0.6);
}

.scroll-line.top-left {
    top: -2px; /* Metade da altura da barra pra alinhar */
    right: calc(50% + 40px);
    height: 5px;
    width: 0;
}
.scroll-line.top-right {
    top: -2px;
    left: calc(50% + 40px);
    height: 5px;
    width: 0;
}
.scroll-line.left {
    top: -2px;
    left: 0;
    width: 5px;
    height: 0;
}
.scroll-line.right {
    top: -2px;
    right: 0;
    width: 5px;
    height: 0;
}
.scroll-line.bottom-left {
    bottom: 0;
    left: 0;
    height: 5px;
    width: 0;
}
.scroll-line.bottom-right {
    bottom: 0;
    right: 0;
    height: 5px;
    width: 0;
}




/* --- Landing Pages V2 --- */
.landing-pages-v2 {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 6rem 2rem;
    /* User said: "manter o nosso background color e a letras brancas" */
    /* So it naturally blends with the main body background, no gradient needed, or just transparent */
    background: transparent;
}

.lp-v2-container {
    max-width: 1400px; /* To accommodate a 678px image + a 700px grid */
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.lp-v2-header {
    text-align: left;
    color: #FFFFFF;
}

.lp-v2-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0 0 1rem 0;
    font-family: 'Space Grotesk', sans-serif;
}

.lp-v2-header p {
    font-size: 1.2rem;
    color: #E2E8F0;
    margin: 0;
    font-weight: 400;
}



@media (max-width: 1450px) {
    .lp-v2-container {
        max-width: 1200px;
    }
    .lp-v2-content {
        align-items: center;
    }
    .lp-v2-image img {
        width: 500px;
        height: auto;
    }
    .lp-v2-grid {
        width: auto;
        height: auto;
    }
}

@media (max-width: 1024px) {
    .lp-v2-decoration { display: none; } /* Hide decoration on mobile where layout changes */
    .lp-v2-content {
        flex-direction: column;
    }
    .lp-v2-image img {
        width: 100%;
        max-width: 678px;
        height: auto;
    }
    .lp-v2-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}






/* --- Neo Brutalism Pricing Cards --- */
.lp-pricing-container {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 6rem;
    width: 100%;
    flex-wrap: wrap;
}

.neo-card {
  --primary: var(--primary-blue, #0d6efd);
  --primary-hover: #0b5ed7;
  --secondary: var(--secondary-blue, #0dcaf0);
  --secondary-hover: #31d2f2;
  --accent: #00e0b0;
  --text: #050505;
  --bg: #ffffff;
  --shadow-color: #000000;
  --pattern-color: #cfcfcf;

  position: relative;
  width: 20em;
  font-size: 16px; /* Base size to make em work predictably */
  background: var(--bg);
  border: 0.35em solid var(--text);
  border-radius: 0.6em;
  box-shadow:
    0.7em 0.7em 0 var(--shadow-color),
    inset 0 0 0 0.15em rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  overflow: hidden;
  font-family: 'Space Grotesk', ui-sans-serif, system-ui, sans-serif;
  transform-origin: center;
  text-align: left;
}

.neo-card:hover {
  transform: translate(-0.4em, -0.4em) scale(1.02);
  box-shadow: 1em 1em 0 var(--shadow-color);
}

.neo-card:hover .card-pattern-grid,
.neo-card:hover .card-overlay-dots {
  opacity: 1;
}

.neo-card:active {
  transform: translate(0.1em, 0.1em) scale(0.98);
  box-shadow: 0.5em 0.5em 0 var(--shadow-color);
}

.neo-card::before {
  content: "";
  position: absolute;
  top: -1em;
  right: -1em;
  width: 4em;
  height: 4em;
  background: var(--accent);
  transform: rotate(45deg);
  z-index: 1;
}

.neo-card::after {
  content: "?";
  position: absolute;
  top: 0.4em;
  right: 0.4em;
  color: var(--text);
  font-size: 1.2em;
  font-weight: bold;
  z-index: 2;
}

.neo-card .card-pattern-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      to right,
      rgba(0, 0, 0, 0.05) 1px,
      transparent 1px
    ),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
  background-size: 0.5em 0.5em;
  pointer-events: none;
  opacity: 0.5;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.neo-card .card-overlay-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(var(--pattern-color) 1px, transparent 1px);
  background-size: 1em 1em;
  background-position: -0.5em -0.5em;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.neo-card .bold-pattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 6em;
  height: 6em;
  opacity: 0.15;
  pointer-events: none;
  z-index: 1;
}

.neo-card .card-title-area {
  position: relative;
  padding: 1.4em;
  background: var(--primary);
  color: var(--bg);
  font-weight: 800;
  font-size: 1.2em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 0.35em solid var(--text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 2;
  overflow: hidden;
}

.neo-card .card-title-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    45deg,
    rgba(0, 0, 0, 0.1),
    rgba(0, 0, 0, 0.1) 0.5em,
    transparent 0.5em,
    transparent 1em
  );
  pointer-events: none;
  opacity: 0.3;
}

.neo-card .card-tag {
  background: var(--bg);
  color: var(--text);
  font-size: 0.6em;
  font-weight: 800;
  padding: 0.4em 0.8em;
  border: 0.15em solid var(--text);
  border-radius: 0.3em;
  box-shadow: 0.2em 0.2em 0 var(--shadow-color);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transform: rotate(3deg);
  transition: all 0.3s ease;
}

.neo-card:hover .card-tag {
  transform: rotate(-2deg) scale(1.1);
  box-shadow: 0.25em 0.25em 0 var(--shadow-color);
}

.neo-card .card-body {
  position: relative;
  padding: 1.5em;
  z-index: 2;
  display: flex;
  flex-direction: column;
  min-height: 20em;
}

.neo-card .card-description {
  margin-bottom: 1.5em;
  color: var(--text);
  font-size: 1.05em;
  line-height: 1.5;
  font-weight: 600;
  flex-grow: 1;
}

.neo-card .card-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 1.2em;
  border-top: 0.15em dashed rgba(0, 0, 0, 0.15);
  position: relative;
}

.neo-card .card-actions::before {
  content: "?";
  position: absolute;
  top: -0.8em;
  left: 50%;
  transform: translateX(-50%) rotate(90deg);
  background: var(--bg);
  padding: 0 0.5em;
  font-size: 1em;
  color: rgba(0, 0, 0, 0.4);
}

.neo-card .price {
  position: relative;
  font-size: 1.8em;
  font-weight: 900;
  color: var(--text);
  background: var(--bg);
  display: flex;
  flex-direction: column;
}

.neo-card .price::before {
  content: "";
  position: absolute;
  bottom: 0.15em;
  left: 0;
  width: 100%;
  height: 0.2em;
  background: var(--accent);
  z-index: -1;
  opacity: 0.5;
}

.neo-card .price-currency {
  font-size: 0.6em;
  font-weight: 800;
  vertical-align: top;
  margin-right: 0.1em;
}

.neo-card .price-amount {
  font-size: 1.1em;
}

.neo-card .price-period {
  display: block;
  font-size: 0.45em;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.7);
  margin-top: 0.4em;
  text-transform: uppercase;
}

.neo-card .card-button {
  position: relative;
  background: var(--secondary);
  color: var(--bg);
  font-size: 0.9em;
  font-weight: 800;
  padding: 0.7em 1.2em;
  border: 0.2em solid var(--text);
  border-radius: 0.4em;
  box-shadow: 0.3em 0.3em 0 var(--shadow-color);
  cursor: pointer;
  transition: all 0.2s ease;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  display: inline-block;
}

.neo-card .card-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.2) 50%,
    transparent 100%
  );
  transition: left 0.6s ease;
}

.neo-card .card-button:hover {
  background: var(--secondary-hover);
  transform: translate(-0.1em, -0.1em);
  box-shadow: 0.4em 0.4em 0 var(--shadow-color);
}

.neo-card .card-button:hover::before {
  left: 100%;
}

.neo-card .card-button:active {
  transform: translate(0.1em, 0.1em);
  box-shadow: 0.15em 0.15em 0 var(--shadow-color);
}

.neo-card .dots-pattern {
  position: absolute;
  bottom: 2em;
  left: -2em;
  width: 8em;
  height: 4em;
  opacity: 0.3;
  transform: rotate(-10deg);
  pointer-events: none;
  z-index: 1;
}

.neo-card .accent-shape {
  position: absolute;
  width: 2.5em;
  height: 2.5em;
  background: var(--secondary);
  border: 0.15em solid var(--text);
  border-radius: 0.3em;
  transform: rotate(45deg);
  bottom: -1.2em;
  right: 2em;
  z-index: 0;
  transition: transform 0.3s ease;
}

.neo-card:hover .accent-shape {
  transform: rotate(55deg) scale(1.1);
}

.neo-card .stamp {
  position: absolute;
  bottom: 5.5em;
  left: 1.5em;
  width: 4em;
  height: 4em;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0.15em solid rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  transform: rotate(-15deg);
  opacity: 0.15;
  z-index: 1;
}

.neo-card .stamp-text {
  font-size: 0.6em;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.neo-card .corner-slice {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1.5em;
  height: 1.5em;
  background: var(--bg);
  border-right: 0.25em solid var(--text);
  border-top: 0.25em solid var(--text);
  border-radius: 0 0.5em 0 0;
  z-index: 1;
}


/* --- Glass Cards (Dev Sub-box) --- */
.dev-sub-box {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  max-width: 1200px;
  margin: 6rem auto 0 auto;
  flex-wrap: wrap;
}

.dev-cards-col {
  flex: 1;
  min-width: 400px;
  display: flex;
  justify-content: center;
}

.dev-text-col {
  flex: 1;
  min-width: 300px;
  text-align: left; /* Parï¿½grafo comeï¿½a da esquerda para direita */
}

.dev-text-col h3 {
  font-size: 2.5rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  color: #0dcaf0; /* var(--primary-blue) */
  margin-bottom: 1.5rem;
}

.dev-text-col p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #cccccc;
}

.glass-cards-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 0; 
}

.glass-cards-container .glass {
  position: relative;
  width: 250px;
  height: 300px;
  background: linear-gradient(#fff2, transparent);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 25px rgba(0, 0, 0, 0.25);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s;
  border-radius: 10px;
  margin: 0 -60px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transform: rotate(calc(var(--r) * 1deg));
  z-index: 1;
}

.glass-cards-container .glass:hover {
  transform: rotate(0deg);
  margin: 0 10px;
  z-index: 10;
}

.glass-cards-container .glass::before {
  content: attr(data-text);
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9em;
  font-weight: 700;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.glass-cards-container .glass svg {
  font-size: 3em; /* Slightly larger */
  fill: #fff;
}

.glass-cards-container .glass.css-card svg {
  fill: #0dcaf0; /* Azul no CSS */
}

@media (max-width: 1024px) {
  .dev-sub-box {
    flex-direction: column-reverse;
  }
  .dev-text-col {
    text-align: center;
  }
  .glass-cards-container .glass {
    width: 140px;
    height: 160px;
    margin: 0 -25px;
  }
}



/* --- Desenvolvimento V2 (SaaS Style) --- */
.development-v2 {
    padding: 6rem 2rem;
    position: relative;
    z-index: 1;
}

.dev-header {
    text-align: center;
    margin-bottom: 4rem;
}

.dev-header .glitch-title {
    margin: 0 auto 1.5rem auto;
    display: inline-block;
}

.dev-subtitle {
    max-width: 700px;
    margin: 0 auto;
    color: #a0aec0;
    font-size: 1.05rem;
    line-height: 1.6;
}

.dev-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto 4rem auto;
}

.dev-glass-card {
    background: rgba(255, 255, 255, 0.05); /* Fundo translcido */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1); /* Borda muito fina */
    border-radius: 16px;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.4s ease-in-out;
}

.dev-glass-card:hover {
    transform: translateY(-10px); /* Flutuar levemente */
    box-shadow: 0 8px 32px rgba(0, 210, 255, 0.2); /* Glow ciano */
    border-color: rgba(0, 210, 255, 0.3);
}

.dev-card-icon {
    width: 55px;
    height: 55px;
    background: rgba(0, 210, 255, 0.05);
    border-radius: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease-in-out;
}

.dev-glass-card:hover .dev-card-icon {
    background: rgba(0, 210, 255, 0.15);
}

.dev-card-icon svg {
    width: 28px;
    height: 28px;
    color: #00d2ff; /* Ciano minimalista */
}

.dev-glass-card h4 {
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
}

.dev-glass-card p {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.dev-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: center;
}

.dev-badges span {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #e2e8f0;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.dev-glass-card:hover .dev-badges span {
    border-color: rgba(0, 210, 255, 0.2);
    color: #ffffff;
}

.dev-cta-container {
    text-align: center;
}

.dev-cta-btn {
    display: inline-block;
    background: linear-gradient(135deg, #0d6efd, #0dcaf0);
    color: #ffffff;
    font-weight: 800;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    padding: 1rem 3rem;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
}

.dev-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(13, 202, 240, 0.4);
    filter: brightness(1.1);
}

@media (max-width: 992px) {
    .dev-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}


/* --- Glass Infraestrutura --- */
.infra-glass-box {
    margin-top: 6rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
}

.infra-glass-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0; 
}

.infra-glass-container .infra-glass-item {
    position: relative;
    width: 250px;
    height: 300px;
    /* Adaptaï¿½ï¿½o do estilo glass para o site - base escura + glow ciano */
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(0, 210, 255, 0.02));
    border: 1px solid rgba(0, 210, 255, 0.15);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s;
    border-radius: 16px;
    margin: 0 -45px; /* Manter sobreposiï¿½ï¿½o */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transform: rotate(calc(var(--r) * 1deg));
    z-index: 1;
}

.infra-glass-container .infra-glass-item:hover {
    transform: rotate(0deg) translateY(-15px) scale(1.15);
    margin: 0 20px;
    z-index: 10;
    box-shadow: 0 20px 40px rgba(0, 210, 255, 0.2);
    border-color: rgba(0, 210, 255, 0.4);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(0, 210, 255, 0.05));
}

.infra-glass-container .infra-glass-item::before {
    content: attr(data-text);
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 50px;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1em;
    font-weight: 700;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.infra-glass-container .infra-glass-item svg {
    font-size: 4.5em; /* Aumentado por conta do card 250x300 */
    fill: #00d2ff; /* Cor Ciano padrï¿½o da logo */
    filter: drop-shadow(0 0 10px rgba(0, 210, 255, 0.3));
    transition: 0.4s ease;
}

.infra-glass-container .infra-glass-item:hover svg {
    transform: scale(1.1);
    filter: drop-shadow(0 0 20px rgba(0, 210, 255, 0.6));
}

/* --- Infra CTA --- */
.infra-cta-box {
    text-align: center;
    margin-top: 2rem;
}

.infra-cta-title {
    font-size: 3.5rem;
    font-weight: 900;
    font-family: 'Space Grotesk', sans-serif;
    background: linear-gradient(to right, #ffffff, #00d2ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: 2.5rem;
    filter: drop-shadow(0 0 30px rgba(0, 210, 255, 0.15));
}

.infra-cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #0d6efd, #0dcaf0);
    color: #ffffff;
    font-weight: 800;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    padding: 1.2rem 3.5rem;
    border-radius: 40px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(13, 110, 253, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.infra-cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(13, 202, 240, 0.5);
    filter: brightness(1.15);
}

@media (max-width: 768px) {
    .infra-glass-container .infra-glass-item {
        width: 160px;
        height: 200px;
        margin: 0 -30px;
    }
    .infra-glass-container .infra-glass-item svg {
        font-size: 3em;
    }
    .infra-cta-title {
        font-size: 2rem;
    }
}


/* --- Efeitos de Imagem e Texto Hover na Infraestrutura --- */
.infra-glass-container .infra-glass-item .infra-img-icon {
    width: 90px;
    height: auto;
    object-fit: contain;
    transition: 0.4s ease;
    filter: drop-shadow(0 0 10px rgba(0, 210, 255, 0.2));
    margin-bottom: 20px; /* Space for text on hover */
}

.infra-glass-container .infra-glass-item:hover .infra-img-icon {
    transform: translateY(-20px) scale(1.1);
    filter: drop-shadow(0 0 20px rgba(0, 210, 255, 0.5));
}

/* Ocultar o SVG anterior se existir */
.infra-glass-container .infra-glass-item svg {
    display: none; 
}

.infra-hover-text {
    position: absolute;
    bottom: 60px; /* Acima do titulo que tem height 50px */
    left: 0;
    width: 100%;
    padding: 0 1.5rem;
    color: #94a3b8; /* Cinza suave */
    font-size: 0.85rem;
    line-height: 1.4;
    text-align: center;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.4s ease;
    pointer-events: none;
    font-family: 'Space Grotesk', sans-serif;
}

.infra-glass-container .infra-glass-item:hover .infra-hover-text {
    opacity: 1;
    transform: translateY(0);
}

.infra-highlight {
    color: #00d2ff;
    font-weight: 800;
}



/* --- INFRAESTRUTURA V2 (SaaS Style) --- */
.infrastructure-v2 {
    padding: 6rem 2rem;
    position: relative;
    z-index: 1;
}

.infra-v2-header {
    text-align: center;
    margin-bottom: 4rem;
}

.infra-v2-header h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: #ffffff;
    font-family: 'Space Grotesk', sans-serif;
}

.infra-v2-subtitle {
    max-width: 800px;
    margin: 0 auto;
    color: #94a3b8;
    font-size: 1.05rem;
    line-height: 1.6;
}

.infra-v2-highlight {
    color: #00d2ff;
    font-weight: 800;
}

.infra-v2-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.infra-v2-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
}

.infra-v2-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 210, 255, 0.15);
    border-color: rgba(0, 210, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.infra-v2-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 210, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.infra-v2-icon svg {
    width: 32px;
    height: 32px;
    color: #00d2ff;
}

.infra-v2-card:hover .infra-v2-icon {
    background: rgba(0, 210, 255, 0.2);
    transform: scale(1.1);
}

.infra-v2-card h3 {
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
}

.infra-v2-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    flex-grow: 1;
}

.infra-v2-list li {
    color: #cbd5e1;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.infra-v2-list li svg {
    width: 20px;
    height: 20px;
    color: #00d2ff;
    flex-shrink: 0;
}

.infra-v2-footer {
    text-align: center;
    margin-top: 4rem;
}

.infra-v2-btn {
    display: inline-block;
    background: linear-gradient(135deg, #0d6efd, #0dcaf0);
    color: #ffffff;
    font-weight: 800;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    padding: 1.2rem 4rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(13, 202, 240, 0.4);
    letter-spacing: 1px;
}

.infra-v2-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(13, 202, 240, 0.6);
    filter: brightness(1.1);
}

@media (max-width: 992px) {
    .infra-v2-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}


/* --- INFRAESTRUTURA BENTO (Enterprise Style) --- */
.infrastructure-bento {
    padding: 6rem 2rem;
    position: relative;
    z-index: 1;
    background: transparent;
}

.bento-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/* Header */
.bento-header {
    text-align: center;
}

.bento-header h2 {
    font-size: 3rem;
    font-weight: 900;
    color: #ffffff;
    font-family: 'Space Grotesk', sans-serif;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.bento-header p {
    color: #94a3b8;
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Trust Bar */
.trust-bar {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 1rem;
}

.trust-badge {
    background: rgba(255, 255, 255, 0.03);
    padding: 0.8rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    color: #e2e8f0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
}

/* Bento Grid Layout */
.bento-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 1.5rem;
}

.bento-right-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.bento-card {
    background: rgba(15, 23, 42, 0.6); /* Azul escuro/chumbo profundo */
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

/* Brilho interno muito sutil */
.bento-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(0, 210, 255, 0.04), transparent 40%);
    z-index: 0;
    pointer-events: none;
}

.bento-card > * {
    position: relative;
    z-index: 1;
}

.bento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 210, 255, 0.1);
    border-color: rgba(0, 210, 255, 0.3);
}

.bento-large {
    justify-content: space-between;
}

.bento-large h3 {
    font-size: 2.2rem;
    color: #ffffff;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 800;
    margin-bottom: 1rem;
}

.bento-large p {
    color: #cbd5e1;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 90%;
}

.bento-small {
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
}

.bento-small h3 {
    font-size: 1.4rem;
    color: #ffffff;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.bento-small p {
    color: #94a3b8;
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

.bento-icon {
    width: 64px;
    height: 64px;
    background: rgba(0, 210, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.bento-icon svg {
    width: 32px;
    height: 32px;
    color: #00d2ff;
}

.bento-card:hover .bento-icon {
    background: rgba(0, 210, 255, 0.2);
    transform: scale(1.1);
}

/* SVG Chart Animation */
.bento-visual {
    margin-top: 2rem;
    width: 100%;
    height: 150px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.bento-chart {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.bento-bar {
    fill: rgba(0, 210, 255, 0.15);
    transition: all 0.5s ease;
}

.bento-card:hover .bento-bar {
    fill: rgba(0, 210, 255, 0.3);
}








.bento-line {
    fill: none;
    stroke: #00d2ff;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    
}

.bento-dot {
    fill: #0f172a;
    stroke: #00d2ff;
    stroke-width: 2;
    transition: all 0.5s ease;
}








/* CTA Footer */
.bento-footer {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

.bento-cta {
    border: none;
    display: inline-block;
    position: relative;
    padding: 1.2rem 4rem;
    font-size: 1.2rem;
    background: transparent;
    cursor: pointer;
    user-select: none;
    overflow: hidden;
    color: #00d2ff;
    z-index: 1;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.bento-cta span {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: -1;
    border: 3px solid #00d2ff;
    border-radius: 4px;
}

.bento-cta span::before {
    content: "";
    display: block;
    position: absolute;
    width: 8%;
    height: 500%;
    background: rgba(0, 210, 255, 0.2);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-60deg);
    transition: all 0.3s;
}

.bento-cta:hover span::before {
    transform: translate(-50%, -50%) rotate(-90deg);
    width: 100%;
    background: #00d2ff;
}

.bento-cta:hover {
    color: #000000;
}

.bento-cta:active span::before {
    background: #00a8cc;
}
@media (max-width: 992px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }
    .bento-small {
        flex-direction: column;
        text-align: center;
    }
    .trust-bar {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
}




/* --- LANDING PAGES V3 (Go Corner Cards) --- */
.lp-v3-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto 3rem auto;
}

/* Browser Mockup */
.lp-v3-browser {
    border-radius: 12px;
    overflow: hidden;
    background: #1e293b;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 700px;
}.browser-top {
    height: 36px;
    background: #0f172a;
    display: flex;
    align-items: center;
    padding: 0 16px;
    gap: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.browser-top .dot { width: 12px; height: 12px; border-radius: 50%; }
.browser-top .red { background: #ff5f56; }
.browser-top .yellow { background: #ffbd2e; }
.browser-top .green { background: #27c93f; }
.browser-body {
    flex: 1;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    position: relative;
    background: #000;
    min-height: 0;
}.browser-body::-webkit-scrollbar { display: none; }
.browser-body img {
    width: 100%;
    display: block;
    object-fit: cover;
    object-position: top;
    min-height: 800px;
}

/* 2x2 Grid of Cards */
.lp-v3-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto;
    align-content: space-between;
    gap: 0.8rem;
    height: 100%;
}

.lp-v3-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    background: rgba(30, 41, 59, 0.5);
    border-radius: 10px;
    padding: 1.5rem;
    z-index: 0;
    overflow: hidden;
    transition: transform 0.3s ease-out;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-sizing: border-box;
    height: 260px;
}
.go-corner {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: 2em;
    height: 2em;
    overflow: hidden;
    top: 0;
    right: 0;
    background: linear-gradient(135deg, #6293c8, #384c6c);
    border-radius: 0 4px 0 32px;
}
.lp-v3-card:before {
    content: '';
    position: absolute;
    z-index: -1;
    top: -16px;
    right: -16px;
    background: linear-gradient(135deg, #6293c8, #384c6c);
    height: 32px;
    width: 32px;
    border-radius: 32px;
    transform: scale(1);
    transform-origin: 50% 50%;
    transition: transform 0.4s ease-out;
}
.lp-v3-card:hover:before {
    transform: scale(28);
}

.lp-v3-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}





.lp-v3-card h4 {
    color: #ffffff;
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    transition: color 0.4s ease;
}

.lp-v3-card p {
    color: #94a3b8;
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
    transition: color 0.4s ease;
}

.lp-v3-card:hover h4, 
.lp-v3-card:hover p {
    color: #ffffff;
}

/* Pricing Grid Alignment */
.lp-pricing-container {
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .lp-v3-content {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .lp-v3-grid {
        position: relative;
        grid-template-columns: 1fr;
    }
}

.prof-center-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.5rem;
    font-weight: 900;
    font-family: 'Space Grotesk', sans-serif;
    color: #fff8ec;
    letter-spacing: 6px;
    text-transform: uppercase;
    text-align: center;
    pointer-events: none;
    z-index: 10;
    
    /* Variï¿½veis do mouse (atualizadas pelo JS) */
    --dx: -3px;
    --dy: 4px;
    
    text-shadow: 
        calc(var(--dx) * 1) calc(var(--dy) * 1) 0 #feb944,
        calc(var(--dx) * 2) calc(var(--dy) * 2) 0 #fe6842,
        calc(var(--dx) * 3) calc(var(--dy) * 3) 0 #df5584,
        calc(var(--dx) * 4) calc(var(--dy) * 4) 0 #5a5ca8;
        
    transition: text-shadow 0.1s ease-out;
}
    50% {
        text-shadow: 
            2px 4px 0px rgba(98, 147, 200, 0.8),
            4px 8px 0px rgba(98, 147, 200, 0.6),
            6px 12px 0px rgba(56, 76, 108, 0.6),
            8px 16px 0px rgba(56, 76, 108, 0.4);
        transform: translate(-50%, -50%) translateY(-6px);
    }
}



/* --- NOVA SECAO: SOLUCOES EM TECNOLOGIA --- */
.solucoes-tecnologia {
    padding: 80px 20px;
    background-color: transparent;
}

.solucoes-header h2 {
    text-align: center;
    font-size: 2.5rem;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.solucoes-header p {
    text-align: center;
    color: #94a3b8;
    font-size: 1.1rem;
    margin-bottom: 70px;
}

.solucoes-cards-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
  width: 280px;
  background: #f5f5f5;
  border-radius: 10px;
  padding: 50px 30px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px #4445;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
  text-align: center;
}

.card .icon,
.card .heading,
.card .content,
.card .btn-saiba-mais {
  position: relative;
  z-index: 5;
  transition: all 0.5s;
}

.card .icon {
  width: 40px;
  fill: #2563EB;
  margin-bottom: 20px;
}

.card .heading {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 15px;
  color: #333;
}

.card .number {
  position: absolute;
  top: -90px;
  right: -85px;
  padding: 80px 100px 30px 30px;
  background: #2563EB;
  border-radius: 100%;
  z-index: 5;
}

.card .number .text {
  font-size: 28px;
  font-weight: 600;
  color: #fff;
  margin: 0;
}

.card .content {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
  margin-bottom: 20px;
}

.card .number::after {
  content: "";
  width: 50px;
  height: 50px;
  background: #2563EB;
  position: absolute;
  border-radius: 100%;
  top: 50%;
  right: 50%;
  transition: all 0.5s;
  transform: translateX(50%) translateY(-50%);
  z-index: -1;
}

.card:hover {
  transform: scale(1.02);
  box-shadow: 0 5px 20px #444e;
}

.card:hover .number::after {
  width: 900px;
  height: 900px;
}

.card:hover .icon,
.card:hover .heading,
.card:hover .content,
.card:hover .btn-saiba-mais {
  color: #f5f5f5;
  fill: #f5f5f5;
  border-color: #f5f5f5;
}

.btn-saiba-mais {
  background: transparent;
  border: 2px solid #2563EB;
  color: #2563EB;
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 600;
  font-family: 'Sora', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
  text-transform: uppercase;
}

.card:hover .btn-saiba-mais {
    border-color: #f5f5f5;
    color: #f5f5f5;
}

/* --- Novo Layout de Orï¿½amento --- */
.contact-container {
    max-width: 1000px !important;
    background-color: rgba(255, 255, 255, 0.04) !important; /* fundo acinzetado/translï¿½cido bem fraco */
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 4rem 5rem !important;
}

.orcamento-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 40px;
    align-items: stretch;
}

.orcamento-textos {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.orcamento-textos h2 {
    text-align: left !important;
    font-size: 2.2rem !important;
    margin-bottom: 20px !important;
}

.orcamento-subtitulos {
  align-items: flex-start;
  text-align: left;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}



.orcamento-form-container {
    flex: 1;
    min-width: 300px;
    display: flex;
    align-items: center;
}

.orcamento-form-container .contact-form {
    width: 100%;
    margin-top: 0;
}


.orcamento-subtitulos {
  align-items: flex-start;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 35px;
  margin-top: 30px;
  --ink: #e2e8f0;
  --ink-2: #00D2FF; 
  --ink-3: #FF4FD8;
  --ink-4: #10B981;
}

/* 01 Aurora (LANDING PAGE) */
.fx-aurora {
  font-size: 24px;
  letter-spacing: 0.05em;
  text-align: left;
  font-family: 'Space Grotesk', sans-serif; font-weight: 700; line-height: 1.1;
  background: linear-gradient(115deg, var(--ink-2), var(--ink-3), var(--ink-2), var(--ink-3)) 0 0 / 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: fx-aurora 7s linear infinite;
}
@keyframes fx-aurora {
  0%   { background-position: 0% 50%;   filter: hue-rotate(0deg); }
  100% { background-position: 300% 50%; filter: hue-rotate(360deg); }
}

/* 02 Glitchcore (DESENVOLVIMENTO) */
.fx-glitch {
  font-size: 24px;
  letter-spacing: 0.05em;
  text-align: left;
  position: relative;
  font-family: 'Space Grotesk', sans-serif; font-weight: 700; line-height: 1.1;
  color: var(--ink);
}
.fx-glitch::before, .fx-glitch::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
}
.fx-glitch::before {
  color: var(--ink-2);
  clip-path: inset(0 0 55% 0);
  animation: fx-glitch-a 2.6s steps(1) infinite;
}
.fx-glitch::after {
  color: var(--ink-4);
  clip-path: inset(45% 0 0 0);
  animation: fx-glitch-b 2.6s steps(1) infinite;
}
@keyframes fx-glitch-a {
  0%, 12%, 20%, 55%, 100% { transform: translate(0); opacity: 0; }
  13% { transform: translate(-5px, -2px); opacity: .9; }
  16% { transform: translate(4px, 1px);   opacity: .9; }
  48% { transform: translate(-3px, 2px);  opacity: .9; }
  51% { transform: translate(2px, -1px);  opacity: .9; }
}
@keyframes fx-glitch-b {
  0%, 14%, 22%, 60%, 100% { transform: translate(0); opacity: 0; }
  15% { transform: translate(5px, 2px);   opacity: .9; }
  18% { transform: translate(-4px, -1px); opacity: .9; }
  52% { transform: translate(3px, -2px);  opacity: .9; }
  56% { transform: translate(-2px, 1px);  opacity: .9; }
}

/* 03 Wireframe Contour (INFRAESTRUTURA) */
.fx-contour {
  width: 350px;
  height: 35px;
  overflow: visible;
}
.fx-contour text {
  font-size: 24px;
  letter-spacing: 0.05em;
  text-align: left;
  font-family: 'Space Grotesk', sans-serif; font-weight: 700;
  fill: rgba(255, 255, 255, 0.85); /* Text color changed to be visible */
  stroke: var(--ink-2);
  stroke-width: 1.2;
  stroke-dasharray: 34 66;
  animation: fx-contour 3.2s linear infinite;
}
@keyframes fx-contour {
  to { stroke-dashoffset: -100; }
}



/* --- REFACTORED CONTACT FORM --- */
.refactored-card.contact-container {
    background-color: #0d131f !important;
    border: 1px solid #1e293b !important;
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.05), inset 0 0 20px rgba(0, 229, 255, 0.02) !important;
    border-radius: 16px;
    padding: 4rem 4rem !important;
}

.orcamento-textos h2 {
    color: #f8fafc;
    font-size: 2.2rem !important;
}

.orcamento-desc {
    color: #94a3b8;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 95%;
}

/* Chips Selector */
.services-selector {
    margin-top: 1rem;
}

.services-label {
    display: block;
    color: #cbd5e1;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.chips-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.chip {
    cursor: pointer;
}

.chip-input {
    display: none;
}

.chip-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.2rem;
    background-color: #1e293b;
    border: 1px solid #334155;
    border-radius: 9999px;
    color: #94a3b8;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    user-select: none;
}

.chip-content .check-icon {
    width: 0;
    opacity: 0;
    transition: all 0.3s ease;
    overflow: hidden;
}

.chip:hover .chip-content {
    background-color: #27354a;
    color: #e2e8f0;
}

.chip-input:checked + .chip-content {
    background-color: rgba(0, 229, 255, 0.1);
    border-color: #00E5FF;
    color: #00E5FF;
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.2);
}

.chip-input:checked + .chip-content .check-icon {
    opacity: 1;
    width: 16px;
}

/* Form Styles */
.refactored-form {
    width: 100%;
}

.refactored-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: left;
    margin-bottom: 0;
}

.refactored-form label {
    font-size: 0.95rem;
    color: #cbd5e1;
    font-weight: 500;
}

.refactored-form input,
.refactored-form textarea {
    width: 100%;
    background-color: #0f172a !important;
    border: 1px solid #334155 !important;
    border-radius: 8px !important;
    padding: 1rem 1.2rem !important;
    color: #f8fafc !important;
    font-size: 1rem !important;
    transition: all 0.3s ease !important;
    outline: none !important;
}

.refactored-form textarea {
    resize: none !important;
}

.refactored-form input:focus,
.refactored-form textarea:focus {
    border-color: #00E5FF !important;
    box-shadow: 0 0 0 2px rgba(0, 229, 255, 0.2) !important;
}

.refactored-form input::placeholder,
.refactored-form textarea::placeholder {
    color: #475569 !important;
}

/* CTA Button */
.glow-btn {
    width: 100%;
    background-color: #00E5FF !important;
    color: #0f172a !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
    padding: 1.2rem !important;
    border-radius: 8px !important;
    border: none !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    text-transform: none !important;
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.4) !important;
    margin-top: 0.5rem;
}

.glow-btn:hover {
    background-color: #33ebff !important;
    box-shadow: 0 0 25px rgba(0, 229, 255, 0.6) !important;
    transform: translateY(-2px) !important;
}

/* Mobile */
@media (max-width: 768px) {
    .orcamento-grid {
        flex-direction: column;
    }
    .refactored-card.contact-container {
        padding: 2rem !important;
    }
    .chip-content {
        padding: 0.8rem 1.2rem;
    }
}

.refactored-form input:invalid:not(:placeholder-shown),
.refactored-form textarea:invalid:not(:placeholder-shown) {
    border-color: #ef4444 !important;
    box-shadow: 0 0 0 1px rgba(239, 68, 68, 0.2) !important;
}


/* ========================================= */
/* ========================================= */
/*       ADAPTACOES PARA CELULARES E NOTEBOOKS   */
/* ========================================= */
@media (max-width: 1200px) {
    .nav-links { gap: 3rem; }
    .hero-title { font-size: 4.5rem; }
    .content-box { gap: 3rem; }
}

@media (max-width: 1024px) {
    .hero-title { font-size: 4rem; }
    main { padding: 3rem 1.5rem 6rem; }
    
    .bento-large h3 { font-size: 1.8rem; }
    .bento-large p { font-size: 1rem; }
    
    .dev-grid { gap: 1.5rem; }
    
    .cards-3d-container,
    .solucoes-cards-container,
    .lp-pricing-container {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    /* Landing page fix for 'PROFISSIONALISMO' */
    .lp-v3-grid {
        display: flex !important;
        flex-direction: column;
    }
    .prof-center-text {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        order: 2;
        margin: 2rem 0;
        font-size: 1.5rem;
        letter-spacing: 2px;
    }
    .lp-v3-grid > div:nth-child(2) { order: 0; }
    .lp-v3-grid > div:nth-child(3) { order: 1; }
    .lp-v3-grid > div:nth-child(4) { order: 3; }
    .lp-v3-grid > div:nth-child(5) { order: 4; }

    /* Contact Form / Orcamento */
    .orcamento-grid { flex-direction: column; }
    .orcamento-textos, .orcamento-form-container {
        min-width: 0 !important;
        width: 100%;
    }
    .refactored-card.contact-container { padding: 1.5rem !important; }
    .chip-content { padding: 0.6rem 0.8rem; font-size: 0.85rem; }
    .orcamento-subtitulos { font-size: 1.5rem; }
}

@media (max-width: 576px) {
    /* Compactar Cabecalho e Hero */
    header { padding: 1rem; }
    .hero-title { font-size: 2.2rem; letter-spacing: 2px; }
    .hero-title .tecnologia { font-size: 0.8rem; letter-spacing: 6px; margin-top: 10px; }
    
    /* Espacamento geral do site (Main) */
    main { padding: 2rem 1rem 4rem; }

    /* Titulos das secoes */
    .bento-header h2, .dev-header h2, .solucoes-header h2, .orcamento-textos h2, .lp-v2-header h2 { font-size: 1.8rem !important; }
    .bento-header p, .dev-header p, .solucoes-header p, .orcamento-textos p { font-size: 0.95rem; padding: 0 10px; }

    /* Cards Solucoes */
    .solucoes-cards-container { gap: 20px; }
    .card { width: 100%; max-width: 320px; padding: 1.5rem; }
    .card .heading { font-size: 1.2rem; }

    /* Infraestrutura Bento */
    .bento-card { padding: 1.5rem; }
    .bento-large h3 { font-size: 1.5rem; }
    .bento-small { flex-direction: column; text-align: center; padding: 1.5rem; }
    .bento-icon { margin: 0 auto; }
    .bento-visual { height: 120px; }
    .bento-cta { padding: 1rem 2rem; font-size: 1rem; width: 100%; text-align: center; }

    /* Desenvolvimento Glass Cards */
    .dev-glass-card { padding: 1.5rem; }
    .dev-card-icon { width: 45px; height: 45px; }
    .dev-card-icon svg { width: 24px; height: 24px; }
    .dev-glass-card h4 { font-size: 1.2rem; }
    .dev-glass-card p { font-size: 0.9rem; }
    .dev-badges span { font-size: 0.75rem; padding: 0.3rem 0.6rem; }

    /* Landing Page Pricing */
    .lp-pricing-container { gap: 2rem; }
    .neo-card { width: 100%; max-width: 320px; padding: 1.5rem; }

    /* Formulario de Orcamento */
    .orcamento-form-container { padding: 0; }
    .contact-form input, .contact-form textarea { font-size: 0.9rem; padding: 0.8rem 1rem; }
    .submit-btn { padding: 1rem; font-size: 1rem; width: 100%; }
    
    /* Chips do formulario */
    .chips-container { display: flex; flex-direction: column; }
    .chip-content { display: flex; justify-content: center; }

    /* Footer compactado */
    .site-footer { padding: 2rem 1rem 1rem; }
    .site-footer .footer-container { gap: 2rem; margin-bottom: 2rem; }
    .site-footer .footer-section h4 { font-size: 1rem; margin-bottom: 1rem; }
}
