/* =========================================================================
   RENOVA MULTISERVICES - ULTRA PREMIUM & RESPONSIVE
   ========================================================================= */

/* --- CSS VARIABLES --- */
:root {
    /* Colors Palette */
    --blue-dark: #00224a;
    --blue-medium: #0056b3; 
    --blue-light: #0088ff;
    --blue-glow: rgba(0, 136, 255, 0.4);
    --white-ice: #f8fafc;
    --gray-deep: #0f172a;

    /* Neutrals */
    --white: #ffffff;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-500: #64748b;
    --gray-800: #1e293b;
    --gray-900: #0f172a;

    /* Typography */
    --font-main: 'Outfit', sans-serif;
    
    /* Box Shadows (Fast Render) */
    --shadow-glow: 0 0 15px rgba(0, 136, 255, 0.2);
    --shadow-intense: 0 10px 30px -5px rgba(0, 34, 74, 0.15);
    --shadow-card: 0 4px 15px rgba(0, 0, 0, 0.05);
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 40px;
}

/* --- RESET & ANIMATION ENGINE --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--white-ice);
    overflow-x: hidden;
}

body {
    font-family: var(--font-main);
    color: var(--gray-deep);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    position: relative;
    width: 100vw;
}

     /* Background Dynamic Glows Removed */

/* AOS Setup (Animate On Scroll) */
.aos { opacity: 0; transition: all var(--transition-slow); will-change: transform, opacity; }
.fade-up { transform: translateY(40px); }
.fade-right { transform: translateX(-40px); }
.fade-left { transform: translateX(40px); }
.zoom-in { transform: scale(0.9); }

.aos.is-visible { opacity: 1; transform: translate(0) scale(1); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* Text Gradient & Glows */
.text-gradient {
    background: linear-gradient(135deg, var(--blue-medium), var(--blue-light));
    -webkit-background-clip: text; background-clip: text; color: transparent;
    display: inline;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
}

.glow-text { text-shadow: 0 0 15px rgba(255, 255, 255, 0.4); }
.text-glow { text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5); }

/* Layout */
.container {
    max-width: 1280px; width: 100%;
    margin: 0 auto; padding: 0 1.5rem;
    position: relative; z-index: 2;
}
.container-narrow { max-width: 900px; }
section { padding: 6rem 0; position: relative; }
.relative-section { position: relative; overflow: hidden; }

/* --- BUTTONS ULTRA MODERN --- */
a { text-decoration: none; color: inherit; transition: var(--transition-base); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

.btn {
    display: inline-flex; align-items: center; justify-content: center;
    font-weight: 700; border-radius: 100px; cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); gap: 0.5rem;
    position: relative; overflow: hidden; z-index: 1; text-align: center;
}
.btn::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: translateX(-100%); transition: 0.5s; z-index: -1;
}
.btn:hover::before { transform: translateX(100%); }

.btn-sm { padding: 0.6rem 1.5rem; font-size: 0.9rem; }
.btn { padding: 0.8rem 1.8rem; font-size: 1rem; }
.btn-lg { padding: 1.1rem 2.2rem; font-size: 1.1rem; }
.btn-xl { padding: 1.4rem 2.8rem; font-size: 1.2rem; }

.btn-primary {
    background: linear-gradient(135deg, var(--blue-medium), var(--blue-light)); color: var(--white) !important;
    border: none; box-shadow: 0 4px 15px rgba(0, 136, 255, 0.3);
}
.btn-primary:hover { box-shadow: 0 8px 25px rgba(0, 136, 255, 0.5); transform: translateY(-3px) scale(1.02); }

.btn-outline { background-color: transparent; color: var(--blue-medium) !important; border: 2px solid var(--blue-medium); }
.btn-outline:hover { background-color: var(--blue-medium); color: var(--white) !important; box-shadow: 0 4px 15px rgba(0, 136, 255, 0.2); }

