/* CSS Variables - Color Palette */
:root {
    --color-bg-main: #000000;
    --color-bg-sec: #0A0A0A;
    --color-text-main: #FFFFFF;
    --color-text-sec: #B0B5C0;
    --color-neon-blue: #61e0f9;
    --color-cyan: #61e0f9;
    --color-neon-red: #e7004b;
    --font-main: 'Outfit', sans-serif;
    --transition: all 0.3s ease;
}

/* Base Styles */
* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { scroll-behavior: smooth; overflow-x: hidden; width: 100%; max-width: 100vw; }
body { font-family: var(--font-main); background-color: var(--color-bg-main); color: var(--color-text-main); line-height: 1.6; position: relative; z-index: 0; }

/* Efeitos de Luz no Fundo (Ambient Glows) */
.ambient-glow { position: fixed; border-radius: 50%; filter: blur(120px); pointer-events: none; z-index: -1; }
.glow-blue { top: -10%; left: -5%; width: 600px; height: 600px; background: var(--color-neon-blue); opacity: 0.25; animation: drift-blue 20s infinite alternate ease-in-out; }
.glow-red { bottom: -10%; right: -5%; width: 600px; height: 600px; background: var(--color-neon-red); opacity: 0.2; animation: drift-red 25s infinite alternate ease-in-out; }
.glow-cyan { top: 40%; left: 40%; width: 400px; height: 400px; background: #00ffcc; opacity: 0.15; animation: drift-cyan 30s infinite alternate ease-in-out; }

@keyframes drift-blue { 0% { transform: translate(0, 0) scale(1); } 100% { transform: translate(250px, 150px) scale(1.2); } }
@keyframes drift-red { 0% { transform: translate(0, 0) scale(1); } 100% { transform: translate(-250px, -200px) scale(1.1); } }
@keyframes drift-cyan { 0% { transform: translate(0, 0) scale(1); } 100% { transform: translate(200px, -200px) scale(1.3); } }

/* Divisórias Animadas Neon (Tracing Lines) */
.neon-divider { width: 100%; height: 2px; background: rgba(255, 255, 255, 0.03); position: relative; overflow: hidden; margin: 40px 0; }
.neon-divider::after { content: ''; position: absolute; top: 0; left: -100%; width: 30%; height: 100%; background: linear-gradient(90deg, transparent, var(--color-neon-blue), transparent); animation: traceLine 4s ease-in-out infinite; }
@keyframes traceLine { 0% { left: -100%; } 100% { left: 200%; } }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.text-cyan { color: var(--color-neon-blue); text-shadow: 0 0 5px rgba(97, 224, 249, 0.3); }
.text-red { color: var(--color-neon-red); text-shadow: 0 0 5px rgba(231, 0, 75, 0.3); }
.section { padding: 100px 0; }
h1, h2, h3 { font-weight: 800; line-height: 1.2; color: var(--color-text-main); }
h1 { margin-bottom: 40px; }
h2 { font-size: 2.5rem; margin-bottom: 20px; }
p { color: var(--color-text-sec); }

/* Buttons - Neon Strokes on White */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 12px 28px; border-radius: 50px; font-weight: 600; text-decoration: none; transition: var(--transition); cursor: pointer; gap: 10px; font-size: 1rem; background: transparent; color: var(--color-text-main); }
.btn-primary { border: none; box-shadow: 0 0 15px rgba(231, 0, 75, 0.2); color: #FFF; position: relative; overflow: hidden; background: rgba(20, 20, 25, 0.8); z-index: 1; }
.btn-primary::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: conic-gradient(transparent, transparent, transparent, var(--color-neon-red)); animation: rotateBorderBtn 2.5s linear infinite; z-index: -2; opacity: 0.8; }
.btn-primary::after { content: ''; position: absolute; inset: 2px; background: rgba(15, 15, 20, 0.95); border-radius: 48px; z-index: -1; transition: background 0.3s ease; }
.btn-primary:hover::after { background: rgba(231, 0, 75, 0.15); }
.btn-primary:hover { box-shadow: 0 0 25px rgba(231, 0, 75, 0.5); color: #fff; transform: translateY(-2px); }

@keyframes rotateBorderBtn { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
.btn-outline { border: 2px solid var(--color-neon-blue); box-shadow: 0 0 15px rgba(97, 224, 249, 0.3); color: #FFF; }
.btn-outline:hover { background: var(--color-neon-blue); color: #fff; box-shadow: 0 0 25px rgba(97, 224, 249, 0.6); }
.btn-large { padding: 16px 36px; font-size: 1.1rem; }
.btn-block { width: 100%; }

/* Navbar - Glassmorphism & Neon Drop-shadow */
.navbar { position: fixed; top: 0; width: 100%; padding: 20px 0; z-index: 1000; transition: var(--transition); background: rgba(10, 10, 15, 0.4); backdrop-filter: blur(20px); border-bottom: 1px solid rgba(97, 224, 249, 0.1); }
.navbar.scrolled { padding: 15px 0; background: rgba(10, 10, 15, 0.85); box-shadow: 0 10px 30px -10px rgba(97, 224, 249, 0.2); border-bottom: 1px solid rgba(97, 224, 249, 0.2); }
.nav-content { display: flex; justify-content: space-between; align-items: center; }
.logo-wrapper { display: flex; align-items: center; gap: 20px; }
.header-location { color: #fff; font-size: 0.9rem; font-weight: 600; display: flex; align-items: center; gap: 8px; letter-spacing: 0.5px; border-left: 1px solid rgba(255,255,255,0.15); padding-left: 20px; }
.header-location i { color: var(--color-neon-blue); font-size: 1.1rem; filter: drop-shadow(0 0 5px rgba(97, 224, 249, 0.5)); }
.logo { position: relative; display: inline-flex; align-items: center; justify-content: center; width: 95px; height: 95px; }
.logo::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 95px; height: 95px; border-radius: 50%; border: 2px solid transparent; border-top-color: var(--color-neon-blue); border-bottom-color: var(--color-neon-red); animation: spinRing 4s linear infinite; box-shadow: 0 0 15px rgba(97, 224, 249, 0.3); }
.logo::after { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 85px; height: 85px; border-radius: 50%; border: 1px dashed rgba(255, 255, 255, 0.2); animation: spinRingReverse 10s linear infinite; }
.logo img { height: 45px; max-width: 250px; position: relative; left: 12px; z-index: 2; object-fit: contain; filter: drop-shadow(0 0 10px rgba(97, 224, 249, 0.6)); }
@keyframes spinRing { 0% { transform: translate(-50%, -50%) rotate(0deg); } 100% { transform: translate(-50%, -50%) rotate(360deg); } }
@keyframes spinRingReverse { 0% { transform: translate(-50%, -50%) rotate(360deg); } 100% { transform: translate(-50%, -50%) rotate(0deg); } }
#logo-text { font-size: 1.8rem; font-weight: 800; letter-spacing: -1px; color: var(--color-text-main); }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a:not(.btn) { position: relative; color: var(--color-text-main); text-decoration: none; font-weight: 600; transition: var(--transition); padding-bottom: 5px; }
.nav-links a:not(.btn):hover { color: var(--color-neon-blue); text-shadow: 0 0 8px rgba(97, 224, 249, 0.5); }
.nav-links a:not(.btn)::after { content: ''; position: absolute; bottom: 0; left: 50%; width: 0; height: 2px; background: var(--color-neon-blue); transition: all 0.3s ease; box-shadow: 0 0 10px var(--color-neon-blue); transform: translateX(-50%); }
.nav-links a:not(.btn):hover::after { width: 100%; }
.mobile-menu-btn { display: none; font-size: 1.5rem; cursor: pointer; color: var(--color-neon-blue); }

/* Hero - Dark Lumion Style */
.hero { min-height: 100vh; display: flex; align-items: center; position: relative; padding-top: 80px; background: transparent; overflow: hidden; }
.hero::before {
    content: ''; position: absolute; inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 30px 30px; z-index: 1; opacity: 0.6;
}
.hero-flare-1 { position: absolute; top: -100px; left: 10%; width: 800px; height: 500px; background: var(--color-neon-blue); border-radius: 50%; filter: blur(150px); z-index: 0; opacity: 0.35; pointer-events: none; }
.hero-flare-2 { position: absolute; bottom: -100px; right: -10%; width: 600px; height: 400px; background: var(--color-neon-red); border-radius: 50%; filter: blur(150px); z-index: 0; opacity: 0.25; pointer-events: none; }

.hero-content { display: flex; align-items: center; gap: 50px; position: relative; z-index: 2; }
.hero-text { flex: 1; }
.hero-text h1 { font-size: 3.5rem; margin-bottom: 20px; color: #FFFFFF; text-shadow: 0 0 20px rgba(97, 224, 249, 0.3); }
.hero-text p { font-size: 1.2rem; margin-bottom: 30px; font-weight: 300; }
.hero-buttons { display: flex; gap: 20px; position: relative; z-index: 2; }
.hero-image { flex: 1; text-align: center; }

/* Composição Dupla de Imagens no Topo */
.hero-image-composition { position: relative; width: 100%; max-width: 500px; aspect-ratio: 1; margin: 0 auto; animation: float 6s ease-in-out infinite; }
.hero-img-1 { width: 75%; height: 80%; object-fit: cover; border-radius: 24px; border: 2px solid var(--color-neon-blue); box-shadow: 0 0 30px rgba(97, 224, 249, 0.3); position: absolute; top: 0; left: 0; z-index: 2; transition: var(--transition); }
.hero-img-2 { width: 65%; height: 75%; object-fit: cover; border-radius: 24px; border: 2px solid var(--color-neon-red); box-shadow: 0 0 30px rgba(231, 0, 75, 0.2); position: absolute; bottom: 0; right: 0; z-index: 1; transition: var(--transition); }
.hero-image-composition:hover .hero-img-1 { transform: scale(1.05); }
.hero-image-composition:hover .hero-img-2 { transform: translateY(-10px) translateX(-10px); box-shadow: 0 0 40px rgba(231, 0, 75, 0.5); z-index: 3; }

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

/* Services */
.services { background-color: var(--color-bg-main); position: relative; }
.section-header { text-align: center; margin-bottom: 60px; max-width: 700px; margin-left: auto; margin-right: auto; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.service-card { background: rgba(10, 10, 10, 0.5); border: 1px solid rgba(255,255,255,0.05); border-radius: 24px; padding: 40px 30px; transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); position: relative; display: flex; flex-direction: column; backdrop-filter: blur(25px); overflow: hidden; }
.service-card > * { position: relative; z-index: 2; }
.service-card::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: conic-gradient(from 0deg, transparent 0%, transparent 75%, var(--color-neon-blue) 100%); animation: rotateBorder 4s linear infinite; z-index: 0; opacity: 0; transition: opacity 0.4s ease; pointer-events: none; }
.service-card::after { content: ''; position: absolute; inset: 2px; background: rgba(12, 13, 18, 0.9); border-radius: 22px; z-index: 1; }
.service-card:hover { transform: translateY(-8px) scale(1.02); box-shadow: 0 15px 40px rgba(0,0,0,0.5); z-index: 2; }
.service-card:hover::before { opacity: 1; }

.service-card.highlighted::before { background: conic-gradient(from 0deg, transparent 0%, transparent 75%, var(--color-neon-red) 100%); opacity: 0.3; }
.service-card.highlighted:hover::before { opacity: 1; }
@keyframes rotateBorder { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
.ribbon { position: absolute; top: 0px; right: 20px; background: var(--color-neon-red); color: #fff; padding: 5px 15px; border-radius: 0 0 10px 10px; font-size: 0.8rem; font-weight: 800; text-transform: uppercase; box-shadow: 0 5px 10px rgba(231, 0, 75, 0.3); z-index: 3; }
.service-icon { width: 60px; height: 60px; background: transparent; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 2.2rem; color: var(--color-neon-blue); text-shadow: 0 0 10px rgba(97, 224, 249, 0.4); margin-bottom: 25px; }
.service-card h3 { font-size: 1.5rem; margin-bottom: 15px; }
.service-card p { font-size: 0.95rem; margin-bottom: 25px; flex-grow: 1; }

/* Before/After Gallery */
.before-after-section { background: transparent; }
.side-by-side-gallery { display: flex; gap: 40px; max-width: 1000px; margin: 0 auto; }
.image-box { flex: 1; position: relative; border-radius: 24px; overflow: hidden; background: rgba(10, 10, 10, 0.8); border: 2px solid rgba(97, 224, 249, 0.3); box-shadow: 0 0 15px rgba(97, 224, 249, 0.1), inset 0 0 15px rgba(97, 224, 249, 0.1); aspect-ratio: 3/4; transition: all 0.4s ease; }
.before-box { border-color: rgba(231, 0, 75, 0.3); box-shadow: 0 0 15px rgba(231, 0, 75, 0.1), inset 0 0 15px rgba(231, 0, 75, 0.1); }
.image-box:hover { border-color: #61e0f9; box-shadow: 0 0 10px #61e0f9, 0 0 30px rgba(97, 224, 249, 0.5), inset 0 0 20px rgba(97, 224, 249, 0.3); transform: scale(1.02); z-index: 5; }
.before-box:hover { border-color: #e7004b; box-shadow: 0 0 10px #e7004b, 0 0 30px rgba(231, 0, 75, 0.5), inset 0 0 20px rgba(231, 0, 75, 0.3); }
.image-box img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 24px; transition: transform 0.5s ease; }
.image-label { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); background: rgba(10, 10, 10, 0.85); backdrop-filter: blur(10px); padding: 10px 25px; border-radius: 50px; font-weight: 800; font-size: 1rem; z-index: 3; border: 1px solid rgba(255,255,255,0.1); text-transform: uppercase; letter-spacing: 1px; }

/* Clients Section */
.clients { background: var(--color-bg-main); border-bottom: 1px solid rgba(0,0,0,0.05); }
.clients-relative { position: relative; overflow: hidden; padding-bottom: 40px; }
.clients-corner-mascot-right { position: absolute; right: 20px; top: 40%; transform: translateY(-50%); max-height: 80%; max-width: 380px; object-fit: contain; z-index: 1; filter: drop-shadow(0 0 30px rgba(97, 224, 249, 0.2)); pointer-events: none; }
.clients-title { margin-bottom: 40px; font-size: 3rem; color: var(--color-text-main); text-align: center; position: relative; z-index: 3; }
.clients-slider-wrapper { position: relative; max-width: 400px; margin: 0 auto; display: flex; align-items: center; z-index: 3; }
.slider-track { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; width: 100%; -ms-overflow-style: none; scrollbar-width: none; border-radius: 20px; border: 3px solid #61e0f9; box-shadow: 0 10px 30px rgba(97, 224, 249, 0.2); background: transparent; aspect-ratio: 3/4; }
.slider-track::-webkit-scrollbar { display: none; }
.client-slide { flex: 0 0 100%; width: 100%; height: 100%; scroll-snap-align: center; position: relative; }
.client-img { width: 100%; height: 100%; object-fit: cover; object-position: center 10%; display: block; }
.client-insta-tag { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); background: rgba(10, 10, 15, 0.85); backdrop-filter: blur(5px); color: #fff; padding: 8px 20px; border-radius: 50px; font-weight: 600; text-decoration: none; border: 1px solid rgba(97, 224, 249, 0.5); display: flex; align-items: center; gap: 8px; font-size: 0.95rem; box-shadow: 0 5px 15px rgba(0,0,0,0.5); transition: var(--transition); z-index: 5; }
.client-insta-tag i { color: #e1306c; font-size: 1.1rem; }
.client-insta-tag:hover { border-color: var(--color-neon-blue); color: var(--color-neon-blue); background: rgba(10, 10, 15, 0.95); transform: translateX(-50%) translateY(-3px); }
.slider-btn { background: rgba(10, 10, 15, 0.8); border: 2px solid var(--color-neon-blue); color: #fff; width: 50px; height: 50px; border-radius: 50%; font-size: 1.5rem; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: var(--transition); position: absolute; top: 50%; transform: translateY(-50%); z-index: 10; box-shadow: 0 0 15px rgba(97, 224, 249, 0.3); }
.slider-btn:hover { background: var(--color-neon-blue); color: #000; box-shadow: 0 0 25px rgba(97, 224, 249, 0.6); }
.prev-btn { left: -70px; }
.next-btn { right: -70px; }

/* Contact Section */
.contact { background: var(--color-bg-main); }
.contact-container { display: flex; gap: 60px; align-items: center; }
.contact-info { flex: 1; }
.contact-info h2 { margin-bottom: 30px; }
.contact-info p { margin-bottom: 30px; }
.mascot-img { max-width: 180px; border-radius: 50%; border: 3px solid var(--color-neon-blue); box-shadow: 0 5px 20px rgba(97, 224, 249, 0.2); margin: 20px 0; }
.contact-methods { display: flex; flex-direction: column; gap: 20px; }
.method { display: flex; align-items: center; gap: 15px; font-size: 1.2rem; font-weight: 600; color: var(--color-text-main); }
.method i { color: var(--color-neon-blue); font-size: 1.5rem; text-shadow: 0 0 5px rgba(97, 224, 249, 0.3); width: 40px; text-align: center; display: inline-block; }
.contact-form-wrapper { flex: 1; background: rgba(10, 10, 10, 0.8); padding: 40px; border-radius: 24px; border: 2px solid rgba(97, 224, 249, 0.4); box-shadow: 0 0 10px rgba(97, 224, 249, 0.2), 0 0 30px rgba(97, 224, 249, 0.1), inset 0 0 20px rgba(97, 224, 249, 0.1); backdrop-filter: blur(10px); position: relative; }
.form-group { margin-bottom: 20px; position: relative; z-index: 2; }
.form-group label { display: block; margin-bottom: 8px; font-size: 0.9rem; font-weight: 600; color: var(--color-text-sec); }
.form-group input, .form-group select { width: 100%; padding: 15px; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(97, 224, 249, 0.2); border-radius: 12px; color: var(--color-text-main); font-family: var(--font-main); font-size: 1rem; transition: var(--transition); }
.form-group input:focus, .form-group select:focus { outline: none; border-color: var(--color-neon-blue); box-shadow: 0 0 15px rgba(97, 224, 249, 0.3); background: rgba(255, 255, 255, 0.1); }
.form-group select option { background: var(--color-bg-sec); color: var(--color-text-main); }
.form-success-msg { margin-top: 20px; padding: 15px; background: rgba(46, 213, 115, 0.1); border: 1px solid #2ed573; color: #2e9e5b; border-radius: 12px; text-align: center; }

/* Neon Footer */
.footer-neon { position: relative; background: var(--color-bg-main); overflow: hidden; padding-top: 80px; padding-bottom: 20px; border-top: 1px solid rgba(255, 255, 255, 0.05); }
.footer-glow { position: absolute; bottom: -200px; left: 50%; transform: translateX(-50%); width: 800px; height: 400px; background: radial-gradient(ellipse at bottom, rgba(97, 224, 249, 0.15) 0%, transparent 70%); filter: blur(50px); pointer-events: none; z-index: 1; }
.footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-bottom: 50px; position: relative; z-index: 2; }
.footer-card { background: rgba(10, 10, 10, 0.8); border: 2px solid rgba(97, 224, 249, 0.3); border-radius: 24px; padding: 40px 30px; box-shadow: 0 0 15px rgba(97, 224, 249, 0.1), inset 0 0 15px rgba(97, 224, 249, 0.1); backdrop-filter: blur(10px); transition: all 0.4s ease; display: flex; flex-direction: column; }
.footer-card:hover { border-color: #61e0f9; box-shadow: 0 0 10px #61e0f9, 0 0 20px rgba(97, 224, 249, 0.5), inset 0 0 20px rgba(97, 224, 249, 0.3); transform: translateY(-5px); z-index: 3; }
.footer-logo { height: 60px; object-fit: contain; margin-bottom: 20px; filter: drop-shadow(0 0 10px rgba(97, 224, 249, 0.5)); }
.footer-card h3 { font-size: 1.4rem; margin-bottom: 20px; color: #FFF; }
.footer-card p { color: var(--color-text-sec); font-size: 0.95rem; line-height: 1.6; margin-bottom: 20px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 15px; display: flex; align-items: center; gap: 10px; color: var(--color-text-sec); font-weight: 500; transition: color 0.3s ease; cursor: pointer; }
.footer-links li:hover { color: #FFF; }
.footer-links i { color: var(--color-neon-blue); font-size: 1.2rem; text-shadow: 0 0 5px rgba(97, 224, 249, 0.5); width: 25px; text-align: center; }
.insta-card { border-color: rgba(231, 0, 75, 0.3); box-shadow: 0 0 15px rgba(231, 0, 75, 0.1), inset 0 0 15px rgba(231, 0, 75, 0.1); align-items: center; text-align: center; justify-content: center; }
.insta-card:hover { border-color: #e7004b; box-shadow: 0 0 10px #e7004b, 0 0 20px rgba(231, 0, 75, 0.5), inset 0 0 20px rgba(231, 0, 75, 0.3); }
.insta-btn { display: inline-flex; align-items: center; justify-content: center; gap: 15px; background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); color: #FFF; padding: 15px 30px; border-radius: 50px; font-weight: 700; text-decoration: none; font-size: 1.1rem; box-shadow: 0 10px 20px rgba(220, 39, 67, 0.4); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.insta-btn:hover { transform: scale(1.05); box-shadow: 0 15px 30px rgba(220, 39, 67, 0.6); color: #FFF; }
.insta-btn i { font-size: 1.5rem; }
.footer-bottom { text-align: center; border-top: 1px solid rgba(255, 255, 255, 0.05); padding-top: 20px; color: var(--color-text-sec); font-size: 0.9rem; position: relative; z-index: 2; margin-top: 20px; }

/* Responsive Design */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    /* Navbar Mobile */
    .navbar { padding: 10px 0; background: rgba(10, 10, 15, 0.95); border-bottom: 1px solid rgba(97, 224, 249, 0.2); } /* Fundo mais forte no celular */
    .navbar.scrolled { padding: 8px 0; }
    .mobile-menu-btn { display: block; z-index: 1002; position: relative; }
    .nav-links { position: fixed; top: 0; right: -100%; width: 70%; height: 100vh; background: rgba(10, 10, 15, 0.95); backdrop-filter: blur(20px); flex-direction: column; justify-content: center; align-items: center; transition: right 0.4s ease; z-index: 1001; box-shadow: -10px 0 30px rgba(0,0,0,0.5); }
    .nav-links.active { right: 0; }
    .logo { width: 55px; height: 55px; }
    .logo img { height: 28px; }
    .logo-wrapper { gap: 10px; }
    .header-location { font-size: 0.7rem; padding-left: 10px; gap: 5px; max-width: 120px; line-height: 1.2; }
    .header-location i { font-size: 0.8rem; }
    .logo::before { width: 55px; height: 55px; }
    .logo::after { width: 45px; height: 45px; }
    .nav-content { justify-content: space-between; align-items: center; flex-wrap: nowrap; width: 100%; }
    .navbar .btn-outline { padding: 6px 12px; font-size: 0.85rem; }

    /* Hero Mobile */
    .hero { min-height: auto; padding-top: 85px; padding-bottom: 40px; } /* Ajuste de topo para navbar fixa */
    .hero-content { flex-direction: column; text-align: center; overflow: hidden; width: 100%; }
    .hero-text h1 { font-size: 1.8rem; line-height: 1.3; margin-top: 0; } /* Letras menores para não quebrar a tela */
    .hero-buttons { flex-direction: column; width: 100%; gap: 15px; }
    .hero-buttons .btn { width: 100%; }
    .hero-image-composition { width: 260px; height: 260px; max-width: 100%; margin: 40px auto 0; } /* Menor para caber em todo celular */

    /* General Adjustments */
    .section { padding: 50px 0; } /* Reduz espaços em branco gigantes no celular */
    .neon-divider { margin: 20px 0; }
    .services-grid { grid-template-columns: 1fr; }
    .contact-container { flex-direction: column; }
    .side-by-side-gallery { flex-direction: column; }
    .footer-grid { grid-template-columns: 1fr; }
    .clients-corner-mascot-right { max-width: 200px; right: -40px; opacity: 0.3; }
    .clients-title { font-size: 2.2rem; margin-bottom: 30px; }
    .client-img { max-height: 350px; }
    .prev-btn { left: -15px; }
    .next-btn { right: -15px; }
    .slider-btn { width: 40px; height: 40px; font-size: 1.2rem; }
}
