/* =========================================
   CODEFORTE MASTER STYLESHEET (FINAL V1.7)
   ========================================= */

/* 1. VARIÁVEIS & CORE */
:root {
    --neon-blue: #3b82f6;
    --neon-cyan: #06b6d4;
    --neon-purple: #8b5cf6;
    --neon-pink: #ec4899;
    --primary: var(--neon-cyan);
    --secondary: var(--neon-purple);
    --bg-main: #020617; 
    --bg-dark: #0a0e17;
    --card-bg: #0f172a; 
    --card-bg-glass: rgba(30, 41, 59, 0.4);
    --text-bright: #f1f5f9;
    --text-main: #f1f5f9;
    --text-muted: #94a3b8;
    --border-color: rgba(255, 255, 255, 0.1);
    --font-main: 'Outfit', sans-serif;
    --font-code: 'Fira Code', monospace;
    --error-red: #ef4444;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    background-color: var(--bg-main);
    color: var(--text-bright);
    font-family: var(--font-main);
    overflow-x: hidden;
    line-height: 1.6;
    min-height: 100vh;
}

img {
    user-select: none;
    -webkit-user-select: none; 
    -ms-user-select: none;     
    pointer-events: none;
}

/* CANVAS & BACKGROUND */
#constellation-canvas { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -10; pointer-events: none; }

.hero-blob {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 600px; height: 600px;
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
    filter: blur(120px); opacity: 0.4; z-index: -5;
    animation: blobAnim 20s infinite alternate ease-in-out;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}
@keyframes blobAnim {
    0% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; transform: translate(-50%, -60%) rotate(0deg) scale(1); }
    50% { transform: translate(-40%, -40%) rotate(90deg) scale(1.2); }
    100% { border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%; transform: translate(-60%, -50%) rotate(180deg) scale(0.9); }
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 25px; position: relative; }
.font-code { font-family: var(--font-code); }

/* 2. HEADER & NAV */
.brand-logo-hero { 
    position: absolute; left: 50%; top: 130px; transform: translateX(-50%); z-index: 1000;
    width: 400px; height: 150px; display: flex; justify-content: center; align-items: flex-start;
    transition: all 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}
.brand-logo-hero img { height: 170px; width: auto; filter: drop-shadow(0 15px 30px rgba(0,0,0,0.6)); }

.header-main {
    position: fixed; top: 0; width: 100%; z-index: 1001;
    padding: 20px 0; transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    background: rgba(2, 6, 23, 0.2); backdrop-filter: blur(5px);
    height: 90px; display: flex; align-items: center;
}
.header-main.scrolled {
    background: rgba(2, 6, 23, 0.95); backdrop-filter: blur(20px);
    padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.1); height: 90px; 
}

.nav-wrapper { display: flex; justify-content: space-between; align-items: center; width: 100%; height: 100%; }

.brand-logo-header {
    display: flex; align-items: center; opacity: 0; visibility: hidden;
    transform: translateY(-20px); transition: all 0.4s ease;
}
.brand-logo-header img { height: 70px; width: auto; filter: drop-shadow(0 5px 10px rgba(0,0,0,0.3)); }
.header-main.show-logo .brand-logo-header { opacity: 1; visibility: visible; transform: translateY(0); }

.desktop-nav { display: flex; gap: 30px; align-items: center; }