.btn-outline-light { background-color: transparent; color: var(--white) !important; border: 2px solid rgba(255,255,255,0.6); }
.btn-outline-light:hover { background-color: var(--white); color: var(--blue-dark) !important; box-shadow: 0 4px 15px rgba(255, 255, 255, 0.4); }

.glassy-btn { background: rgba(255,255,255,0.1); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.2); color: var(--white); }
.glassy-btn:hover { background: rgba(255,255,255,0.25); border-color: rgba(255,255,255,0.6); }

/* SECTION HEADERS */
.text-center { text-align: center; }
h1, h2, h3, h4 { color: var(--gray-deep); line-height: 1.2; font-weight: 800; text-wrap: balance; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); letter-spacing: -0.02em; }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }
p { font-size: clamp(1rem, 1.5vw, 1.15rem); color: var(--gray-500); }
.light-text h2, .light-text p { color: var(--white); }

.section-header { margin-bottom: 4rem; }
.section-tag {
    display: inline-block; padding: 0.4rem 1.2rem; background: rgba(0, 136, 255, 0.1);
    color: var(--blue-medium); font-size: 0.85rem; font-weight: 800; border-radius: 100px;
    margin-bottom: 1.2rem; text-transform: uppercase; letter-spacing: 0.08em; border: 1px solid rgba(0, 136, 255, 0.2);
}
.section-tag.light { background: rgba(255,255,255,0.1); color: var(--white); border-color: rgba(255,255,255,0.2); }
.section-title { margin-bottom: 1.2rem; }
.section-subtitle { max-width: 700px; margin: 0 auto; color: var(--gray-800); font-weight: 500;}
.light-text .section-subtitle { color: rgba(255,255,255,0.85); font-weight: 400;}

/* NAVBAR */
.header { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; padding: 1.2rem 0; transition: var(--transition-base); background: transparent; }
.header.scrolled {
    padding: 0.8rem 0; background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0,0,0,0.05); box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
.navbar { display: flex; align-items: center; justify-content: space-between; }
.logo-img { height: 42px; width: auto; transition: transform 0.3s; }
.logo:hover .logo-img { transform: scale(1.05); filter: drop-shadow(0 0 8px rgba(0,136,255,0.4)); }

.nav-links { display: flex; gap: 2rem; }
.nav-links a { font-weight: 600; font-size: 0.95rem; color: var(--gray-800); position: relative; }
.nav-links a::after {
    content: ''; position: absolute; width: 0; height: 2px; bottom: -4px; left: 0;
    background: var(--blue-medium); transition: var(--transition-base);
}
.nav-links a:hover { color: var(--blue-medium); }
.nav-links a:hover::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 1rem; }

.mobile-menu-btn { display: none; background: none; border: none; font-size: 2rem; color: var(--blue-dark); cursor: pointer; }
.mobile-nav {
    position: fixed; inset: 0; background: rgba(255,255,255,0.98); backdrop-filter: blur(20px);
    z-index: 999; display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none; transition: var(--transition-base); transform: translateY(-20px);
}
.mobile-nav.active { opacity: 1; pointer-events: auto; transform: translateY(0); }
.mobile-nav-content { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; text-align: center;}
.mobile-link { font-size: 1.8rem; font-weight: 800; color: var(--gray-deep); }

