:root {
    /* APG 2.0 Color Palette */
    --color-navy: #151433;     /* Lighter navy to reduce starkness */
    --color-navy-dark: #0f0f26;
    --color-cyan: #3fc1fb;
    --color-cyan-glow: rgba(63, 193, 251, 0.4);
    --color-gold: #FFD25A;
    --color-gold-hover: #ffc229;
    --color-white: #ffffff;
    --color-gray: #b0b0c0;
    
    /* Typography */
    --font-main: 'Montserrat', sans-serif;
    
    /* Layout */
    --container-width: 1200px;
    --section-padding: 120px 0;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-main);
    background-color: var(--color-navy);
    color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Hexagon pattern — fixed full-page layer behind everything */
body::before {
    content: '';
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image: url('images/Pattern_HEXAGON_RGB_1920x1080px.png?v=1.1');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.07;
    z-index: -1;
    pointer-events: none;
}

/* --- Moving Orbs Background (Subtler) --- */
.bg-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    opacity: 0.3;
    animation: driftOrb infinite alternate ease-in-out;
}
.orb-1 { width: 45vw; height: 45vw; background: rgba(5, 59, 134, 0.6); top: -20%; left: -10%; animation-duration: 25s; }
.orb-2 { width: 35vw; height: 35vw; background: rgba(18, 126, 153, 0.3); bottom: -10%; right: -10%; animation-duration: 30s; }

@keyframes driftOrb {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, 100px) scale(1.05); }
}

.container { max-width: var(--container-width); margin: 0 auto; padding: 0 30px; position: relative; }

/* Typography Utilities */
.text-cyan { color: var(--color-cyan); }
.text-gradient {
    background: linear-gradient(90deg, #b3e0ff 0%, var(--color-cyan) 100%);
    background-clip: text; -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center; justify-content: center;
    padding: 18px 40px;
    font-weight: 800; font-size: 1.1rem;
    border-radius: 50px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-navy-dark);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
.btn-primary { background-color: var(--color-gold); border: none; }
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 210, 90, 0.4);
}
.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: left 0.5s ease;
}
.btn-primary:hover::before { left: 100%; }

.text-gradient-gold {
    background: linear-gradient(90deg, #FFE18D 0%, var(--color-gold) 100%);
    background-clip: text; -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}
.btn-glow-gold {
    box-shadow: 0 0 25px rgba(255, 210, 90, 0.4);
}
.btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}
.btn-outline:hover {
    border-color: var(--color-cyan);
    color: var(--color-cyan);
    transform: translateY(-3px);
}

/* --- Header --- */
.header { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; padding: 20px 0; transition: all 0.4s ease; border-bottom: 1px solid transparent; }
.header.scrolled { background-color: rgba(21, 20, 51, 0.9); backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px); padding: 15px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.05); }
.header .container { display: flex; justify-content: space-between; align-items: center; }
.logo img { height: 60px; transition: transform 0.3s; }
.logo:hover img { transform: scale(1.05); }
.nav-menu { display: flex; gap: 35px; }
.nav-item { color: white; text-decoration: none; font-weight: 500; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 1px; position: relative; transition: color 0.3s; }
.nav-item:hover { color: var(--color-cyan); }
.nav-item::after { content: ''; position: absolute; bottom: -6px; left: 0; width: 0; height: 2px; background: var(--color-cyan); transition: width 0.3s ease; }
.nav-item:hover::after { width: 100%; }

/* --- Hero Section --- */
.hero { position: relative; height: 100vh; min-height: 800px; display: flex; align-items: center; overflow: hidden; }

/* Parallax Background Elements */
.hero-bg, .hero-hex, .giant-marquee { position: absolute; top:0; left:0; width: 100%; height: 100%; }
.hero-bg { background: url('images/hero_bg_1774662314237.png?v=1.1') center/cover; opacity: 0.35; animation: slowZoom 30s infinite alternate linear; }
.hero-hex { background: url('images/hexagon_pattern_1774662327344.png?v=1.1') repeat; background-size: 800px; opacity: 0.15; mix-blend-mode: overlay; pointer-events: none;}