.nav-link-hover { position: relative; color: var(--text-muted); text-decoration: none; font-weight: 500; transition: color 0.3s ease; }
.nav-link-hover:hover { color: #fff; }
.nav-link-hover::after {
    content: ''; position: absolute; width: 0; height: 2px; bottom: -5px; left: 0;
    background-color: var(--neon-cyan); box-shadow: 0 0 8px var(--neon-cyan);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-link-hover:hover::after { width: 100%; }

.btn-cyber {
    padding: 12px 35px; border-radius: 4px; text-decoration: none;
    color: #fff; font-weight: 700; font-size: 0.9rem;
    background: rgba(6, 182, 212, 0.1); border: 1px solid var(--neon-cyan);
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.2), inset 0 0 20px rgba(6, 182, 212, 0.05);
    transition: 0.4s; position: relative; overflow: hidden; z-index: 1;
}
.btn-cyber:hover { box-shadow: 0 0 40px rgba(6, 182, 212, 0.5); background: var(--neon-cyan); color: var(--bg-main); }

/* Sidebar */
.menu-trigger {
    display: none; /* Escondido em PC */
    width: 50px; height: 50px;
    background: rgba(6, 182, 212, 0.1); 
    border: 1px solid var(--neon-cyan);
    color: #fff; border-radius: 8px; font-size: 1.5rem; 
    cursor: pointer; align-items: center; justify-content: center;
    transition: 0s; z-index: 1001; margin-right: -15px;
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.2), inset 0 0 20px rgba(6, 182, 212, 0.05);
}

.menu-trigger:hover, .menu-trigger:active {
    background: var(--neon-cyan); color: var(--bg-main); 
    box-shadow: 0 0 40px rgba(6, 182, 212, 0.5); transform: translateY(-2px); 
}

.sidebar-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.7); backdrop-filter: blur(0.5px); z-index: 2000; opacity: 0; visibility: hidden; transition: 0.4s; }
.sidebar-overlay.active { opacity: 1; visibility: visible; }
.sidebar-menu { position: fixed; top: 0; right: 0; width: 230px; height: 100vh; background: rgba(8, 33, 92, 0.116); backdrop-filter: blur(20px); border-left: 1px solid rgba(255,255,255,0.05); z-index: 2001; transform: translateX(100%); transition: 0.5s; padding: 40px 30px; display: flex; flex-direction: column; }
.sidebar-menu.active { transform: translateX(0); }
.sidebar-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 20px; }
.sidebar-brand { font-family: var(--font-code); color: #fff; font-weight: 700; font-size: 1.3rem; }
.close-btn { background: transparent; border: none; color: var(--text-muted); font-size: 1.5rem; cursor: pointer; transition: 0.3s; }
.sidebar-links { list-style: none; display: flex; flex-direction: column; gap: 35px; }
.sidebar-links a { text-decoration: none; color: var(--text-bright); font-size: 1.3rem; font-weight: 500; display: flex; align-items: center; gap: 15px; }
.mobile-cta { margin-top: auto; }

/* 3. SEÇÕES GERAIS */
.section-title { text-align: center; margin-bottom: 90px; position: relative; z-index: 2; }
.section-title h2 { 
    font-size: 3rem; font-weight: 800; 
    background: linear-gradient(to right, #fff, var(--text-muted)); 
    -webkit-background-clip: text; background-clip: text; 
    color: transparent; display: inline-block; position: relative; 
}
.section-title h2::after { content: ''; position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%); width: 60px; height: 3px; background: var(--neon-cyan); border-radius: 3px; box-shadow: 0 0 15px var(--neon-cyan); }

.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 50px; }
.grid-services { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }

/* 4. HERO SECTION */
.hero-section { min-height: 100vh; display: flex; align-items: center; position: relative; padding-top: 100px; overflow: hidden; }
.hero-text-container { max-width: 850px; margin-top: 150px; position: relative; z-index: 5; }
.hero-title-glitch { font-size: 5rem; line-height: 1; font-weight: 800; margin-bottom: 25px; color: #fff; letter-spacing: -2px; text-shadow: 3px 0px 0px rgba(59, 130, 246, 0.8), -3px 0px 0px rgba(249, 115, 22, 0.8); }
.hero-section::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 250px; background: linear-gradient(to bottom, transparent, var(--bg-main)); z-index: -1; pointer-events: none; }