/* HERO */
.hero { min-height: 100vh; display: flex; align-items: center; padding-top: 8rem; padding-bottom: 4rem; position: relative; }
#particles-js { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.hero-container { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 3rem; align-items: center; z-index: 2; }
.glassy-badge { background: rgba(255,255,255,0.9); backdrop-filter: blur(10px); color: var(--blue-dark); border-radius: 100px; padding: 0.5rem 1.2rem; font-weight: 700;}
.hero-badges { display: flex; gap: 0.8rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.hero-subtitle { font-size: clamp(1.1rem, 1.5vw, 1.3rem); margin-bottom: 2rem; max-width: 90%; color: var(--gray-800); font-weight: 400;}
.hero-buttons { display: flex; gap: 1rem; margin-bottom: 2.5rem; flex-wrap: wrap; }

.avatars { display: flex; margin-right: 1rem; }
.avatar-img { width: 45px; height: 45px; border-radius: 50%; border: 3px solid var(--white); margin-left: -15px; box-shadow: var(--shadow-card); object-fit: cover;}
.avatar-img:first-child { margin-left: 0; }
.hero-trust { display: flex; align-items: center; flex-wrap: wrap; gap: 1rem; padding-top: 1.5rem; border-top: 1px solid rgba(0,0,0,0.1); }
.trust-text { color: var(--gray-800); font-size: 1rem; }
.trust-text strong { color: var(--blue-dark); font-weight: 800; }

.hero-visual { position: relative; perspective: 1000px; width: 100%; }
.hero-image-wrapper {
    position: relative; border-radius: var(--radius-xl); overflow: hidden;
    box-shadow: var(--shadow-intense); transform-style: preserve-3d;
    aspect-ratio: 4/5; width: 100%; display: flex;
}
.hero-img-actual { width: 100%; height: 100%; object-fit: cover; object-position: center left;}
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top right, rgba(0,34,74,0.3), transparent); }
.glass-card {
    position: absolute; bottom: 2rem; left: -2rem;
    background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    padding: 1.2rem 1.5rem; border-radius: var(--radius-lg); display: flex; align-items: center; gap: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1); border: 1px solid rgba(255,255,255,0.8);
    transform: translateZ(20px);
}
.icon-box {
    width: 45px; height: 45px; background: var(--blue-light); color: var(--white);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; box-shadow: 0 0 20px var(--blue-glow); flex-shrink: 0;
}
.glass-card strong { color: var(--blue-dark); display: block; line-height: 1.2; font-weight: 800;}
.glass-card span { font-size: 0.85rem; color: var(--gray-500); }

.float-anim { animation: float 6s ease-in-out infinite; }
.float-anim-reverse { animation: float-reverse 7s ease-in-out infinite; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes float-reverse { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(12px); } }

.hero-waves { position: absolute; bottom: -1px; left: 0; width: 100%; z-index: 10; line-height: 0; }
.hero-waves svg path { fill: var(--white); }

/* SOBRE */
.about { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: center; }
.about-visual { position: relative; }
.about-image-wrapper { position: relative; aspect-ratio: 1; }
.image-mask { position: absolute; inset: 0; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-card); }
.about-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s; }
.about-image-wrapper:hover .about-img { transform: scale(1.05); }
.experience-badge {
    position: absolute; bottom: -10px; right: -10px;
    background: var(--blue-dark); color: var(--white); border-radius: 50%;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    border: 6px solid var(--white); width: 150px; height: 150px; box-shadow: var(--shadow-intense);
}
.experience-badge .number { font-size: 2.8rem; font-weight: 900; color: var(--blue-light); line-height: 1;}
.experience-badge .text { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; text-align: center; margin-top: 0.3rem;}
.stat-item { display: flex; align-items:flex-start; gap: 1rem; margin-top: 1.5rem; }
.stat-icon { font-size: 2rem; color: var(--blue-light); margin-top: 0.2rem;}
.stat-title { margin-bottom: 0.2rem; }

