/*
 * ============================================================
 * SITES RÁPIDO - STYLESHEET PRINCIPAL (THE BEAST)
 * Versão: 1.0 (Cyberpunk/Dark Modern)
 * Descrição: O pesadelo da concorrência.
 * ============================================================
 */

/* ============================================================
   1. VARIÁVEIS GLOBAIS (Design System)
============================================================ */
:root {
    /* Cores Principais */
    --bg-dark: #07070a;
    --bg-darker: #030305;
    --bg-glass: rgba(15, 12, 41, 0.6);
    --primary-color: #00f0ff; /* Neon Blue */
    --primary-glow: rgba(0, 240, 255, 0.5);
    --secondary-color: #ff003c; /* Cyber Red */
    --secondary-glow: rgba(255, 0, 60, 0.5);
    --accent-color: #7000ff; /* Deep Purple */
    
    /* Tipografia */
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Poppins', sans-serif;
    --text-main: #e0e0e0;
    --text-muted: #a0a0a0;
    --text-light: #ffffff;

    /* Espaçamentos & Layout */
    --container-width: 1200px;
    --section-padding: 100px 0;
    --border-radius-sm: 8px;
    --border-radius-md: 15px;
    --border-radius-lg: 30px;

    /* Transições */
    --transition-fast: 0.3s ease;
    --transition-smooth: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-bounce: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ============================================================
   2. RESET & BASE
============================================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-darker);
}
::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* Seleção de Texto */
::selection {
    background-color: var(--primary-color);
    color: var(--bg-dark);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.section-title .dot {
    color: var(--primary-color);
    animation: blink 2s infinite;
}

.text-center { text-align: center; }
.subtitle { text-align: center; color: var(--text-muted); margin-bottom: 60px; font-size: 1.1rem; }

/* ============================================================
   3. ANIMAÇÕES GLOBAIS (KEYFRAMES)
============================================================ */
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

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

@keyframes pulse-glow {
    0% { box-shadow: 0 0 10px var(--primary-glow); }
    50% { box-shadow: 0 0 30px var(--primary-color), 0 0 50px var(--primary-glow); }
    100% { box-shadow: 0 0 10px var(--primary-glow); }
}

@keyframes glitch-anim {
    0% { clip-path: inset(10% 0 80% 0); transform: translate(-2px, 2px); }
    20% { clip-path: inset(80% 0 5% 0); transform: translate(2px, -2px); }
    40% { clip-path: inset(40% 0 40% 0); transform: translate(-2px, 2px); }
    60% { clip-path: inset(90% 0 2% 0); transform: translate(2px, 2px); }
    80% { clip-path: inset(20% 0 60% 0); transform: translate(-2px, -2px); }
    100% { clip-path: inset(30% 0 50% 0); transform: translate(2px, -2px); }
}

@keyframes smoke-move {
    0% { transform: translateX(-50%) translateY(0) scale(1); opacity: 0.3; }
    50% { transform: translateX(10%) translateY(-50px) scale(1.2); opacity: 0.5; }
    100% { transform: translateX(-50%) translateY(0) scale(1); opacity: 0.3; }
}

@keyframes stars-move {
    from { background-position: 0 0; }
    to { background-position: -10000px 5000px; }
}

/*
 * Animation for the mobile menu sliding in from the right with a gentle fade and bounce.
 * When the menu becomes active, it will animate from off-screen (right: -100%) to
 * fully visible (right: 0) while fading in. The cubic-bezier curve gives a slight
 * overshoot for a more dynamic feel.
 */
@keyframes menuSlideIn {
    0% {
        right: -100%;
        opacity: 0;
    }
    60% {
        right: 5%;
        opacity: 1;
    }
    100% {
        right: 0;
        opacity: 1;
    }
}

/* ============================================================
   4. EFEITOS DE FUNDO (FUMAÇA, NUVENS, ESTRELAS)
============================================================ */
.background-effects {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.stars {
    position: absolute;
    top: 0; left: 0; width: 200%; height: 200%;
    background: transparent url('https://www.transparenttextures.com/patterns/stardust.png') repeat top center;
    animation: stars-move 200s linear infinite;
    opacity: 0.4;
}

.fog {
    position: absolute;
    width: 200vw;
    height: 100vh;
    background: radial-gradient(circle, rgba(112,0,255,0.1) 0%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: smoke-move 30s infinite alternate;
}

.fog-1 { top: -20%; left: -50%; animation-duration: 40s; }
.fog-2 { bottom: -20%; right: -50%; background: radial-gradient(circle, rgba(0,240,255,0.05) 0%, rgba(0,0,0,0) 70%); animation-duration: 35s; animation-delay: -15s; }

/* ============================================================
   5. NAVBAR FLOATING PILL (DESKTOP)
============================================================ */
.header-floating {
    position: fixed;
    top: 30px;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: center;
    pointer-events: none;
    transition: top var(--transition-smooth);
}

.header-floating.scrolled {
    top: 15px;
}

.nav-wrapper {
    pointer-events: auto;
    background: rgba(7, 7, 10, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(0, 240, 255, 0.15);
    border-radius: 50px;
    padding: 10px 25px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.05);
    transition: all var(--transition-smooth);
    width: 95%;
    max-width: 1000px;
}

.navbar-pill {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.brand-compact { display: flex; align-items: center; }

.nav-logo-small {
    height: 45px;
    transition: var(--transition-bounce);
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.2));
}

.nav-logo-small:hover {
    transform: scale(1.05) rotate(-2deg);
    filter: drop-shadow(0 0 15px var(--primary-color));
}

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

.nav-menu-compact li { white-space: nowrap; }

/* Hide mobile-only items on desktop by default */
.mobile-budget,
.mobile-whatsapp {
    display: none;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-main);
    padding: 8px 15px;
    border-radius: 20px;
    letter-spacing: 1px;
    transition: all var(--transition-fast);
}

.nav-link:hover {
    color: var(--primary-color);
    background: rgba(0, 240, 255, 0.05);
}

.nav-actions-compact {
    display: flex;
    align-items: center;
}

/* Esconde o menu hamburger no PC */
/*
 * Redefine the mobile menu toggle. Instead of using a FontAwesome icon,
 * we implement our own three-bar hamburger. This removes the default blue
 * colour and allows the icon to transition into an "X" when the menu is
 * open. The toggle remains hidden on desktop; it becomes visible on
 * small screens via the responsive media query below.
 */
.menu-toggle {
    display: none;
    width: 28px;
    height: 22px;
    cursor: pointer;
    position: relative;
}

/* Each bar of the hamburger */
.menu-toggle .bar {
    display: block;
    width: 100%;
    height: 3px;
    /* Use a vibrant green for the hamburger lines to stand out on dark backgrounds */
    background-color: #00ff66;
    margin: 4px 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* When the menu is open, transform bars into an X */
.menu-toggle.open .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.menu-toggle.open .bar:nth-child(2) {
    opacity: 0;
}
.menu-toggle.open .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* When the menu is open, position the toggle (now an "X") absolutely in the top-right
 * corner so it stays on top of the sliding overlay. Without this the overlay can
 * cover the toggle making it impossible to close the menu. */
.menu-toggle.open {
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 10000;
}

.btn-nav {
    /* Fundo verde matador (Gradiente tech) */
    background: linear-gradient(90deg, #00b347, #00ff66);
    /* Espaçamento interno */
    padding: 12px 30px; 
    border-radius: var(--border-radius-lg);
    /* Cor do texto: Preto fica muito mais premium e legível no verde neon */
    color: #000 !important; 
    font-weight: 900;
    /* Força o texto a ficar TODO EM MAIÚSCULO */
    text-transform: uppercase; 
    letter-spacing: 1.5px; 
    border: none;
    /* Brilho verde em volta do botão */
    box-shadow: 0 4px 15px rgba(0, 255, 102, 0.4); 
    transition: all 0.3s ease;
}

.btn-nav:hover {
    transform: translateY(-3px) scale(1.05);
    /* Aumenta o brilho verde quando passa o mouse */
    box-shadow: 0 8px 25px rgba(0, 255, 102, 0.7);
    color: #000 !important;
}

/* ============================================================
   6. HERO SECTION (PARALLAX & GLITCH)
============================================================ */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding-top: 80px;
    /* Parallax Base */
    background: radial-gradient(circle at center, rgba(15,12,41,0.8) 0%, rgba(7,7,10,1) 100%);
    background-attachment: fixed;
}

.hero-content {
    max-width: 900px;
    z-index: 10;
}

/* Efeito Glitch no subtítulo */
.glitch-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--secondary-color);
    letter-spacing: 4px;
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.glitch-text::before, .glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: var(--bg-dark);
}

