/* ==========================================
   FACILITY SERVE - LANDING PAGE STYLES
   ========================================== */
:root {
  --blue: #1565C0; --blue-light: #1E88E5; --blue-dark: #0D47A1;
  --orange: #F4A020; --orange-light: #FFB74D; --orange-dark: #E65100;
  --green: #43A047; --green-light: #66BB6A; --red: #E53935;
  --navy: #1A237E; --darkblue: #01579B; --crimson: #C62828;
  --white: #ffffff; --off-white: #F8FAFC;
  --gray-50: #F9FAFB; --gray-100: #F3F4F6; --gray-200: #E5E7EB;
  --gray-300: #D1D5DB; --gray-400: #9CA3AF; --gray-500: #6B7280;
  --gray-600: #4B5563; --gray-700: #374151; --gray-800: #1F2937; --gray-900: #111827;
  --gradient-hero: linear-gradient(135deg, #0D47A1 0%, #1565C0 40%, #1E3A5F 100%);
  --gradient-text: linear-gradient(135deg, #F4A020 0%, #FFB74D 50%, #FFA000 100%);
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow: 0 4px 6px rgba(0,0,0,0.07), 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 10px 15px rgba(0,0,0,0.1), 0 4px 6px rgba(0,0,0,0.05);
  --shadow-lg: 0 20px 25px rgba(0,0,0,0.1), 0 10px 10px rgba(0,0,0,0.04);
  --shadow-xl: 0 25px 50px rgba(0,0,0,0.15);
  --radius-sm: 8px; --radius: 12px; --radius-lg: 16px; --radius-xl: 24px; --radius-full: 9999px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s ease;
  --navbar-height: 76px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Outfit', 'Inter', system-ui, sans-serif; background: var(--white); color: var(--gray-800); line-height: 1.6; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px; border-radius: var(--radius-full); font-weight: 600; font-size: 15px; transition: var(--transition); cursor: pointer; white-space: nowrap; }
.btn-primary { background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%); color: white; box-shadow: 0 4px 15px rgba(244,160,32,0.4); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(244,160,32,0.5); }
.btn-outline { background: transparent; color: white; border: 2px solid rgba(255,255,255,0.6); }
.btn-outline:hover { background: rgba(255,255,255,0.15); border-color: white; }
.btn-white { background: white; color: var(--blue-dark); box-shadow: var(--shadow-md); }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-xl); }
.btn-outline-white { background: transparent; color: white; border: 2px solid rgba(255,255,255,0.7); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: white; }
.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-xl { padding: 18px 40px; font-size: 17px; }
.gradient-text { background: var(--gradient-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* NAVBAR */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; height: var(--navbar-height); background: transparent; transition: var(--transition); }
.navbar.scrolled { background: rgba(13,71,161,0.97); backdrop-filter: blur(20px); box-shadow: 0 4px 30px rgba(0,0,0,0.2); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: var(--navbar-height); }
.nav-logo img { height: 52px; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link { color: rgba(255,255,255,0.85); font-weight: 500; font-size: 15px; padding: 8px 14px; border-radius: var(--radius-full); transition: var(--transition); }
.nav-link:hover { color: white; background: rgba(255,255,255,0.1); }
.nav-cta { margin-left: 8px; padding: 10px 20px; font-size: 14px; background: linear-gradient(135deg, var(--orange), var(--orange-dark)); color: white; border-radius: var(--radius-full); font-weight: 700; display: inline-flex; align-items: center; gap: 6px; box-shadow: 0 4px 15px rgba(244,160,32,0.4); }
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(244,160,32,0.5); }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span { display: block; width: 25px; height: 3px; background: white; border-radius: 3px; transition: var(--transition); }

/* HERO */
.hero { min-height: 100vh; background: var(--gradient-hero); position: relative; display: flex; align-items: center; padding-top: var(--navbar-height); overflow: hidden; }
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.35; animation: float 8s ease-in-out infinite; }
.hero-orb--1 { width: 600px; height: 600px; background: radial-gradient(circle, var(--orange) 0%, transparent 70%); top: -200px; right: -100px; animation-delay: 0s; }
.hero-orb--2 { width: 400px; height: 400px; background: radial-gradient(circle, var(--blue-light) 0%, transparent 70%); bottom: -100px; left: -100px; animation-delay: -3s; }
.hero-orb--3 { width: 300px; height: 300px; background: radial-gradient(circle, var(--green) 0%, transparent 70%); top: 50%; left: 40%; animation-delay: -5s; opacity: 0.2; }
.hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px); background-size: 60px 60px; }
@keyframes float { 0%, 100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-30px) scale(1.05); } }
.hero-inner { position: relative; z-index: 1; padding: 80px 0; text-align: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.9); padding: 8px 20px; border-radius: var(--radius-full); font-size: 14px; font-weight: 600; margin-bottom: 28px; backdrop-filter: blur(10px); animation: fadeInUp 0.6s ease; }
.badge-dot { width: 8px; height: 8px; background: var(--green-light); border-radius: 50%; box-shadow: 0 0 0 3px rgba(102,187,106,0.3); animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 3px rgba(102,187,106,0.3); } 50% { box-shadow: 0 0 0 6px rgba(102,187,106,0.1); } }
.hero-title { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 900; color: white; line-height: 1.1; margin-bottom: 24px; animation: fadeInUp 0.6s ease 0.1s both; }
.hero-subtitle { font-size: clamp(1rem, 2vw, 1.25rem); color: rgba(255,255,255,0.75); max-width: 600px; margin: 0 auto 40px; line-height: 1.7; animation: fadeInUp 0.6s ease 0.2s both; }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 64px; animation: fadeInUp 0.6s ease 0.3s both; }
.hero-stats { display: flex; align-items: center; justify-content: center; gap: 40px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-xl); padding: 28px 48px; backdrop-filter: blur(16px); max-width: 600px; margin: 0 auto; animation: fadeInUp 0.6s ease 0.4s both; }
.stat-item { text-align: center; }
.stat-number { display: block; font-size: 2rem; font-weight: 900; color: white; line-height: 1; }
.stat-star { color: var(--orange); }
.stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.6); margin-top: 4px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; }
.stat-divider { width: 1px; height: 48px; background: rgba(255,255,255,0.15); }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.hero-scroll { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); }
.scroll-indicator { width: 24px; height: 40px; border: 2px solid rgba(255,255,255,0.3); border-radius: 12px; position: relative; }
.scroll-indicator::after { content: ''; position: absolute; top: 6px; left: 50%; transform: translateX(-50%); width: 4px; height: 8px; background: rgba(255,255,255,0.6); border-radius: 2px; animation: scrollDown 2s infinite; }
@keyframes scrollDown { 0% { opacity: 1; transform: translateX(-50%) translateY(0); } 100% { opacity: 0; transform: translateX(-50%) translateY(12px); } }