/* SERVICES */
.services { background: var(--white-ice); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.modern-card {
    background: var(--white); padding: 2.5rem 1.8rem; border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200); position: relative; overflow: hidden;
    transition: all 0.4s; z-index: 1; transform-style: preserve-3d;
}
.card-glow-bg {
    position: absolute; inset: 0; background: radial-gradient(circle at top right, rgba(0, 136, 255, 0.05), transparent 80%);
    z-index: -1; opacity: 0; transition: 0.4s;
}
.modern-card:hover { border-color: transparent; box-shadow: var(--shadow-intense); transform: translateY(-8px); }
.modern-card:hover .card-glow-bg { opacity: 1; }
.service-icon {
    width: 65px; height: 65px; background: var(--gray-100); color: var(--blue-dark);
    border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center;
    font-size: 2rem; margin-bottom: 1.5rem; transition: 0.4s; transform: translateZ(30px);
}
.modern-card:hover .service-icon { background: var(--blue-medium); color: var(--white); box-shadow: var(--shadow-glow); }
.service-title { margin-bottom: 0.8rem; transform: translateZ(20px); font-size: 1.3rem;}
.service-desc { margin-bottom: 1.5rem; font-size: 1rem; color: var(--gray-500); transform: translateZ(10px); }
.service-link { display: inline-flex; align-items: center; gap: 0.5rem; font-weight: 700; color: var(--blue-medium); font-size: 0.95rem; text-decoration: none; transition: 0.3s; }
.modern-card:hover .service-link { color: var(--blue-light); }
.service-link i { transition: 0.3s; }
.modern-card:hover .service-link i { transform: translateX(5px); }

/* VIDEOS - ULTRA MODERN DARK */
.videos-section { background: var(--gray-900); color: var(--white); padding-bottom: 6rem;}
.abstract-shape { display: none; } /* Removed to fix scroll lag */
.relative-z { position: relative; z-index: 2; }