@keyframes slowZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

/* Giant Background Marquee */
.giant-marquee {
    display: flex; align-items: center; white-space: nowrap; pointer-events: none; opacity: 0.1; z-index: 1; transform: rotate(-5deg) scale(1.2); 
}
.giant-marquee h1 {
    font-size: 15vw; font-weight: 900; -webkit-text-stroke: 2px white; color: transparent;
    animation: scrollMarquee 50s linear infinite;
}
@keyframes scrollMarquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(21, 20, 51, 0.8) 0%, var(--color-navy) 100%); z-index: 2; pointer-events: none; }

/* Hero structural tweaks */    
.grid-2cols {
    position: relative; z-index: 5;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr; 
    align-items: center; 
    gap: 60px;
    padding-top: 100px; 
    width: 100%;
}
.hero-left { display: flex; flex-direction: column; }

/* Hero Lights */
.hero-glow {
    position: absolute; border-radius: 50%; filter: blur(150px);
    z-index: 1; pointer-events: none; opacity: 0.4;
}
.hero-glow-cyan { width: 600px; height: 600px; background: var(--color-cyan); top: -100px; right: -100px; }
.hero-glow-gold { width: 400px; height: 400px; background: var(--color-gold); bottom: -100px; left: 10%; opacity: 0.15; }

.hero-left .subtitle-badge {
    display: inline-flex; padding: 6px 15px; border: 1px solid rgba(63, 193, 251, 0.3); border-radius: 30px;
    font-size: 0.85rem; font-weight: 600; letter-spacing: 2px; color: var(--color-cyan); margin-bottom: 25px; align-self: flex-start;
    background: rgba(63, 193, 251, 0.05); align-items: center; gap: 8px;
}
.hero-left .subtitle-badge::before { content: ''; display: inline-block; width: 8px; height: 8px; background: var(--color-cyan); border-radius: 50%; box-shadow: 0 0 10px var(--color-cyan); animation: pulse 2s infinite; }

.hero-title { font-size: clamp(3.5rem, 6vw, 6rem); font-weight: 900; line-height: 1.05; margin-bottom: 30px; max-width: 900px; text-transform: uppercase; letter-spacing: -1px; text-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.hero-subtitle { font-size: clamp(1.1rem, 2vw, 1.3rem); font-weight: 400; max-width: 600px; color: var(--color-gray); margin-bottom: 50px; line-height: 1.6; border-left: 3px solid var(--color-cyan); padding-left: 20px;}

/* Floating Hologram & Cards */
.floating-hologram { position: relative; width: 100%; perspective: 1000px; margin-top: 40px;}
.main-float-img {
    width: 100%; border-radius: 20px; box-shadow: 0 30px 60px rgba(0,0,0,0.6);
    border: 1px solid rgba(63, 193, 251, 0.2);
    transform: rotateY(-10deg) rotateX(10deg);
    animation: floatAnim 6s ease-in-out infinite alternate;
}
@keyframes floatAnim {
    0% { transform: translateY(0) rotateY(-10deg) rotateX(10deg); }
    100% { transform: translateY(-20px) rotateY(-5deg) rotateX(5deg); }
}
.status-card {
    position: absolute; background: rgba(15, 15, 38, 0.85);
    backdrop-filter: blur(15px); border: 1px solid rgba(255,255,255,0.1);
    padding: 15px 25px; border-radius: 12px; display: flex; align-items: center; gap: 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.4); z-index: 10;
}
.card-top { top: 20px; right: -30px; animation: floatCard 5s ease-in-out infinite alternate 1s; }
.card-bottom { bottom: 30px; left: -20px; animation: floatCard 7s ease-in-out infinite alternate 2s; border-color: rgba(255, 210, 90, 0.3);}
@keyframes floatCard { 0% { transform: translateY(0); } 100% { transform: translateY(-15px); } }

