/* ==========================================
   01. VARIÁVEIS E RESET GERAL
========================================== */
:root {
    --bg: #0a0a0a;
    --accent: #0df24f;
    --text: #ffffff;
    --subtext: #a0a0a0;
    --nav-height: 100px;
    --logo-offset: -170px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    cursor: none !important; /* Esconde cursor padrão para usar o customizado */
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
}

#kinetic-bg {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0.3;
}

/* ==========================================
   02. CURSOR CUSTOMIZADO E PROGRESS BAR
========================================== */
.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background-color: var(--accent);
    transition: transform 0.1s ease-out;
}

.cursor-outline {
    width: 30px;
    height: 30px;
    border: 2px solid var(--accent);
    transition: width 0.3s, height 0.3s, background-color 0.3s;
}

.cursor-active {
    width: 60px;
    height: 60px;
    background-color: rgba(13, 242, 79, 0.1);
    border-color: transparent;
}

.reading-progress-container {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    width: 100%;
    height: 2px;
    z-index: 99;
    background: rgba(255, 255, 255, 0.05);
}

.reading-progress-bar {
    height: 100%;
    background: var(--accent);
    width: 0%;
    box-shadow: 0 0 10px var(--accent);
}

/* ==========================================
   03. TIPOGRAFIA, UTILITÁRIOS E BOTÕES
========================================== */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 900;
}

.section-header span {
    color: var(--accent);
}

.section-header p {
    color: var(--subtext);
}

/* Animação Reveal */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.reveal {
    opacity: 0;
    animation: none;
}
.reveal.active {
    animation: fadeInUp 1s ease-out forwards;
}

/* Botões Globais */
.primary-btn, .secondary-btn, .whatsapp-btn {
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
    transition: 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.primary-btn {
    background: var(--accent);
    color: var(--bg);
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(13, 242, 79, 0.2);
}

.secondary-btn {
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    background: transparent;
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.05);
}

nav svg, 
.footer-social svg,
.service-card svg,
.plan-features svg,
.status-item svg,
.contact-methods svg,
.faq-question svg,
.whatsapp-btn svg {
    width: 24px !important;
    height: 24px !important;
    stroke: var(--accent) !important;
    stroke-width: 2px !important;
    fill: none !important;
    display: inline-block !important;
    transition: 0.3s ease;
}

/* Ícones específicos que devem ser menores ou de outra cor */
.status-item svg, .plan-features svg { width: 18px !important; height: 18px !important; }
.footer-social svg { stroke: var(--subtext) !important; }
.whatsapp-btn svg { stroke: var(--bg) !important; }

/* Efeito de hover (passar o mouse) nas redes sociais */
.footer-social a:hover svg, 
.social-icons a:hover svg {
    stroke: #ffffff !important;
    transform: translateY(-2px);
}
/* ==========================================
   04. PRELOADER
========================================== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader-content {
    text-align: center;
    width: 300px;
}

.loader-logo {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.loader-logo span {
    color: var(--accent);
}

.loader-bar {
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.loader-progress {
    width: 0%;
    height: 100%;
    background: var(--accent);
    position: absolute;
    top: 0;
    left: 0;
    animation: load 2.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.loader-status {
    font-family: 'Courier New', monospace;
    font-size: 0.7rem;
    color: #666;
    margin-top: 15px;
    letter-spacing: 2px;
}

@keyframes load {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* ==========================================
   05. NAVEGAÇÃO E FOOTER (Menu Centralizado)
========================================== */
nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    height: var(--nav-height);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.logo-container { width: 25%; }

.main-logo {
    height: 140px; 
    width: auto;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 0 15px rgba(13, 242, 79, 0.3));
}

.main-logo:hover { transform: scale(1.02); }

/* A gaveta no Desktop ocupa o resto do espaço */
.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 75%;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin: 0 auto; /* Centraliza no meio */
}

.nav-item {
    color: var(--subtext);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: 0.3s;
}