.videos-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-bottom: 3rem; }
.glass-vcard {
    background: rgba(255, 255, 255, 0.05); backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-md);
    overflow: hidden; cursor: pointer; transition: 0.4s; display: flex; flex-direction: column;
}
/* Diferenciais e Cards Removed Heavy Shadows */
.video-thumbnail { position: relative; aspect-ratio: 16/9; overflow: hidden; background: #000; width: 100%; display: flex; }
.th-video { width: 100%; height: 100%; object-fit: cover; opacity: 0.7; transition: 0.5s; }
.glass-vcard:hover .th-video { opacity: 1; transform: scale(1.05); }
.play-button {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 60px; height: 60px; background: rgba(255,255,255,0.15);
    backdrop-filter: blur(5px); border: 1px solid rgba(255,255,255,0.5);
    color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 2rem; z-index: 2; transition: 0.4s;
}
.glass-vcard:hover .play-button { background: var(--blue-light); border-color: transparent; box-shadow: 0 0 20px var(--blue-light); transform: translate(-50%, -50%) scale(1.1); }
.video-info { padding: 1.2rem 1.5rem; flex-grow: 1; display: flex; flex-direction: column;}
.video-title { color: var(--white); margin-bottom: 0.3rem; font-size: 1.15rem; }
.video-desc { color: var(--gray-300); margin: 0; font-size: 0.9rem;}

/* Modal */
.video-modal { position: fixed; inset: 0; z-index: 2000; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: 0.4s; padding: 1rem;}
.video-modal.active { opacity: 1; pointer-events: auto; }
.blur-backdrop { position: absolute; inset: 0; background: rgba(0, 5, 15, 0.95); backdrop-filter: blur(10px); }
.scale-modal-anim { position: relative; width: 100%; max-width: 900px; z-index: 2001; transform: scale(0.9); transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.video-modal.active .scale-modal-anim { transform: scale(1); }
.neon-shadow { box-shadow: 0 10px 50px rgba(0, 136, 255, 0.2); }
.close-modal { position: absolute; top: -3rem; right: 0; background: none; border: none; font-size: 2.2rem; color: var(--white); cursor: pointer; transition: 0.3s; z-index: 2002;}
.close-modal:hover { color: var(--blue-light); transform: rotate(90deg); }
.video-container { aspect-ratio: 16/9; background: #000; border-radius: var(--radius-md); border: 1px solid rgba(255,255,255,0.1); width: 100%; overflow: hidden; }

/* DIFFERENTIALS */
.differentials { background: var(--white); }
.diff-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 3rem; }
.diff-card { text-align: center; display: flex; flex-direction: column; align-items: center; padding: 1.5rem; }
.diff-icon { width: 80px; height: 80px; background: var(--white-ice); border-radius: 50%; font-size: 2.5rem; color: var(--blue-medium); display: flex; align-items: center; justify-content: center; margin-bottom: 1.2rem; box-shadow: var(--shadow-card); transition: 0.4s; border: 1px solid var(--gray-200); }
.diff-card:hover .diff-icon { box-shadow: var(--shadow-glow); background: var(--white); border-color: var(--blue-light); transform: translateY(-5px); color: var(--blue-light);}

/* RESULTS (ANTES X DEPOIS) */
.results { background: var(--white-ice); }
.results-layout { display: flex; justify-content: center; width: 100%; }
.large-ba { 
    display: flex; flex-direction: row; align-items: stretch; width: 100%; 
    border-radius: var(--radius-md); overflow: hidden; margin-bottom: 2rem;
    box-shadow: var(--shadow-intense);
}
.result-img { flex: 1; position: relative; overflow: hidden; aspect-ratio: 3/4; display: flex;}
.result-img img { width: 100%; height: 100%; object-fit: cover; }
.glass-label {
    position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
    background: rgba(0,0,0,0.65); backdrop-filter: blur(8px); color: var(--white);
    padding: 0.6rem 1.2rem; border-radius: 100px; font-weight: 700; font-size: 0.8rem;
    text-transform: uppercase; white-space: nowrap; border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3); text-align: center;
}
.glass-label.accent { background: var(--blue-medium); }
.result-card.glass-card { 
    width: 100%; max-width: 900px; background: var(--white); 
    padding: 2rem; border-radius: var(--radius-xl); box-shadow: var(--shadow-card);
    border: 1px solid var(--gray-200); position: static; /* override hero glass-card style */
    backdrop-filter: none; -webkit-backdrop-filter: none; transform: none;
}

/* CLIENTS */
.clients { padding: 3rem 0; overflow: hidden; border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200); background: var(--white); }
.clients-subtitle { font-size: 0.8rem; font-weight: 800; letter-spacing: 0.15em; color: var(--gray-500); margin-bottom: 2.5rem; }
.marquee-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.flex-marquee { display: flex; gap: 4rem; align-items: center; width: max-content; padding: 0 1rem; animation: marquee 20s linear infinite; }
.client-logo h3 { font-size: 1.6rem; font-weight: 900; color: var(--gray-300); transition: 0.4s; text-transform: uppercase; margin: 0; }
.client-logo:hover h3 { color: var(--blue-dark); text-shadow: 0 0 15px rgba(0, 54, 116, 0.15); }

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 2rem)); }
}

/* TIMELINE */
.how-it-works { background: var(--white-ice); }
.timeline { position: relative; padding-left: 2.5rem; margin-top: 3rem; }
.timeline::before { content: ''; position: absolute; top: 0; left: 18px; width: 4px; height: 100%; background: linear-gradient(to bottom, var(--blue-light), var(--blue-dark)); border-radius: 10px; }
.timeline-item { position: relative; margin-bottom: 2.5rem; }
.timeline-icon { position: absolute; left: 0; transform: translateX(-50%); width: 40px; height: 40px; background: var(--white); color: var(--blue-dark); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; font-weight: 800; z-index: 2; border: 4px solid var(--blue-medium); box-shadow: 0 0 10px rgba(0,0,0,0.1); }
.timeline-content { transition: 0.4s; background: var(--white); padding: 1.8rem; border-radius: var(--radius-md); box-shadow: var(--shadow-card); border: 1px solid var(--gray-200); }
.timeline-content:hover { transform: translateX(8px); border-color: var(--blue-light); box-shadow: var(--shadow-intense); }
.timeline-content h4 { margin-bottom: 0.5rem; color: var(--blue-dark); font-size: 1.2rem;}