/* BRAND STRIP */
.brand-strip { background: var(--gray-50); border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200); padding: 24px 0; }
.brand-strip-label { text-align: center; font-size: 13px; font-weight: 600; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 20px; }
.brand-logos { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.brand-logo-item { display: flex; align-items: center; justify-content: center; opacity: 0.6; transition: var(--transition); }
.brand-logo-item:hover { opacity: 1; }
.brand-text { font-family: 'Outfit', sans-serif; font-weight: 900; font-size: 20px; letter-spacing: -0.02em; }

/* SECTIONS */
.section { padding: 100px 0; }
.section--alt { background: var(--gray-50); }
.section-header { text-align: center; max-width: 680px; margin: 0 auto 64px; }
.section-tag { display: inline-block; background: linear-gradient(135deg, var(--blue), var(--blue-dark)); color: white; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; padding: 6px 16px; border-radius: var(--radius-full); margin-bottom: 16px; }
.section-title { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; color: var(--gray-900); line-height: 1.2; margin-bottom: 16px; }
.section-subtitle { font-size: 1.1rem; color: var(--gray-500); line-height: 1.7; }

/* SERVICES */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { background: white; border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 32px; transition: var(--transition); position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--blue), var(--blue-light)); transform: scaleX(0); transition: var(--transition); transform-origin: left; }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-card--highlight { background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%); border: none; color: white; }
.service-card--highlight .service-title, .service-card--highlight .service-desc, .service-card--highlight .service-list li { color: rgba(255,255,255,0.9); }
.service-card--highlight::before { display: none; }
.service-card--highlight:hover { box-shadow: 0 25px 50px rgba(21,101,192,0.4); }
.service-icon { width: 56px; height: 56px; border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 28px; margin-bottom: 20px; }
.service-icon--blue { background: rgba(21,101,192,0.1); color: var(--blue); }
.service-icon--orange { background: rgba(244,160,32,0.1); color: var(--orange-dark); }
.service-icon--green { background: rgba(67,160,71,0.1); color: var(--green); }
.service-icon--white { background: rgba(255,255,255,0.15); color: white; font-size: 32px; }
.service-title { font-size: 1.2rem; font-weight: 700; color: var(--gray-900); margin-bottom: 12px; }
.service-desc { font-size: 0.9rem; color: var(--gray-500); line-height: 1.7; margin-bottom: 16px; }
.service-list { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.service-list li { font-size: 0.85rem; color: var(--gray-600); display: flex; align-items: center; gap: 8px; }
.service-list li::before { content: ''; width: 6px; height: 6px; background: var(--orange); border-radius: 50%; flex-shrink: 0; }
.service-link { font-size: 0.9rem; font-weight: 700; color: var(--blue); display: inline-flex; align-items: center; gap: 4px; transition: var(--transition); }
.service-link:hover { gap: 8px; }
.service-link--white { color: rgba(255,255,255,0.9); }
.service-link--white:hover { color: white; }
.highlight-badge { position: absolute; top: 20px; right: 20px; background: var(--orange); color: white; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; padding: 4px 12px; border-radius: var(--radius-full); }

/* DIFERENCIAIS */
.diff-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.diff-card { background: white; border-radius: var(--radius-lg); padding: 32px; text-align: center; border: 1px solid var(--gray-200); transition: var(--transition); }
.diff-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.diff-icon { font-size: 2.5rem; margin-bottom: 16px; display: block; }
.diff-title { font-size: 1.1rem; font-weight: 700; color: var(--gray-900); margin-bottom: 12px; }
.diff-desc { font-size: 0.9rem; color: var(--gray-500); line-height: 1.7; }

/* HOW IT WORKS */
.steps-container { display: flex; align-items: flex-start; gap: 0; max-width: 900px; margin: 0 auto 48px; position: relative; }
.step { flex: 1; display: flex; flex-direction: column; align-items: center; text-align: center; position: relative; }
.step-number { width: 72px; height: 72px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--blue-light)); color: white; font-size: 1.8rem; font-weight: 900; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; box-shadow: 0 8px 25px rgba(21,101,192,0.3); position: relative; z-index: 1; }
.step-connector { position: absolute; top: 36px; left: calc(50% + 36px); right: calc(-50% + 36px); height: 2px; background: linear-gradient(90deg, var(--blue-light), var(--orange)); z-index: 0; }
.step-content { padding: 0 16px; }
.step-title { font-size: 1.1rem; font-weight: 700; color: var(--gray-900); margin-bottom: 10px; }
.step-desc { font-size: 0.9rem; color: var(--gray-500); line-height: 1.7; }
.steps-cta { text-align: center; }