/* PAGE HERO */
.page-hero { padding-top: 180px; padding-bottom: 60px; text-align: center; }
.page-title { font-size: 3.5rem; font-weight: 800; line-height: 1.1; margin-bottom: 20px; color: #fff; }

/* 5. CARDS */
.minimal-card { 
    position: relative; background-color: var(--card-bg); border-radius: 16px; padding: 40px 30px; 
    border: 1px solid rgba(255, 255, 255, 0.05); box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5); 
    transition: 0.3s; overflow: hidden; display: flex; flex-direction: column; justify-content: center; height: 100%; 
}
.minimal-card-wide { 
    position: relative; background-color: var(--card-bg); border-radius: 16px; padding: 50px; 
    border: 1px solid rgba(255, 255, 255, 0.05); box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5); 
    transition: 0.3s; overflow: hidden; display: flex; align-items: center; gap: 50px; margin-bottom: 40px;
}

/* Efeitos comuns dos cards */
.minimal-card::before, .minimal-card-wide::before { 
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: var(--card-accent, var(--neon-cyan)); opacity: 0.7; 
}
.minimal-card::after { 
    content: ''; position: absolute; top: -50px; right: -50px; width: 150px; height: 150px; 
    background: var(--card-accent, var(--neon-cyan)); filter: blur(80px); opacity: 0.15; 
    border-radius: 50%; pointer-events: none; transition: 0.3s; 
}
.minimal-card-wide::after {
    content: ''; position: absolute; top: -50px; right: -50px; width: 200px; height: 200px; 
    background: var(--card-accent, var(--neon-cyan)); filter: blur(100px); opacity: 0.15; 
    border-radius: 50%; pointer-events: none; transition: 0.3s; 
}

.minimal-card:hover, .minimal-card-wide:hover { 
    transform: translateY(-7px); border-color: rgba(255, 255, 255, 0.15); 
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.6), 0 0 20px -5px var(--card-accent); 
}
.minimal-card:hover::after, .minimal-card-wide:hover::after { opacity: 0.25; }

/* Cores dos Cards */
.accent-cyan { --card-accent: var(--neon-cyan); } 
.accent-purple { --card-accent: var(--neon-purple); } 
.accent-blue { --card-accent: var(--neon-blue); }
.accent-pink { --card-accent: var(--neon-pink); }

/* Conteúdo dos Cards */
.card-icon { font-size: 2.5rem; margin-bottom: 25px; color: var(--card-accent); display: inline-block; }
.card-visual-col { flex: 0 0 200px; display: flex; justify-content: center; align-items: center; }
.card-icon-big { font-size: 6rem; color: var(--card-accent); text-shadow: 0 0 30px rgba(0,0,0,0.2); }
.card-content-col { flex: 1; }

.minimal-card h3 { font-size: 1.5rem; margin-bottom: 12px; color: #fff; font-weight: 700; letter-spacing: -0.5px; }
.minimal-card p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.6; }