.glitch-text::before {
    left: 2px;
    text-shadow: -2px 0 var(--primary-color);
    animation: glitch-anim 3s infinite linear alternate-reverse;
}

.glitch-text::after {
    left: -2px;
    text-shadow: -2px 0 var(--secondary-color);
    animation: glitch-anim 2.5s infinite linear alternate-reverse;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #fff;
    text-transform: uppercase;
}

.hero-content h1 span {
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    text-shadow: 0 0 30px rgba(0, 240, 255, 0.3);
}

.hero-content p {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Botões da Hero */
.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-primary, .btn-secondary {
    padding: 15px 40px;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px; /* Estilo mais agudo/tech */
    font-size: 1rem;
    transition: var(--transition-bounce);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--primary-color);
    color: #000;
    box-shadow: 0 0 20px var(--primary-glow);
}

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

.btn-primary:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 10px 30px var(--primary-glow);
}

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

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    border-color: var(--text-light);
    background: rgba(255,255,255,0.05);
    transform: translateY(-5px);
}

/* Mouse Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.7;
    animation: float 3s ease-in-out infinite;
}

.hero-scroll-indicator span {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.mouse {
    width: 25px; height: 40px;
    border: 2px solid #fff;
    border-radius: 15px;
    position: relative;
}

.wheel {
    width: 4px; height: 8px;
    background: var(--primary-color);
    border-radius: 2px;
    position: absolute;
    top: 5px; left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% { top: 5px; opacity: 1; }
    100% { top: 20px; opacity: 0; }
}

/* ============================================================
   7. MANIFESTO (AGRESSIVO)
============================================================ */
.manifesto-section {
    padding: var(--section-padding);
    background: linear-gradient(to bottom, var(--bg-dark), #0a0a0f);
    border-top: 1px solid rgba(255,255,255,0.02);
}

.manifesto-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.manifesto-text h3 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.manifesto-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.manifesto-text .highlight {
    color: var(--secondary-color);
    font-weight: 800;
    text-transform: uppercase;
}

.manifesto-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: var(--border-radius-md);
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

/* Efeito Hover nas Stats */
.stat-item::before {
    content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 60%);
    opacity: 0; transition: 0.5s;
    pointer-events: none;
}