/* REVIEWS */
.reviews-summary { text-align: center; margin-bottom: 48px; }
.rating-big { display: inline-flex; flex-direction: column; align-items: center; gap: 8px; }
.rating-number { font-size: 4rem; font-weight: 900; color: var(--gray-900); line-height: 1; }
.rating-stars { font-size: 1.5rem; color: var(--orange); }
.rating-count { font-size: 0.9rem; color: var(--gray-500); font-weight: 500; }
.reviews-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.review-card { background: white; border-radius: var(--radius-lg); padding: 32px; border: 1px solid var(--gray-200); transition: var(--transition); }
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.review-stars { color: var(--orange); font-size: 1.2rem; margin-bottom: 16px; }
.review-text { font-size: 0.95rem; color: var(--gray-600); line-height: 1.7; font-style: italic; margin-bottom: 20px; }
.review-footer { display: flex; align-items: center; gap: 12px; }
.review-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--orange)); color: white; font-size: 1.1rem; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.review-name { font-size: 0.95rem; font-weight: 700; color: var(--gray-900); }
.review-location { font-size: 0.8rem; color: var(--gray-400); }

/* BRANDS */
.brands-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; }
.brand-card { background: white; border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 28px 16px; text-align: center; transition: var(--transition); }
.brand-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.brand-icon { width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-size: 1.1rem; font-weight: 900; color: white; font-family: 'Outfit', sans-serif; }
.brand-icon--blue { background: linear-gradient(135deg, #1565C0, #1E88E5); }
.brand-icon--green { background: linear-gradient(135deg, #1B5E20, #43A047); }
.brand-icon--red { background: linear-gradient(135deg, #B71C1C, #E53935); }
.brand-icon--darkblue { background: linear-gradient(135deg, #01579B, #0288D1); }
.brand-icon--navy { background: linear-gradient(135deg, #1A237E, #283593); }
.brand-icon--crimson { background: linear-gradient(135deg, #C62828, #E53935); }
.brand-name { font-size: 1rem; font-weight: 700; color: var(--gray-900); margin-bottom: 4px; }
.brand-type { font-size: 0.75rem; color: var(--gray-400); font-weight: 500; }

/* CTA BANNER */
.cta-banner { background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 50%, var(--blue-light) 100%); padding: 100px 0; position: relative; overflow: hidden; }
.cta-bg { position: absolute; inset: 0; pointer-events: none; }
.cta-orb { position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.2; }
.cta-orb--1 { width: 400px; height: 400px; background: var(--orange); top: -100px; right: -100px; }
.cta-orb--2 { width: 300px; height: 300px; background: var(--green); bottom: -100px; left: -50px; }
.cta-inner { position: relative; z-index: 1; text-align: center; }
.cta-title { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 900; color: white; margin-bottom: 16px; line-height: 1.2; }
.cta-subtitle { font-size: 1.1rem; color: rgba(255,255,255,0.75); margin-bottom: 48px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-card { display: flex; align-items: center; gap: 16px; padding: 20px 24px; border-radius: var(--radius-lg); border: 1px solid var(--gray-200); background: white; transition: var(--transition); cursor: pointer; }
.contact-card:hover { transform: translateX(6px); box-shadow: var(--shadow-md); }
.contact-card--whatsapp:hover { border-color: #25D366; }
.contact-card--instagram:hover { border-color: #E1306C; }
.contact-card--phone:hover { border-color: var(--blue); }
.contact-card--address:hover { border-color: var(--orange); }
.contact-icon { width: 48px; height: 48px; background: var(--gray-100); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; flex-shrink: 0; }
.contact-card--whatsapp .contact-icon { background: #DCFCE7; }
.contact-card--instagram .contact-icon { background: #FCE7F3; }
.contact-card--phone .contact-icon { background: #DBEAFE; }
.contact-card--address .contact-icon { background: #FEF3C7; }
.contact-label { font-size: 0.75rem; font-weight: 600; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.06em; }
.contact-value { font-size: 1rem; font-weight: 700; color: var(--gray-900); margin: 2px 0; }
.contact-hint { font-size: 0.8rem; color: var(--gray-400); }
.contact-arrow { margin-left: auto; color: var(--gray-300); font-size: 1.2rem; flex-shrink: 0; }
.contact-map { border-radius: var(--radius-lg); overflow: hidden; height: 420px; border: 1px solid var(--gray-200); box-shadow: var(--shadow-md); }

/* FOOTER */
.footer { background: var(--gray-900); color: rgba(255,255,255,0.7); padding-top: 72px; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; padding-bottom: 64px; }
.footer-brand img { margin-bottom: 16px; }
.footer-tagline { font-size: 0.9rem; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 24px; }
.footer-social { display: flex; gap: 12px; }
.social-btn { width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; transition: var(--transition); color: white; }
.social-btn:hover { background: var(--orange); transform: translateY(-3px); }
.footer-heading { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: white; margin-bottom: 20px; }
.footer-links ul, .footer-services-list ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a, .footer-services-list li, .footer-contact-info p { font-size: 0.9rem; color: rgba(255,255,255,0.6); transition: var(--transition-fast); }
.footer-links a:hover { color: var(--orange); }
.footer-contact-info p { margin-bottom: 10px; line-height: 1.5; }
.footer-contact-info a:hover { color: var(--orange); }
.footer-hours { color: rgba(255,255,255,0.5) !important; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 24px 0; text-align: center; }
.footer-bottom p { font-size: 0.85rem; color: rgba(255,255,255,0.4); margin-bottom: 4px; }

/* FLOAT WHATSAPP */
.float-whatsapp { position: fixed; bottom: 32px; right: 32px; z-index: 999; width: 64px; height: 64px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; color: white; box-shadow: 0 8px 25px rgba(37,211,102,0.4); transition: var(--transition); animation: bounceIn 0.8s cubic-bezier(0.36,0.07,0.19,0.97) 1s both; }
.float-whatsapp:hover { transform: scale(1.15); box-shadow: 0 12px 35px rgba(37,211,102,0.5); }
.float-tooltip { position: absolute; right: 72px; background: var(--gray-900); color: white; padding: 8px 14px; border-radius: var(--radius); font-size: 0.85rem; font-weight: 600; white-space: nowrap; opacity: 0; pointer-events: none; transition: var(--transition); box-shadow: var(--shadow-md); }
.float-whatsapp:hover .float-tooltip { opacity: 1; }
@keyframes bounceIn { 0% { transform: scale(0); opacity: 0; } 60% { transform: scale(1.2); } 100% { transform: scale(1); opacity: 1; } }

/* ANIMATIONS */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .brands-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .steps-container { flex-direction: column; align-items: center; gap: 32px; }
  .step-connector { display: none; }
}
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .section-header { margin-bottom: 40px; }
  .hamburger { display: flex; }
  .nav-links { display: none; flex-direction: column; align-items: stretch; position: fixed; top: var(--navbar-height); left: 0; right: 0; background: rgba(13,71,161,0.98); backdrop-filter: blur(20px); padding: 16px; gap: 4px; box-shadow: 0 20px 40px rgba(0,0,0,0.3); }
  .nav-links.open { display: flex; }
  .nav-link { padding: 12px 16px; }
  .nav-cta { margin: 8px 0 0; justify-content: center; }
  .hero-stats { flex-direction: column; gap: 20px; padding: 24px 32px; }
  .stat-divider { width: 48px; height: 1px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .services-grid { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-map { height: 280px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .cta-actions { flex-direction: column; align-items: center; }
  .float-whatsapp { bottom: 20px; right: 20px; width: 56px; height: 56px; font-size: 1.6rem; }
}