.pulse-dot-cyan, .pulse-dot-gold { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; }
.pulse-dot-cyan { background: var(--color-cyan); box-shadow: 0 0 10px var(--color-cyan); animation: pulse 2s infinite; }
.pulse-dot-gold { background: var(--color-gold); box-shadow: 0 0 10px var(--color-gold); animation: pulse 2s infinite 1s; }

.status-card .label { font-size: 0.8rem; color: var(--color-gray); text-transform: uppercase; letter-spacing: 1px; }
.status-card .value { font-size: 1.1rem; font-weight: 800; }
.status-card .value.cyan { color: var(--color-cyan); }
.status-card .value.gold { color: var(--color-gold); }

@keyframes pulse { 0% { opacity: 0.5; } 50% { opacity: 1; } 100% { opacity: 0.5; } }

/* CSS Reveal Animations */
.scr-reveal { opacity: 0; transform: translateY(40px); transition: all 1s cubic-bezier(0.16, 1, 0.3, 1); }
.scr-reveal.active { opacity: 1; transform: translateY(0); }

/* --- Dores e Soluções (Grid Layout Restored) --- */
.sec-dores { padding: var(--section-padding); position: relative; z-index: 10; background: rgba(15, 15, 38, 0.88); border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05);}
.hz-header { margin-bottom: 70px; text-align: center;}
.section-tag { font-family: monospace; color: var(--color-cyan); letter-spacing: 3px; font-size: 0.9rem; margin-bottom: 15px; display: block; }
.section-title { font-size: clamp(2.5rem, 4vw, 3.5rem); font-weight: 800; line-height: 1.1; letter-spacing: -1px; margin-bottom: 20px;}

.dores-grid { display: grid; grid-template-columns: 1fr; gap: 30px; }
.hz-card { border-radius: 16px; background: rgba(255,255,255,0.02); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.05); position: relative; overflow: hidden; display: flex; flex-direction: column; padding: 45px; transition: transform 0.4s, border-color 0.4s, box-shadow 0.4s; }
.hz-card:hover { transform: translateY(-10px); border-color: rgba(63, 193, 251, 0.4); box-shadow: 0 15px 40px rgba(0,0,0,0.3); }

/* Card Hologram Glitch Effect on Hover (Kept because it looks cool) */
.hz-card::before { content:''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 0%, rgba(63, 193, 251, 0.05) 50%, transparent 100%); transform: translateY(-100%); transition: transform 0s; pointer-events: none; }
.hz-card:hover::before { transform: translateY(100%); transition: transform 1.5s linear infinite; }

.hz-status { display: inline-block; padding: 6px 14px; border-radius: 4px; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; margin-bottom: 20px; align-self: flex-start; }
.status-bad { background: rgba(255, 60, 60, 0.1); color: #ff6b6b; border: 1px solid rgba(255, 60, 60, 0.2);}
.status-good { background: rgba(63, 193, 251, 0.1); color: var(--color-cyan); border: 1px solid rgba(63, 193, 251, 0.2); }

.hz-card h3 { font-size: 1.8rem; margin-bottom: 15px; font-weight: 700; }
.hz-card p { color: var(--color-gray); font-size: 1.05rem; }
.hz-card .solution-block { opacity: 0; transform: translateY(20px); transition: all 0.4s; border-top: 1px dashed rgba(255,255,255,0.1); padding-top: 25px; margin-top: 25px; display: none; }
.hz-card:hover .solution-block { opacity: 1; transform: translateY(0); display: block; animation: fadeInBlock 0.4s forwards; }
.hz-card:hover .problem-block { opacity: 0.4; filter: blur(1px); }

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

/* --- Diferenciais (Parallax Grid) --- */
.sec-diferenciais { padding: var(--section-padding); }
.dif-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 80px; margin-top: 100px; padding: 0 20px;}
.dif-item { position: relative; }
.big-number { position: absolute; top: -60px; left: -30px; font-size: 10rem; font-weight: 900; line-height: 0.8; z-index: -1; -webkit-text-stroke: 2px rgba(255,255,255,0.04); color: transparent; transition: -webkit-text-stroke 0.4s; }
.dif-item:hover .big-number { -webkit-text-stroke: 2px rgba(63, 193, 251, 0.2); }
.dif-item h3 { font-size: 1.8rem; margin-bottom: 20px; font-weight: 800; display: flex; align-items: center; gap: 15px; }
.dif-item h3::before { content: ''; width: 30px; height: 3px; background: var(--color-cyan); border-radius: 2px;}
.dif-item p { font-size: 1.1rem; color: var(--color-gray); max-width: 450px; line-height: 1.7;}