.stat-item:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 240, 255, 0.3);
}

.stat-item:hover::before { opacity: 0.2; }

.stat-item .count {
    display: block;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 10px;
    text-shadow: 0 0 15px rgba(0,240,255,0.4);
}

/* ============================================================
   8. SERVIÇOS (CARDS 3D NEON)
============================================================ */
.services-section {
    padding: var(--section-padding);
    background: var(--bg-darker);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: rgba(15, 12, 41, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-md);
    padding: 40px 30px;
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Borda Gradient Animada no Hover */
.service-card::after {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    border-radius: var(--border-radius-md);
    box-shadow: inset 0 0 0 2px transparent;
    transition: var(--transition-smooth);
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    background: rgba(20, 15, 50, 0.8);
}

.service-card:hover::after {
    box-shadow: inset 0 0 0 2px var(--primary-color);
}

.service-card .icon-box {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 20px;
    transition: var(--transition-fast);
}

.service-card:hover .icon-box {
    color: var(--primary-color);
    transform: scale(1.1) rotate(5deg);
    text-shadow: 0 0 20px var(--primary-glow);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ============================================================
   9. PORTFÓLIO (SWIPER CAROUSEL OVERRIDE)
============================================================ */
.portfolio-section {
    padding: var(--section-padding);
    background: radial-gradient(ellipse at bottom, #110f24 0%, var(--bg-dark) 100%);
    overflow: hidden;
}

.swiper {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
}

.swiper-slide {
    background-position: center;
    background-size: cover;
    width: 400px;
    height: auto;
    filter: grayscale(80%) opacity(0.6);
    transition: var(--transition-smooth);
}

.swiper-slide-active {
    filter: grayscale(0%) opacity(1);
}

.portfolio-card {
    background: var(--bg-darker);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
}

.portfolio-img {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.portfolio-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.8s ease;
}

.swiper-slide-active:hover .portfolio-img img {
    transform: scale(1.1);
}

.portfolio-img .overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition-smooth);
    backdrop-filter: blur(3px);
}

.swiper-slide-active:hover .portfolio-img .overlay {
    opacity: 1;
}

.btn-view {
    background: var(--primary-color);
    color: #000;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: bold;
    font-family: var(--font-heading);
    transform: translateY(20px);
    transition: var(--transition-bounce);
}

.swiper-slide-active:hover .btn-view {
    transform: translateY(0);
}

.portfolio-info {
    padding: 20px;
    text-align: center;
}

.portfolio-info h3 {
    color: #fff;
    font-family: var(--font-heading);
    margin-bottom: 10px;
}

.portfolio-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Swiper Controls Customization */
.swiper-pagination-bullet { background: rgba(255,255,255,0.3); }
.swiper-pagination-bullet-active { background: var(--primary-color); box-shadow: 0 0 10px var(--primary-color); }
.swiper-button-next, .swiper-button-prev { color: var(--primary-color); text-shadow: 0 0 10px rgba(0,0,0,0.8); }

/* ============================================================
   10. SISTEMAS ROBUSTOS (LISTAS E IMAGENS)
============================================================ */
.systems-section {
    padding: var(--section-padding);
    background: var(--bg-dark);
}

.subtitle-systems { color: var(--secondary-color); font-weight: 600; margin-bottom: 80px; }

.systems-wrapper {
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.system-row {
    display: flex;
    align-items: center;
    gap: 50px;
}

.system-row.reverse {
    flex-direction: row-reverse;
}

.system-img {
    flex: 1;
    position: relative;
}

/* Efeito de brilho atrás da imagem do sistema */
.system-img::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 80%; height: 80%;
    background: var(--accent-color);
    filter: blur(100px);
    opacity: 0.3;
    z-index: -1;
    animation: pulse-glow 4s infinite alternate;
}

.system-row:nth-child(even) .system-img::before { background: var(--primary-color); }
.system-row:nth-child(3) .system-img::before { background: var(--secondary-color); }

.system-img img {
    width: 100%;
    border-radius: var(--border-radius-md);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition-smooth);
}