/* FAQ */
.faq { background: var(--white-ice); padding-bottom: 4rem; }
.accordion { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 3rem; max-width: 900px; margin-left: auto; margin-right: auto;}
.accordion-item { border-radius: var(--radius-md); border: 1px solid var(--gray-200); overflow: hidden; transition: 0.3s; background: var(--white); box-shadow: var(--shadow-card);}
.accordion-item:hover { border-color: var(--blue-light); box-shadow: var(--shadow-intense); }
.accordion-header { width: 100%; text-align: left; padding: 1.5rem 2rem; background: transparent; border: none; font-size: 1.15rem; font-weight: 700; color: var(--blue-dark); cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-family: inherit; }
.accordion-header i { font-size: 1.3rem; color: var(--blue-medium); transition: 0.4s; flex-shrink: 0; margin-left: 1.5rem;}
.accordion-item.active .accordion-header i { transform: rotate(180deg); color: var(--blue-light); }
.accordion-content { max-height: 0; overflow: hidden; transition: max-height 0.4s ease-out, opacity 0.4s ease-out; opacity: 0; }
.accordion-item.active .accordion-content { max-height: 1000px; opacity: 1; }
.accordion-content p { padding: 0 2rem 2rem 2rem; margin: 0; color: var(--gray-500); font-size: 1.05rem; line-height: 1.7;}

/* CTA FINAL */
.final-cta { padding: 8rem 0; background: var(--gray-900); color: var(--white); position: relative;}
.parallax-bg { background-image: url('midia/limpeza\ vidro.jpg'); background-attachment: fixed; background-size: cover; background-position: center; }
.parallax-bg::before { content: ''; position: absolute; inset: 0; background: rgba(0, 15, 30, 0.9); backdrop-filter: blur(4px); z-index: 1;}
.final-cta .container { position: relative; z-index: 2; max-width: 800px;}
.hover-pop { transition: 0.4s; }
.hover-pop:hover { transform: scale(1.05); box-shadow: 0 0 30px var(--blue-glow); }
.cta-title { font-size: clamp(2rem, 4vw, 3.5rem); color: var(--white); margin-bottom: 1rem; }
.cta-subtitle { color: rgba(255,255,255,0.8); margin-bottom: 2.5rem; font-size: clamp(1.1rem, 1.5vw, 1.3rem); font-weight: 400;}