/* --- Processo Timeline (Neon Tracer) --- */
.sec-processo { background: rgba(15, 15, 38, 0.88); position: relative; padding: var(--section-padding); border-top: 1px solid rgba(255,255,255,0.05); }
.timeline-wrapper { position: relative; max-width: 800px; margin: 80px auto 0; padding-left: 60px; }

/* The Base Line */
.timeline-track { position: absolute; top: 0; left: 10px; width: 2px; height: 100%; background: rgba(255,255,255,0.05); }
/* The Glowing Tracer */
.timeline-progress { position: absolute; top: 0; left: 9px; width: 4px; height: 0%; background: var(--color-cyan); box-shadow: 0 0 15px var(--color-cyan-glow); transition: height 0.1s linear; }

.tl-item { position: relative; margin-bottom: 100px; }
.tl-item:last-child { margin-bottom: 0; }
.tl-dot { position: absolute; left: -58px; top: 10px; width: 18px; height: 18px; border-radius: 50%; background: var(--color-navy); border: 2px solid rgba(255,255,255,0.2); transition: all 0.5s; z-index: 2; }
/* When active/hover */
.tl-item:hover .tl-dot { background: var(--color-cyan); border-color: var(--color-cyan); box-shadow: 0 0 20px var(--color-cyan); transform: scale(1.3); }
.tl-item h3 { font-size: 2.2rem; font-weight: 800; margin-bottom: 15px; color: rgba(255,255,255,0.8); transition: color 0.4s; }
.tl-item:hover h3 { color: white; }
.tl-item p { font-size: 1.15rem; color: var(--color-gray); max-width: 500px; }

/* Stagger Effects */
.stagger { opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.stagger.active { opacity: 1; transform: translateY(0); }

/* --- Image Banners --- */
.section-image-banner {
    margin: 60px 0;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.05);
}
.section-image-banner::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(0deg, var(--color-navy) 0%, transparent 40%);
    pointer-events: none;
    opacity: 0.8;
}
.full-width-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 10s ease;
}
.section-image-banner:hover .full-width-img {
    transform: scale(1.05);
}
/* --- Contato (Form) --- */
.sec-contato {
    padding: 120px 0 60px;
    background: linear-gradient(180deg, var(--color-navy) 0%, rgba(12, 11, 31, 0.95) 100%);
    position: relative;
    border-top: 1px solid rgba(255,255,255,0.02);
}
.grid-contact {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}
.contact-info h2 { font-size: clamp(2.5rem, 4vw, 3.5rem); font-weight: 900; margin: 20px 0; line-height: 1.1; letter-spacing: -1px; }
.contact-info p { font-size: 1.15rem; color: var(--color-gray); margin-bottom: 40px; max-width: 500px; }
.contact-details .icon { margin-right: 10px; }

.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid var(--color-gold);
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 20px rgba(255, 210, 90, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}
.form-group { margin-bottom: 20px; }
.form-group input, .form-group textarea {
    width: 100%;
    padding: 18px 20px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    color: white;
    font-family: var(--font-main);
    font-size: 1rem;
    transition: all 0.3s ease;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--color-cyan);
    background: rgba(63, 193, 251, 0.05);
    box-shadow: 0 0 20px rgba(63, 193, 251, 0.15);
}
.form-group textarea { resize: vertical; min-height: 140px; }