.system-img:hover img {
    transform: translateY(-10px) rotateX(5deg) rotateY(5deg);
    box-shadow: 0 30px 60px rgba(0,0,0,0.8), 0 0 20px rgba(255,255,255,0.1);
}

.system-content {
    flex: 1;
}

.system-content h3 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.system-content h3 i { color: var(--primary-color); }

.system-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 25px;
}

.system-content ul {
    margin-bottom: 30px;
}

.system-content ul li {
    margin-bottom: 15px;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ddd;
}

.system-content ul li i {
    color: #00ff00; /* Neon Green check */
    font-size: 1.2rem;
    text-shadow: 0 0 10px rgba(0,255,0,0.5);
}

.btn-system {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 4px;
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-weight: bold;
    transition: var(--transition-fast);
}

.btn-system:hover {
    background: var(--primary-color);
    color: #000;
    box-shadow: 0 0 20px var(--primary-glow);
}

/* ============================================================
   11. CONTATO / FORMULÁRIO (LIDERANÇA)
============================================================ */
.contact-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #07070a 0%, #1a0b2e 100%);
    position: relative;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    background: rgba(25, 25, 35, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--border-radius-lg);
    padding: 60px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
}

.contact-info h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 15px;
}

.contact-info > p {
    color: var(--text-muted);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.info-item i {
    font-size: 2rem;
    color: var(--primary-color);
    background: rgba(0, 240, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
    box-shadow: inset 0 0 10px rgba(0, 240, 255, 0.2);
}

.info-item h4 {
    color: #fff;
    font-family: var(--font-heading);
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.info-item p { color: var(--text-muted); }

.social-icons-contact {
    display: flex;
    gap: 15px;
    margin-top: 40px;
}

.social-icons-contact a {
    width: 45px; height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    color: #fff;
    font-size: 1.2rem;
    border: 1px solid rgba(255,255,255,0.1);
}

.social-icons-contact a:hover {
    background: var(--primary-color);
    color: #000;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px var(--primary-glow);
}

/* Formulário Dark Elegante */
.contact-form-wrapper h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.input-group {
    margin-bottom: 25px;
    position: relative;
}

.input-group label {
    display: block;
    color: var(--text-muted);
    margin-bottom: 8px;
    font-size: 0.9rem;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.input-group input, .input-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--border-radius-sm);
    color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.input-group input:focus, .input-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(0,0,0,0.6);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.1);
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
    color: #fff;
    border: none;
    border-radius: var(--border-radius-sm);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-bounce);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 240, 255, 0.4);
    letter-spacing: 2px;
}