.nav-item:hover { color: var(--accent); }

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.social-icons {
    display: flex;
    gap: 1.2rem;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    padding-right: 1.5rem;
    align-items: center;
}

.social-icons i { stroke: var(--accent); stroke-width: 2px; transition: 0.3s ease; }
.social-icons a:hover i { stroke: #ffffff; transform: translateY(-2px); }

.btn-contact {
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
    padding: 0.6rem 1.5rem;
    font-weight: 700;
    transition: 0.3s;
    border-radius: 4px;
    white-space: nowrap;
}

.btn-contact:hover { background: var(--accent); color: var(--bg); }
.menu-toggle { display: none; }

footer {
    padding: 3rem 5%;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    font-weight: 900;
    font-size: 1.2rem;
}

.footer-logo span {
    color: var(--accent);
}

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

.footer-social i {
    stroke: var(--subtext);
    transition: 0.3s;
}

.footer-social i:hover {
    stroke: var(--accent);
}

/* ==========================================
   06. HERO SECTION (Index)
========================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 10%;
    max-width: 1600px;
    margin: 0 auto;
}

.hero-content {
    max-width: 900px;
    margin-top: var(--nav-height);
}

h1 {
    font-size: 2.8rem !important;
    line-height: 1.1;
    font-weight: 900;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
    text-align: center;
}

h1 span {
    background: linear-gradient(90deg, #fff, var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: clamp(1rem, 1.2vw, 1.25rem);
    max-width: 650px;
    color: var(--subtext);
    margin-bottom: 3rem;
}

.cta-group {
    flex-direction: column; /* Coloca um botão sobre o outro */
    width: 100%;
    gap: 1rem;
}

.primary-btn, .secondary-btn {
    width: 100%; /* Botões ocupam a largura total no mobile */
    justify-content: center;
}

/* ==========================================
   07. SERVIÇOS E PRICING (Index)
========================================== */
.services, .pricing {
    padding: 80px 5%;
    max-width: 1600px;
    margin: 0 auto;
}

.services-grid, .pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2.5rem 1.5rem;
    transition: 0.4s ease;
    border-radius: 4px;
}

.service-card:hover {
    border-color: var(--accent);
    background: rgba(13, 242, 79, 0.03);
    transform: translateY(-10px);
}

.service-card i {
    width: 32px;
    height: 32px;
    stroke: var(--accent);
    margin-bottom: 1.2rem;
}

.service-card h3 {
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.service-card p {
    color: var(--subtext);
    font-size: 0.9rem;
}

.price-card {
    position: relative;
    padding: 3rem 2rem;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.5s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.price-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent) !important;
    margin-bottom: 1rem !important;
}

.card-glass {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.01);
    backdrop-filter: blur(15px);
    z-index: 1;
}

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

.plan-tag {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    font-weight: 900;
}

.price-content h3 {
    font-size: 1.8rem;
    margin: 1rem 0;
}

.plan-features {
    list-style: none;
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.9rem;
    color: var(--subtext);
}

.plan-features i {
    width: 18px;
    stroke: var(--accent);
}

.price-card.featured {
    border-color: var(--accent);
    background: rgba(13, 242, 79, 0.02);
    transform: scale(1.05);
}

.mag-btn {
    width: 100%;
}