/* FOOTER */
.footer { background: var(--gray-900); color: var(--gray-300); padding: 5rem 0 2rem; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-desc { margin: 1.2rem 0 1.8rem; max-width: 400px; font-size: 0.95rem; line-height: 1.6;}
.social-links { display: flex; gap: 1rem; }
.glassy-icon { width: 40px; height: 40px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; transition: 0.3s; color: var(--white);}
.glassy-icon:hover { background: var(--blue-medium); border-color: transparent; transform: translateY(-3px); box-shadow: 0 5px 15px rgba(0, 136, 255, 0.4); }
.footer-links h4, .footer-contact h4 { color: var(--white); font-size: 1.2rem; font-weight: 800; margin-bottom: 1.5rem; }
.footer-links ul { display: flex; flex-direction: column; gap: 0.8rem; }
.hover-glow-text { transition: 0.3s; font-size: 0.95rem;}
.hover-glow-text:hover { color: var(--white); text-shadow: 0 0 8px rgba(255,255,255,0.4); padding-left: 4px; }
.footer-contact ul { display: flex; flex-direction: column; gap: 1rem;}
.footer-contact li { display: flex; align-items: flex-start; gap: 0.8rem; font-size: 0.95rem;}
.glow-icon { color: var(--blue-light); font-size: 1.4rem; margin-top: 0.1rem; flex-shrink: 0;}
.footer-bottom { padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: space-between; font-size: 0.85rem; color: var(--gray-500);}

/* MEDIA QUERIES - RESPONSIVE MAGIC */
@media (max-width: 1024px) {
    .container { padding: 0 2rem; }
    .hero-container { grid-template-columns: 1fr; text-align: center; gap: 2rem;}
    .hero-visual { grid-row: 1; max-width: 600px; margin: 0 auto; aspect-ratio: 16/9;}
    .hero-image-wrapper { aspect-ratio: 16/9; }
    .hero-badges { justify-content: center; }
    .hero-buttons { justify-content: center; }
    .hero-trust { justify-content: center; margin-top: 1rem;}
    .glass-card { bottom: 1rem; left: 1rem; right: 1rem; transform: none !important; padding: 1rem; justify-content: center;}
    
    .about-grid { grid-template-columns: 1fr; gap: 3rem; text-align: center;}
    .about-image-wrapper { max-width: 600px; margin: 0 auto; aspect-ratio: 16/9;}
    .experience-badge { bottom: -20px; right: 50%; transform: translateX(50%); width: 120px; height: 120px; padding: 1rem;}
    .experience-badge .number { font-size: 2rem; }
    .experience-badge .text { font-size: 0.65rem; }
    .about-stats { justify-content: center; text-align: left; flex-wrap: wrap;}
    
    .footer-grid { grid-template-columns: 1fr 1fr; }
    
    .timeline::before { left: 20px; }
    .timeline { padding-left: 3.5rem; }
    .timeline-icon { width: 32px; height: 32px; left: 20px; transform: translateX(-50%); }
    
    .large-ba { flex-direction: column; }
    .result-img { aspect-ratio: 16/9; }
}

@media (max-width: 768px) {
    section { padding: 4rem 0; }
    .final-cta { padding: 6rem 0; }
    .hero { padding-top: 6rem; padding-bottom: 3rem; }
    
    .nav-links, .nav-actions .btn { display: none; }
    .mobile-menu-btn { display: block; }
    
    .diff-grid { gap: 2rem; }
    
    .flex-marquee { gap: 2rem; animation-duration: 25s; }
    .client-logo h3 { font-size: 1.2rem; }
    @keyframes marquee {
        0% { transform: translateX(0); }
        100% { transform: translateX(calc(-50% - 1rem)); }
    }
    
    .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; text-align: center;}
    .footer-desc { margin: 1rem auto; }
    .social-links { justify-content: center; }
    .footer-contact li { justify-content: center; flex-direction: column; align-items: center; gap: 0.2rem;}
    .glow-icon { margin-top: 0;}
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
    
    .glass-label { font-size: 0.7rem; padding: 0.5rem 1rem; bottom: 1rem; white-space: normal; line-height: 1.2; width: 90%;}
}

@media (max-width: 480px) {
    .container { padding: 0 1.2rem; }
    .hero-buttons { flex-direction: column; width: 100%; }
    .hero-buttons .btn { width: 100%; justify-content: center; }
    
    .glass-card { display: none; } /* Too cluttered on very small screens */
    
    .section-header { margin-bottom: 2.5rem; }
    
    .timeline::before { left: 16px; }
    .timeline { padding-left: 3rem; }
    .timeline-icon { width: 32px; height: 32px; left: 16px; transform: translateX(-50%); font-size: 1rem; border-width: 3px;}
    .timeline-content { padding: 1.5rem 1.2rem; }
    
    .about-stats { flex-direction: column; gap: 1rem;}
    
    .experience-badge { width: 100px; height: 100px; border-width: 4px;}
    .experience-badge .number { font-size: 1.8rem; }
    
    .video-info { padding: 1rem; }
    .video-title { font-size: 1.05rem; }
    
    .accordion-header { padding: 1.2rem; font-size: 1rem; }
    .accordion-content p { padding: 0 1.2rem 1.2rem 1.2rem; font-size: 0.95rem; }
}