.alert {
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: bold;
}
.alert.error { background: rgba(255,0,0,0.1); border: 1px solid red; color: #ff4d4d; }

/* ============================================================
   12. FOOTER
============================================================ */
footer {
    background: #030305;
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo p {
    color: var(--text-muted);
    margin-top: 15px;
    font-style: italic;
}

.footer-links h4 {
    color: #fff;
    font-family: var(--font-heading);
    margin-bottom: 20px;
}

.footer-links ul li { margin-bottom: 10px; }
.footer-links ul li a { color: var(--text-muted); }
.footer-links ul li a:hover { color: var(--primary-color); padding-left: 5px; }

.footer-copy {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--text-muted);
    font-size: 0.9rem;
}

.dev-credits {
    color: var(--secondary-color);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    margin-top: 5px;
}

/* ============================================================
   13. ELEMENTOS FLUTUANTES (WHATSAPP & ROCKET IA)
============================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px; height: 60px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: var(--transition-bounce);
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.rocket-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px; height: 70px;
    cursor: pointer;
    z-index: 9999;
    animation: float 4s ease-in-out infinite;
}

.rocket-float img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 10px var(--primary-color));
    transition: var(--transition-fast);
}

.rocket-float:hover img {
    transform: scale(1.1) translateY(-10px);
}

/* Anel de pulso atrás do foguete */
.pulse-ring {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 100%; height: 100%;
    background: var(--primary-color);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.5;
    animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

@keyframes pulse-ring {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.8; }
    100% { transform: translate(-50%, -50%) scale(2.5); opacity: 0; }
}

/* Modal Chatbot Estilizado */
.modal {
    display: none;
    position: fixed;
    bottom: 110px; right: 30px;
    width: 350px; height: 500px;
    background: rgba(15, 12, 41, 0.95);
    backdrop-filter: blur(15px);
    border: 1px solid var(--primary-color);
    border-radius: var(--border-radius-md);
    box-shadow: 0 10px 40px rgba(0,0,0,0.8), 0 0 20px rgba(0, 240, 255, 0.2);
    z-index: 10000;
    overflow: hidden;
    animation: slideUp 0.4s ease-out forwards;
}

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

.modal-content { height: 100%; display: flex; flex-direction: column; position: relative; }

.chat-header {
    background: linear-gradient(90deg, var(--bg-dark), var(--bg-darker));
    padding: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.chat-header h3 { color: var(--primary-color); font-family: var(--font-heading); font-size: 1.1rem; }
.chat-header p { color: var(--text-muted); font-size: 0.8rem; }

.close-modal {
    position: absolute; top: 10px; right: 15px; color: #fff; font-size: 1.5rem; cursor: pointer; transition: 0.3s;
}
.close-modal:hover { color: var(--secondary-color); transform: scale(1.2); }

.chat-frame { width: 100%; flex: 1; border: none; background: #fff; }

/* ============================================================
   14. MEDIA QUERIES (O RESPONSIVO ABSOLUTO)
============================================================ */
@media (max-width: 1200px) {
    .container { width: 100%; padding: 0 30px; }
    .hero-content h1 { font-size: 3.5rem; }
    .manifesto-grid, .contact-container { gap: 40px; }
}

@media (max-width: 992px) {
    .hero-content h1 { font-size: 3rem; }
    .manifesto-grid { grid-template-columns: 1fr; text-align: center; }
    .manifesto-stats { justify-content: center; }
    .systems-wrapper { gap: 60px; }
    .system-row, .system-row.reverse { flex-direction: column; text-align: center; }
    .system-content ul li { justify-content: center; }
    .contact-container { grid-template-columns: 1fr; padding: 40px; }
    .info-item { flex-direction: column; align-items: center; text-align: center; }
    .social-icons-contact { justify-content: center; }
    .footer-content { grid-template-columns: 1fr; text-align: center; gap: 30px; }
}

/* Mobile Nav & Ajustes Finos */
/* Mobile Nav & Ajustes Finos */
@media (max-width: 768px) {
    .nav-wrapper {
        border-radius: 15px; 
        padding: 15px 20px;
    }

    /* Esconde apenas o botão de orçamento no mobile */
    .nav-actions-compact {
        display: none !important; 
    }

    /* Força o ícone de hambúrguer a aparecer acima de tudo */
    .menu-toggle { 
        display: block !important; 
        z-index: 9999 !important; 
        position: relative;
    }
    
    /* Configuração blindada do menu lateral */
    .nav-links.nav-menu-compact {
        position: fixed !important; 
        top: 0 !important; 
        right: -100% !important; /* Começa fora da tela */
        width: 70% !important; 
        height: 100vh !important;
        background: rgba(7, 7, 10, 0.98) !important;
        backdrop-filter: blur(20px) !important;
        display: flex !important; /* Força a renderização */
        flex-direction: column !important;
        justify-content: center !important;
        transition: right 0.4s ease-in-out !important;
        border-left: 1px solid rgba(0, 240, 255, 0.2) !important;
        z-index: 9998 !important; /* Fica logo abaixo do botão "X" */
        margin: 0;
        padding: 0;
    }
    
    /* Quando clica, o JS adiciona essa classe e ele entra na tela */
    .nav-links.nav-menu-compact.active { 
        right: 0 !important; 
        /* Executa a animação de deslizamento e fade quando o menu abre */
        animation: menuSlideIn 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards !important;
    }
    
    /* Afasta um pouco os links no celular para não clicar errado */
    .nav-links.nav-menu-compact li {
        margin: 15px 0;
        text-align: center;
    }

    /* Exibe os botões extras no mobile */
    .mobile-budget,
    .mobile-whatsapp {
        display: block !important;
    }

    /* Estilização dos botões de ação dentro do menu mobile */
    .nav-links.nav-menu-compact .mobile-budget a,
    .nav-links.nav-menu-compact .mobile-whatsapp a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 80%;
        margin: 10px auto;
        padding: 14px 20px;
        border-radius: var(--border-radius-lg);
        font-family: var(--font-heading);
        font-size: 0.9rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1.5px;
    }

    /* Botão de orçamento dentro do menu */
    .nav-links.nav-menu-compact .mobile-budget a {
        background: linear-gradient(90deg, #00b347, #00ff66);
        color: #000 !important;
    }

    /* Botão de WhatsApp dentro do menu */
    .nav-links.nav-menu-compact .mobile-whatsapp a {
        background: #25d366;
        color: #fff !important;
    }
    .nav-links.nav-menu-compact .mobile-whatsapp a i {
        margin-right: 8px;
    }
    
    /* Ajustes Gerais Mobile */
    .hero-content h1 { font-size: 2.2rem; }
    .hero-content p { font-size: 1rem; }
    .hero-btns { flex-direction: column; width: 100%; max-width: 300px; margin: 0 auto; }
    .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
    
    .section-title { font-size: 2rem; }
    
    .swiper-slide { width: 300px; }
    
    .whatsapp-float { width: 50px; height: 50px; font-size: 1.5rem; bottom: 20px; left: 20px; }
    .rocket-float { width: 60px; height: 60px; bottom: 20px; right: 20px; }
    .modal { width: 90%; right: 5%; bottom: 90px; }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 1.8rem; }
    .glitch-text { font-size: 1.2rem; }
    .manifesto-stats { grid-template-columns: 1fr; }
    .contact-container { padding: 20px; }
    .system-content h3 { font-size: 1.8rem; flex-direction: column; }
}