/* --- Modal Components --- */
.modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
    background: rgba(12, 11, 31, 0.85); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    z-index: 9999; display: flex; align-items: center; justify-content: center;
    opacity: 1; visibility: visible; transition: all 0.4s ease;
}
.modal-overlay.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.modal-content {
    background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
    border: 1px solid rgba(63, 193, 251, 0.2);
    border-radius: 20px; padding: 50px 40px; text-align: center;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
    max-width: 450px; width: 90%;
    transform: translateY(0); transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.modal-overlay.hidden .modal-content { transform: translateY(30px) scale(0.95); }
.modal-icon {
    width: 60px; height: 60px; margin: 0 auto 20px;
    background: var(--color-cyan); color: white; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem; box-shadow: 0 0 20px rgba(63, 193, 251, 0.4);
}
.modal-icon.error { background: #ff4757; box-shadow: 0 0 20px rgba(255, 71, 87, 0.4); }
.modal-title { font-size: 1.8rem; font-weight: 800; margin-bottom: 15px; }
.modal-text { color: var(--color-gray); line-height: 1.6; }

/* --- Cookie Banner (LGPD) --- */
.cookie-banner {
    position: fixed; bottom: 30px; left: 50%; transform: translateX(-50%);
    width: 90%; max-width: 900px;
    background: rgba(12, 11, 31, 0.95);
    border: 1px solid rgba(63, 193, 251, 0.2);
    border-radius: 12px; padding: 25px 30px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.7);
    backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px);
    z-index: 9998;
    display: flex; flex-direction: column;
    opacity: 1; visibility: visible; transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.cookie-banner.hidden { opacity: 0; visibility: hidden; transform: translate(-50%, 50px); pointer-events: none; }
.cookie-content p { font-size: 0.95rem; color: rgba(255,255,255,0.8); line-height: 1.6; margin-bottom: 20px;}
.cookie-content strong { color: var(--color-gold); }
.cookie-actions { display: flex; align-items: center; justify-content: flex-end; gap: 20px; flex-wrap: wrap;}
.cookie-policy-link { color: var(--color-gray); font-size: 0.9rem; text-decoration: underline; transition: color 0.3s; }
.cookie-policy-link:hover { color: white; }
.cookie-btn { padding: 12px 30px; font-size: 0.95rem; border:none; cursor:pointer; }

/* --- Scroll To Top Button --- */
.back-to-top {
    position: fixed; bottom: 100px; right: 30px;
    width: 55px; height: 55px;
    background: rgba(12, 11, 31, 0.85);
    border: 1px solid rgba(63, 193, 251, 0.3);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: var(--color-cyan);
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    z-index: 999;
    opacity: 1; visibility: visible; transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.back-to-top.hidden { opacity: 0; visibility: hidden; transform: translateY(20px); pointer-events: none; }
.back-to-top:hover { background: var(--color-cyan); color: white; transform: translateY(-5px); box-shadow: 0 15px 30px rgba(63, 193, 251, 0.4); }
.back-to-top svg { width: 24px; height: 24px; }

/* --- Footer Overhaul --- */
.sec-footer { padding: 40px 0 40px; text-align: center; position: relative; overflow: hidden; border-top: 1px solid rgba(255,255,255,0.05); background: rgba(12, 11, 31, 0.90);}
.sec-footer::before { content: ''; position: absolute; top: -50%; left: 50%; transform: translateX(-50%); width: 100vw; height: 100vw; background: radial-gradient(circle, rgba(63, 193, 251, 0.03) 0%, transparent 60%); pointer-events: none; z-index: -1; }
.footer-cta h2 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 900; margin-bottom: 25px; line-height: 1.1; letter-spacing: -1px; }
.footer-cta p { font-size: 1.3rem; color: var(--color-gray); margin-bottom: 50px; }
.footer-bottom { margin-top: 100px; display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 40px; }
.footer-bottom img { height: 40px; opacity: 0.8; transition: opacity 0.3s; }
.footer-bottom img:hover { opacity: 1;}
.footer-copyright { font-size: 0.9rem; color: rgba(255,255,255,0.4); margin: 0 20px;}

/* --- Scroll Hint --- */
.scroll-hint {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.scroll-hint-arrow {
    font-size: 1.2rem;
    animation: bounceDown 1.8s ease-in-out infinite;
    color: var(--color-cyan);
    opacity: 0.7;
}
@keyframes bounceDown {
    0%, 100% { transform: translateY(0); opacity: 0.5; }
    50% { transform: translateY(6px); opacity: 1; }
}

/* --- Team Quote --- */
.team-quote {
    margin: 40px 0 10px;
    text-align: center;
    padding: 50px 60px;
    position: relative;
    background: rgba(63, 193, 251, 0.04);
    border-radius: 20px;
    border: 1px solid rgba(63, 193, 251, 0.12);
    overflow: hidden;
}
.team-quote::before {
    content: '\201C';
    position: absolute;
    top: -10px; left: 20px;
    font-size: 10rem;
    font-family: Georgia, serif;
    color: var(--color-gold);
    opacity: 0.12;
    line-height: 1;
    pointer-events: none;
    user-select: none;
}
.team-quote::after {
    content: '\201D';
    position: absolute;
    bottom: -40px; right: 20px;
    font-size: 10rem;
    font-family: Georgia, serif;
    color: var(--color-gold);
    opacity: 0.12;
    line-height: 1;
    pointer-events: none;
    user-select: none;
}
.team-quote blockquote {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 600;
    color: var(--color-white);
    line-height: 1.7;
    letter-spacing: 0.3px;
    border: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 1;
}
.team-quote blockquote strong {
    color: var(--color-cyan);
}

/* --- Mobile Adaptations --- */
body, html { overflow-x: hidden; max-width: 100vw; }

@media (max-width: 1024px) {
    .grid-2cols { grid-template-columns: 1fr; gap: 40px; padding-top: 140px; }
    .hero-right { margin-top: 30px; }
    .status-card { transform: scale(0.85); padding: 10px 15px; }
    .card-top { right: 0; top: 0; }
    .card-bottom { left: -10px; bottom: 0; }

    .dores-grid { grid-template-columns: 1fr; }
    .hero-title { font-size: clamp(2.5rem, 8vw, 4rem); }
}

@media (max-width: 768px) {
    :root { --section-padding: 80px 0; }
    .container { padding: 0 20px; }
    
    /* Header / Nav (Mobile) - Responsive to large logo */
    .header { padding: 15px 0; height: 80px; background-color: transparent; border: none; display: flex; align-items: center; }
    .header .container { width: 100%; display: flex; flex-direction: row; align-items: center; justify-content: center; height: 100%; }
    .nav-menu { display: none !important; } /* Hard hide navigation to prevent wrapping */
    .logo { height: 100%; display: flex; align-items: center; justify-content: center; }
    .logo img { height: 70px !important; width: auto !important; max-width: 320px !important; object-fit: contain; }
    
    /* Gentle blurred glass header on scroll instead of stark black bar */
    .header.scrolled { background-color: rgba(12, 11, 31, 0.4); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid rgba(63, 193, 251, 0.1); padding: 15px 0; height: 80px; }
    
    /* Hero (Mobile) - Completely override vertical flex behaviors to simple sequential blocks */
    .hero { position: relative; height: auto; min-height: 100vh; padding-top: 100px; padding-bottom: 60px; display: block; }
    .hero-content { padding-top: 0; }
    .grid-2cols { display: flex; flex-direction: column; gap: 40px; padding-top: 0; width: 100%; }
    .hero-title { font-size: 2.5rem; line-height: 1.1; margin-bottom: 25px; }
    .hero-subtitle { font-size: 1rem; margin-bottom: 30px; }
    .hero-actions { display: flex; flex-direction: column; justify-content: flex-start; width: 100%; gap: 15px; }
    .btn { padding: 15px 20px; font-size: 1rem; width: 100%; text-align: center; margin: 0 !important; }
    
    /* Hologram & Cards */
    .floating-hologram { margin-top: 30px; perspective: none; }
    .main-float-img { animation: none; transform: none; border-radius: 12px; }
    .status-card { transform: scale(0.7); padding: 8px 12px; }
    .card-top { right: -20px; top: -10px; }
    .card-bottom { left: -10px; bottom: -10px; }
    
    /* Dores */
    .hz-card { padding: 25px; }
    .hz-card .solution-block { display: block; opacity: 1; transform: translateY(0); margin-top: 20px; padding-top: 20px;}
    .hz-card .problem-block { opacity: 1; filter: none !important;}
    
    /* Diferenciais */
    .dif-grid { grid-template-columns: 1fr; gap: 60px; margin-top: 60px; }
    .big-number { font-size: 6rem; top: -40px; left: -10px; -webkit-text-stroke: 1px rgba(255,255,255,0.08); }
    .dif-item h3 { font-size: 1.5rem; }
    .full-width-img { height: 200px; }
    
    /* Processo */
    .timeline-wrapper { padding-left: 30px; margin-top: 40px; }
    .tl-dot { left: -28px; width: 14px; height: 14px; top: 5px;}
    .timeline-track { left: 10px; }
    .timeline-progress { left: 9px; }
    .tl-item h3 { font-size: 1.5rem; }
    .tl-item { margin-bottom: 50px; }
    
    /* Footer */
    .footer-cta h2 { font-size: 2rem; }
    .footer-cta p { font-size: 1rem; }
    .footer-bottom { flex-direction: column; gap: 20px; text-align: center; margin-top: 60px;}
    .footer-bottom img { height: 70px !important; opacity: 0.9; }

    /* Team Quote (Mobile) */
    .quote-mark { display: none; }
    .team-quote {
        padding: 24px 20px;
        margin: 30px 0;
        text-align: left;
        background: rgba(63, 193, 251, 0.05);
        border-radius: 12px;
        border-left: 3px solid var(--color-cyan);
    }
    .team-quote::before, .team-quote::after { display: none; }
    .team-quote blockquote {
        font-size: 1rem;
        font-weight: 500;
        line-height: 1.6;
        color: rgba(255,255,255,0.85);
    }
    
    /* Contato (Mobile Form) */
    .sec-contato { padding: 80px 0; }
    .grid-contact { grid-template-columns: 1fr; gap: 40px; }
    .contact-info h2 { font-size: 2rem; }
    .contact-form-wrapper { padding: 30px 20px; }
}

/* --- WhatsApp Floating Button --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: pulse-wa 2s infinite;
}

.whatsapp-float svg {
    width: 35px;
    height: 35px;
    fill: currentColor;
}

.whatsapp-float:hover {
    transform: scale(1.15) rotate(-5deg);
    background-color: #20ba56;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
    animation: none;
}

/* Custom Tooltip */
.whatsapp-float::before {
    content: attr(data-tooltip);
    position: absolute;
    right: 75px; /* Spaced left of the button */
    background-color: rgba(12, 11, 31, 0.95);
    padding: 6px 12px;
    border-radius: 6px;
    color: white;
    font-size: 0.75rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(63, 193, 251, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    pointer-events: none;
}

/* Arrow for the tooltip */
.whatsapp-float::after {
    content: '';
    position: absolute;
    right: 68px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent transparent rgba(12, 11, 31, 0.95);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-float:hover::before,
.whatsapp-float:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateX(0) translateY(calc(-50% * var(--is-after, 0)));
}
.whatsapp-float:hover::after {
    transform: translateY(-50%) translateX(0);
}

@keyframes pulse-wa {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}