/* Elementos da Página Serviços */
.service-tag { font-family: var(--font-code); color: var(--card-accent); font-size: 0.9rem; margin-bottom: 10px; display: block; letter-spacing: 1px; }
.tech-stack { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 25px; }
.tech-badge {
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    padding: 5px 15px; border-radius: 50px; font-size: 0.8rem; font-family: var(--font-code);
    color: var(--text-muted); transition: 0.3s;
}
.tech-badge:hover { border-color: var(--neon-cyan); color: var(--neon-cyan); background: rgba(6, 182, 212, 0.1); }
.benefit-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 25px; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 20px; }
.benefit-list li { display: flex; align-items: center; gap: 10px; color: #fff; font-size: 0.9rem; }
.benefit-list li i { color: var(--card-accent); font-size: 0.8rem; }


/* 6. PORTFOLIO */
.portfolio-item { position: relative; border-radius: 16px; overflow: hidden; background: var(--card-bg); border: 1px solid rgba(255, 255, 255, 0.05); transition: 0.3s; }
.portfolio-item:hover { transform: translateY(-5px); box-shadow: 0 20px 40px -10px rgba(0,0,0,0.6); }
.port-img-box { width: 100%; height: 240px; overflow: hidden; position: relative; }
.port-img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; filter: grayscale(20%); }
.portfolio-item:hover .port-img { transform: scale(1.05); filter: grayscale(0%); }
.port-content { padding: 25px; position: relative; z-index: 2; background: var(--card-bg); }
.tag { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1.5px; font-weight: 600; color: var(--neon-cyan); margin-bottom: 10px; display: block; }
.port-content h3 { font-size: 1.4rem; color: #fff; margin-bottom: 8px; }
.port-content p { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 20px; }
.link-arrow { text-decoration: none; color: #fff; font-weight: 600; font-size: 0.9rem; display: flex; align-items: center; gap: 8px; transition: 0.3s; }
.link-arrow:hover { color: var(--neon-cyan); }

/* 7. ELEMENTOS FLUTUANTES (Código 3D) */
.code-float-container { position: absolute; right: -60%; top: 50%; z-index: 10; perspective: 1000px; transform-style: none; }
.code-window-glass { background: rgba(2, 6, 23, 0.5); backdrop-filter: blur(15px); border: 1px solid rgba(139, 92, 246, 0.3); border-radius: 12px; padding: 25px; width: 380px; transform: rotateY(-15deg) rotateX(10deg); box-shadow: -20px 20px 60px rgba(0,0,0,0.5); animation: floatCode 8s ease-in-out infinite; transform-style: preserve-3d; }
@keyframes floatCode { 0%, 100% { transform: rotateY(-15deg) rotateX(10deg) translateY(0); } 50% { transform: rotateY(-12deg) rotateX(8deg) translateY(-25px); } }
.window-controls { display: flex; gap: 8px; margin-bottom: 15px; }
.ctrl-dot { width: 10px; height: 10px; border-radius: 50%; }

/* 8. FOOTER & WHATSAPP */
.footer-main { background: rgba(2, 6, 23, 0.95); border-top: 1px solid rgba(255,255,255,0.05); padding: 40px 0; margin-top: 50px; position: relative; z-index: 10; text-align: center; }
.footer-info { color: var(--text-muted); font-size: 0.9rem; line-height: 1.8; }
.footer-info strong { color: #fff; }
.footer-dev { color: var(--neon-cyan); text-decoration: none; font-weight: 600; }

.whatsapp-float { position: fixed; width: 60px; height: 60px; bottom: 30px; right: 30px; background-color: #25d366; color: #FFF; border-radius: 50px; text-align: center; font-size: 30px; box-shadow: 0 0 20px rgba(37, 211, 102, 0.4); z-index: 1000; display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; text-decoration: none; }
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 0 40px rgba(37, 211, 102, 0.6); background-color: #20bd5a; }
.whatsapp-float::after { content: ''; position: absolute; width: 100%; height: 100%; border-radius: 50%; border: 2px solid #25d366; opacity: 0; animation: pulse-border 1.5s infinite; }
@keyframes pulse-border { 0% { transform: scale(1); opacity: 1; } 100% { transform: scale(1.5); opacity: 0; } }

/* =========================================
   10. PÁGINA ORÇAMENTO / DECOLAR (ATUALIZADA)
   ========================================= */

.budget-hero {
    padding-top: 160px; padding-bottom: 20px; text-align: center;
}

.budget-container {
    width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px 100px 20px;
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start;
}

.decolar-container {
    min-height: 100vh; display: flex; justify-content: center; align-items: center;
    padding: 120px 20px 50px 20px; position: relative;
}

.glow-bg {
    position: absolute; width: 300px; height: 300px; border-radius: 50%;
    filter: blur(100px); z-index: -1; opacity: 0.4;
}
.glow-1 { top: 10%; left: 10%; background: var(--primary); }
.glow-2 { bottom: 10%; right: 10%; background: var(--secondary); }

.text-side h1, .budget-info h2 {
    font-family: var(--font-main); font-size: 2.5rem; line-height: 1.1; margin-bottom: 20px; color: white;
}

.gradient-text, .gradient-text-budget {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

.text-side p, .budget-info p {
    color: var(--text-muted); font-size: 1.1rem; margin-bottom: 30px; line-height: 1.6;
}

.text-side .benefit-list, .budget-benefits {
    list-style: none; display: block; border-top: none; padding-top: 0;
}

.text-side .benefit-list li, .budget-benefits li {
    margin-bottom: 15px; font-size: 1.1rem; display: flex; align-items: center;
    gap: 15px; color: #e2e8f0; font-family: var(--font-main);
}
.text-side .benefit-list li i, .budget-benefits i { color: var(--primary); font-size: 1.2rem; }

.form-card, .form-wrapper {
    background: var(--card-bg-glass); border: 1px solid var(--border-color);
    padding: 40px; border-radius: 20px; backdrop-filter: blur(15px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.form-card h2 {
    margin-bottom: 25px; font-size: 1.8rem; border-left: 4px solid var(--primary); padding-left: 15px;
}

.project-form { display: grid; grid-template-columns: 1fr; gap: 20px; }

.input-group, .form-group {
    display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px;
}

.input-group label, .form-group label {
    font-size: 0.85rem; font-weight: 600; color: var(--primary); margin-left: 5px; font-family: var(--font-code);
}

.project-form input, .project-form textarea, .form-control {
    background: rgba(2, 6, 23, 0.5); border: 1px solid var(--border-color); border-radius: 8px;
    padding: 12px 16px; font-size: 1rem; color: white; outline: none; transition: all 0.3s ease;
    width: 100%; font-family: var(--font-main);
}

.project-form textarea, textarea.form-control { min-height: 150px; resize: vertical; }

.project-form input:focus, .project-form textarea:focus, .form-control:focus {
    border-color: var(--primary); box-shadow: 0 0 15px rgba(6, 182, 212, 0.2);
    background: rgba(0, 0, 0, 0.5); transform: translateY(-2px);
}

/* --- ESTILOS DO CONSENTIMENTO (CHECKBOX) --- */
.consent-wrapper {
    display: flex; align-items: flex-start; gap: 12px; margin-bottom: 25px;
    padding: 15px; background: var(--card-bg-glass);
    border: 1px solid var(--border-color); border-radius: 8px; transition: all 0.3s ease;
}
.consent-wrapper:hover {
    border-color: rgba(6, 182, 212, 0.3); background: rgba(30, 41, 59, 0.6);
}

/* Checkbox Customizado */
.custom-checkbox {
    appearance: none; -webkit-appearance: none; flex-shrink: 0;
    width: 20px; height: 20px; border: 2px solid #475569; border-radius: 4px;
    background-color: transparent; cursor: pointer; position: relative;
    margin-top: 2px; transition: all 0.2s ease;
}

/* Estado Marcado */
.custom-checkbox:checked {
    background-color: var(--neon-cyan); border-color: var(--neon-cyan);
    box-shadow: 0 0 10px rgba(6, 182, 212, 0.4);
}

/* Ícone Check */
.custom-checkbox:checked::after {
    content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
    color: var(--bg-main); font-size: 12px; position: absolute;
    top: 50%; left: 50%; transform: translate(-50%, -50%);
}

/* Texto do Consentimento */
.consent-label {
    font-family: var(--font-main); color: var(--text-muted); font-size: 0.9rem;
    line-height: 1.5; cursor: pointer; user-select: none;
}
.consent-label strong { color: #fff; }

/* Animação de Erro (Shake) */
.shake-horizontal {
    animation: shake 0.5s cubic-bezier(.36,.07,.19,.97) both;
    border-color: var(--error-red) !important;
}
@keyframes shake {
    10%, 90% { transform: translate3d(-1px, 0, 0); }
    20%, 80% { transform: translate3d(2px, 0, 0); }
    30%, 50%, 70% { transform: translate3d(-4px, 0, 0); }
    40%, 60% { transform: translate3d(4px, 0, 0); }
}

/* --- BOTÕES E TURNSTILE --- */

.btn-decolar, .btn-submit {
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-cyan));
    color: white; padding: 16px; border: none; border-radius: 8px; font-size: 1.1rem;
    font-weight: 700; cursor: pointer; text-transform: uppercase; letter-spacing: 1px;
    transition: 0.3s; margin-top: 10px; display: flex; justify-content: center;
    align-items: center; gap: 10px; width: 100%; font-family: var(--font-main);
}

.btn-decolar:hover, .btn-submit:hover {
    filter: brightness(1.2); transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(6, 182, 212, 0.4);
}

.cf-turnstile { margin-bottom: 20px; display: flex; justify-content: center; }

/* ALERTA BONITO (modal) */
.cf-alert {
    position: fixed; left: 0; top: 0; width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    background: rgba(0,0,0,0.6); z-index: 3000; visibility: hidden; opacity: 0;
    transition: opacity 0.22s ease, visibility 0.22s ease;
}
.cf-alert.show { visibility: visible; opacity: 1; }
.cf-alert-card {
    width: 420px; max-width: calc(100% - 40px); background: linear-gradient(180deg, rgba(15,23,42,0.98), rgba(2,6,23,0.98));
    border: 1px solid rgba(255,255,255,0.06); padding: 22px; border-radius: 12px; box-shadow: 0 20px 50px rgba(2,6,23,0.6);
    color: var(--text-bright); font-family: var(--font-main);
}
.cf-alert-title { font-size: 1.15rem; font-weight: 700; margin-bottom: 8px; color: #fff; }
.cf-alert-message { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 18px; white-space: pre-wrap; }
.cf-alert-actions { display: flex; gap: 10px; justify-content: flex-end; }
.btn-alert {
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-cyan));
    color: #fff; padding: 10px 16px; border-radius: 10px; border: none; cursor: pointer; font-weight: 700;
    box-shadow: 0 8px 20px rgba(6,182,212,0.12);
}
.btn-alert.secondary { background: transparent; border: 1px solid rgba(255,255,255,0.06); color: var(--text-bright); }
.cf-alert-close { position: absolute; top: 18px; right: 20px; background: transparent; border: none; color: var(--text-muted); font-size: 1.1rem; cursor: pointer; }

/* =========================================
   11. PÁGINA OBRIGADO (Thank You)
   ========================================= */

.thank-you-section {
    min-height: 100vh; display: flex; justify-content: center; align-items: center;
    padding: 100px 20px 20px 20px; text-align: center;
}

.thank-card {
    background: var(--card-bg-glass); backdrop-filter: blur(15px); border: 1px solid var(--border-color);
    padding: 60px 40px; border-radius: 20px; max-width: 600px; width: 100%;
    box-shadow: 0 0 50px rgba(6, 182, 212, 0.15);
    animation: popIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes popIn {
    0% { transform: scale(0.8); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.success-icon-box {
    width: 100px; height: 100px; background: rgba(6, 182, 212, 0.1); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; margin: 0 auto 30px auto;
    border: 2px solid var(--neon-cyan); box-shadow: 0 0 20px rgba(6, 182, 212, 0.3);
}

.success-icon-box i { font-size: 3rem; color: var(--neon-cyan); }

.thank-card h1 {
    font-family: var(--font-main); font-size: 2.5rem; margin-bottom: 15px; color: #fff;
}

.thank-card p {
    color: var(--text-muted); font-size: 1.1rem; margin-bottom: 40px; line-height: 1.6;
}

.btn-home {
    display: inline-block; background: linear-gradient(135deg, var(--neon-blue), var(--neon-cyan));
    color: white; padding: 15px 40px; border-radius: 50px; font-weight: 700;
    text-decoration: none; text-transform: uppercase; letter-spacing: 1px;
    transition: 0.3s; box-shadow: 0 10px 20px -10px rgba(6, 182, 212, 0.5);
}

.btn-home:hover {
    transform: translateY(-3px); box-shadow: 0 15px 30px -10px rgba(6, 182, 212, 0.7); filter: brightness(1.2);
}

.next-steps {
    margin-top: 30px; border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px; font-size: 0.9rem; font-family: var(--font-code); color: var(--neon-cyan);
}

/* 12. MEDIA QUERIES (RESPONSIVIDADE GERAL) */
@media screen and (min-width: 969px) and (max-width: 1366px) {
    .brand-logo-hero img { height: 120px; }
    .brand-logo-hero { width: 170px; top: 150px; }
    .hero-title-glitch { font-size: 4rem; width: 650px; }
    .hero-text-container { margin-top: 30px; }
}

@media (max-width: 968px) {
    .menu-trigger { display: flex; }
    .desktop-nav { display: none; }
    .nav-wrapper { justify-content: flex-end !important; }
    .hero-title-glitch { font-size: 3rem; }
    .code-float-container { display: none; }
    .section-title h2 { font-size: 3rem; }
    .grid-services { grid-template-columns: 1fr; gap: 30px; }
    .grid-3 { grid-template-columns: 1fr; gap: 30px; }
    .whatsapp-float { bottom: 20px; right: 20px; width: 50px; height: 50px; font-size: 30px; }
    .header-main { 
        height: 50px; background: rgba(2, 6, 23, 0.95) !important; 
        backdrop-filter: blur(20px) !important; border-bottom: 1px solid rgba(255,255,255,0.1) !important;
        transition: none !important;
    }
    .brand-logo-header { position: absolute; left: 20px; opacity: 0; visibility: hidden; }
    .brand-logo-header img { height: 60px; }
    .brand-logo-hero { position: absolute; top: 100px; left: 50%; transform: translateX(-50%); width: auto; height: auto; }
    .brand-logo-hero img { height: 120px; margin-top: 0; }
    .hero-section { padding-top: 100px !important; align-items: flex-start; min-height: auto; padding-bottom: 60px; }
    .hero-text-container { margin-top: 180px; }
    body { background-image: none !important; background-color: var(--bg-main) !important; }
    .minimal-card { margin-bottom: 0px; }
    .portfolio-item { margin-bottom: 20px; }
    .page-hero { padding-top: 120px; }
    .page-title { font-size: 2.5rem; }
    .minimal-card-wide { flex-direction: column; text-align: center; padding: 30px 20px; gap: 20px; }
    .card-visual-col { flex: auto; width: 100%; margin-bottom: 10px; }
    .card-icon-big { font-size: 4rem; }
    .benefit-list { grid-template-columns: 1fr; text-align: left; }
    .tech-stack { justify-content: center; }
    .budget-hero { padding-top: 120px; }
    .content-wrapper, .budget-container {
        grid-template-columns: 1fr; display: block; gap: 40px;
    }
    .decolar-container, .budget-container {
        padding-top: 100px; display: block; height: auto;
    }
    .text-side, .budget-info {
        text-align: center; margin-bottom: 40px; padding: 0 20px;
    }
    .text-side .benefit-list, .budget-benefits {
        display: inline-block; text-align: left;
    }
    .form-card, .form-wrapper, .thank-card {
        margin: 0 10px; padding: 25px;
    }
}

/* 13. AJUSTE PARA TELAS BAIXAS (Laptops e OG Image) */
@media screen and (max-height: 750px) {
    .brand-logo-hero { top: 100px; width: 300px; }
    .brand-logo-hero img { height: 120px; }
    .hero-text-container { margin-top: 160px; }
    .hero-title-glitch { font-size: 3.5rem; margin-bottom: 15px; }
}