/* ==========================================
   08. AUTOMAÇÃO E TERMINAL (Index)
========================================== */
.automation-demo {
    padding: 100px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.demo-container {
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem 1rem !important;
    display: grid;
    grid-template-columns: 1fr !important;
    gap: 3rem;
    align-items: center;
    border-radius: 8px;
    overflow: hidden;
}

.demo-box {
    width: 100% !important;
    margin-top: 2rem;
    background: #000;
    padding: 2rem;
    border-radius: 4px;
    border-left: 4px solid var(--accent);
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.input-group input {
    background: #1a1a1a;
    border: 1px solid #333;
    padding: 1rem;
    color: #fff;
    outline: none;
    width: 100% !important;
    margin-bottom: 1rem;
}

.input-group button {
    background: var(--accent);
    color: var(--bg);
    border: none;
    padding: 1rem;
    font-weight: 900;
    text-transform: uppercase;
}

.workflow-status {
    margin-top: 2rem;
    flex-direction: column;
    gap: 0.8rem;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.85rem;
    color: var(--subtext);
    opacity: 0.3;
    transition: 0.5s;
}

.status-item.active {
    opacity: 1;
    color: var(--accent);
}

.terminal-section {
    padding: 60px 5% 100px 5%;
    max-width: 1000px;
    margin: 0 auto;
}

.terminal-window {
    background: #000;
    border: 1px solid #333;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7);
    position: relative;
    min-height: 350px;
}

.terminal-header {
    background: #1a1a1a;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid #222;
}

.dots {
    display: flex;
    gap: 8px;
}

.dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dots span:nth-child(1) { background: #ff5f56; }
.dots span:nth-child(2) { background: #ffbd2e; }
.dots span:nth-child(3) { background: #27c93f; }

.t-title {
    font-size: 0.75rem;
    color: #888;
    font-family: 'Courier New', monospace;
    flex-grow: 1;
    text-align: center;
}

.terminal-body {
    padding: 25px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 1rem;
    color: var(--accent);
    height: 300px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

#terminal-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.t-line {
    word-break: break-all;
    line-height: 1.4;
}

.t-cursor {
    animation: blink 1s infinite;
}

@keyframes blink { 50% { opacity: 0; } }

/* ==========================================
   09. TECH SLIDER (Letreiro Digital Infinito)
========================================== */
.tech-slider {
    width: 100%;
    overflow: hidden;
    padding: 60px 0;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.slider-title {
    text-align: center;
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: var(--subtext);
    margin-bottom: 30px;
}

.logos-track {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.logos {
    display: inline-block;
    white-space: nowrap;
    animation: scrollTech 20s linear infinite;
}

.logos:hover {
    animation-play-state: paused;
}

.logos span {
    display: inline-block;
    margin: 0 40px;
    font-size: 1.5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.2);
    transition: 0.3s;
}

.logos span:hover {
    color: var(--accent);
}

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

/* ==========================================
   10. PORTFÓLIO E LAB (Portfolio)
========================================== */
.portfolio, .testimonials, .process {
    padding: 80px 5%;
    max-width: 1600px;
    margin: 0 auto;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 colunas no PC */
    gap: 2rem;
}

.project-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    overflow: hidden;
    transition: 0.4s ease;
}

.project-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
}

.project-image {
    height: 250px;
    background: linear-gradient(45deg, #1a1a1a, #0a0a0a);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
}

.tag {
    background: var(--accent);
    color: var(--bg);
    padding: 4px 12px;
    font-size: 0.7rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.project-info {
    padding: 2rem;
}

.project-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.tech-stack {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.tech-stack span {
    font-size: 0.75rem;
    color: var(--accent);
    border: 1px solid rgba(13, 242, 79, 0.2);
    padding: 4px 10px;
    border-radius: 2px;
}

.stats {
    padding: 60px 5%;
    max-width: 1600px;
    margin: 0 auto;
}

.stats-container {
    display: grid;
    grid-template-columns: 1fr 1fr !important;
    gap: 1.5rem !important;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    padding: 1.5rem !important;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    text-align: center;
}

.stat-item h2 {
    font-size: 2.2rem !important;
    color: var(--accent);
    font-weight: 900;
}

.stat-item p {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--subtext);
    white-space: normal;
}

.chat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.chat-card {
    background: rgba(255, 255, 255, 0.02);
    padding: 2.5rem;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.chat-user {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.avatar {
    width: 45px;
    height: 45px;
    background: var(--accent);
    color: var(--bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
}

.chat-bubble {
    color: var(--subtext);
    font-style: italic;
    font-size: 1.1rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.step {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.01);
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    transition: 0.3s;
}

.step:hover {
    border-top-color: var(--accent);
    background: rgba(13, 242, 79, 0.02);
}

.step-number {
    font-size: 0.8rem;
    font-weight: 900;
    color: var(--accent);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.step h3 { font-size: 1.4rem; margin-bottom: 1rem; }
.step p { color: var(--subtext); font-size: 0.9rem; }

/* ==========================================
   11. SOBRE E CONTATO (Sobre Nós)
========================================== */
.global-reach {
    padding: 100px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.reach-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.reach-text h2 { font-size: 2.5rem; margin-bottom: 1.5rem; }

.location-tags {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.loc {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
}

.map-wrapper {
    position: relative;
    width: 100%;
    max-width: 800px; /* Impede que fique gigantesco em telas super largas */
    margin: 0 auto;
    
    /* A MÁGICA: Substituímos o height: 400px por isso. 
       Agora o mapa sempre tem o dobro da largura em relação à altura! */
    aspect-ratio: 2 / 1; 
    height: auto; 
    
    background: radial-gradient(circle, rgba(13, 242, 79, 0.45) 0%, transparent 70%);
    border-radius: 50%;
}

.world-map {
    width: 100%;
    height: 100%;
    position: relative;
}

/* O CSS da imagem real que acabamos de colocar no HTML */
.map-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain; /* Garante que o mapa não fique esticado */
    object-fit: fill;
    /* Deixa totalmente preta e com leve transparência */
    filter: brightness(0);
    opacity: 0.85; 
    z-index: 1; /* Fica no fundo */
}

/* Bolinhas e Radar */
.dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--accent);
    z-index: 10; /* Garante que fique NA FRENTE da imagem preta */
}

/* Ajustes finos de posição das bolinhas para o novo mapa */
.dot.br { top: 65%; left: 30%; } /* Anápolis, Brasil centralizado */
.dot.us { top: 28%; left: 19%; } /* Estados Unidos */
.dot.eu { top: 43%; left: 48%; } /* Europa Ocidental */
.dot.as { top: 37%; left: 68%; } /* Ásia (China/Japão) */

/* O pulso animado é a sede (Anápolis), então tem que ter a mesma posição do .br */
.pulse {
    position: absolute;
    top: 65%;  /* EXATAMENTE O MESMO VALOR DO .br */
    left: 30%; /* EXATAMENTE O MESMO VALOR DO .br */
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: mapPulse 2s infinite;
    z-index: 10;
}

.map-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain; 
    
    /* O mapa original é preto. Se você quiser que ele fique BEM preto, pode manter o brightness. */
    filter: brightness(0);
    opacity: 0.85; 
    z-index: 1; 
}

@keyframes mapPulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(5); opacity: 0; }
}

.contact {
    padding: 100px 5%;
    background: linear-gradient(180deg, var(--bg) 0%, rgba(13, 242, 79, 0.05) 100%);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    padding: 4rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.contact-content h2 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.contact-content span { color: var(--accent); }
.contact-content p { color: var(--subtext); margin-bottom: 2.5rem; font-size: 1.1rem; }

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.method {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 500;
}

.method i { width: 20px; stroke: var(--accent); }

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: var(--accent) !important; /* Força o fundo verde */
    color: var(--bg) !important; /* Força o texto preto */
    padding: 1.2rem 2.5rem;
    text-decoration: none !important;
    font-weight: 900;
    font-size: 1.1rem;
    text-transform: uppercase;
    transition: 0.3s;
    border-radius: 4px;
    border: none;
}

.whatsapp-btn i {
    stroke: var(--bg) !important; /* Ícone preto */
}

.whatsapp-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(13, 242, 79, 0.4);
}

.response-time {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: var(--subtext);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto 100px auto;
    padding: 0 5%;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 1.1rem;
    transition: 0.3s;
}

.faq-question i { width: 18px; stroke: var(--accent); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    color: var(--subtext);
    font-size: 0.95rem;
    margin-top: 0;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    margin-top: 1rem;
}

/* ==========================================
   12. RESPONSIVIDADE GERAL E MENU LATERAL
========================================== */
@media (max-width: 992px) {
    /* Desativa o Cursor Customizado no Celular/Tablet */
    .cursor-dot, .cursor-outline { display: none !important; }
    * { cursor: auto !important; }

    /* Centralização do Campo "Vamos Construir" */
    .contact-container { 
        display: flex; 
        flex-direction: column; 
        align-items: center; 
        text-align: center; 
        padding: 4rem 2rem;
    }
    .contact-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    .contact-methods {
        align-items: center;
        justify-content: center;
        width: 100%;
    }
    .method { justify-content: center; width: 100%; }

    /* Outros Grids */
    .services-grid, .pricing-grid, .chat-grid, .process-steps { grid-template-columns: 1fr; text-align: center; }
    .stats-container { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
    .reach-container { grid-template-columns: 1fr; text-align: center; }
    .location-tags { align-items: center; justify-content: center; }
    .footer-content { flex-direction: column; gap: 2rem; text-align: center; }
    
    /* ---------------------------------
       Ajuste do MAPA (Proporção Fixa)
       --------------------------------- */
    .map-wrapper { 
        height: auto; 
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
        aspect-ratio: 2 / 1; /* Trava a proporção para os pontos não fugirem */
    }
    .map-image { object-fit: fill !important; }

    /* RECALIBRAGEM DOS PONTOS (Valores para o mapa fixo) */
    /* Ajustes finos de posição das bolinhas para o novo mapa */
    .dot.br { top: 64%; left: 29%; } /* Anápolis, Brasil centralizado */
    .dot.us { top: 26%; left: 15%; } /* Estados Unidos */
    .dot.eu { top: 43%; left: 48%; } /* Europa Ocidental */
    .dot.as { top: 37%; left: 68%; } /* Ásia (China/Japão) */   
    .pulse { top: 64%; left: 29%; }

    /* ---------------------------------
       HEADER MOBILE - LOGO AUMENTADA
       --------------------------------- */
    nav { justify-content: space-between; padding: 0 7%; }
    .logo-container { width: auto; margin: 0 !important; }
    
    /* AQUI AUMENTAMOS A LOGO */
    .main-logo { 
        height: 130px !important; /* Estava 80px, aumentamos para 130px */
        width: auto;
        margin-left: -90px; /* Ajuste para tirar o respiro da imagem */
    }
    
    .menu-toggle { display: block; z-index: 200; position: relative; }
    .bar { display: block; width: 25px; height: 2px; margin: 6px auto; background-color: var(--accent); transition: 0.3s; }
    
    /* MENU LATERAL (A Gaveta) */
    .nav-content {
        position: fixed;
        top: 0;
        right: 0;
        width: 300px; 
        height: 100vh;
        background: #0a0a0a;
        border-left: 1px solid rgba(13, 242, 79, 0.2);
        display: flex !important; 
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        z-index: 150;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.77, 0.2, 0.05, 1);
    }
    
    .nav-content.active { transform: translateX(0); }
    
    .nav-links, .nav-actions {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .nav-item { color: #fff; font-size: 1.3rem; }
}

@media (max-width: 480px) {
    .nav-content { width: 100%; }
    .main-logo { height: 110px !important; } /* Um pouco menor em telas minúsculas */
}

/* ==========================================
   AJUSTE MOBILE DA NAVEGAÇÃO
========================================== */
@media (max-width: 992px) {
    .nav-links, .nav-actions {
        display: none; /* Esconde menu central e direita no tablet/celular */
    }
    .logo-container {
        width: auto;
    }
    .menu-toggle {
        display: block;
    }
    .portfolio-grid {
        grid-template-columns: 1fr; /* Aqui está a mágica: força 1 coluna só! */
    }
    .project-image {
        height: 200px;
    }
}
