:root {
    --primary-color: #ff6600;
    --primary-dark: #cc5200;
    --bg-color: #1a1a1a;
    --bg-darker: #111111;
    --text-color: #ffffff;
    --text-muted: #a0a0a0;
    --header-bg: rgba(17, 17, 17, 0.85);
    --card-bg: rgba(255, 255, 255, 0.03);
    --border-color: rgba(255, 255, 255, 0.08);
    --font-main: 'Poppins', sans-serif;
    --transition-smooth: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    --anchor-offset: 68px;
    --safe-top: env(safe-area-inset-top, 0px);
    --safe-right: env(safe-area-inset-right, 0px);
    --safe-bottom: env(safe-area-inset-bottom, 0px);
    --safe-left: env(safe-area-inset-left, 0px);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--anchor-offset) + var(--safe-top));
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-color);
    overflow-x: hidden;
    overscroll-behavior-x: none;
    cursor: none; /* Esconde cursor padrão para o customizado */
    -webkit-text-size-adjust: 100%;
}

body::-webkit-scrollbar { width: 8px; }
body::-webkit-scrollbar-track { background: var(--bg-darker); }
body::-webkit-scrollbar-thumb { background-color: var(--primary-color); }

img, video { max-width: 100%; }

a { text-decoration: none; color: inherit; cursor: none; }
ul { list-style: none; }
button { cursor: none; }
a, button {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

/* --- Custom Cursor --- */
.cursor-dot, .cursor-outline {
    position: fixed;
    top: 0; left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 10030;
    pointer-events: none;
}
.cursor-dot {
    width: 8px; height: 8px;
    background-color: var(--primary-color);
}
.cursor-outline {
    width: 40px; height: 40px;
    border: 1px solid rgba(255, 102, 0, 0.5);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}
.cursor-hover {
    width: 60px; height: 60px;
    background-color: rgba(255, 102, 0, 0.1);
    border-color: transparent;
}

/* --- Preloader --- */
#preloader {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: var(--bg-darker);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.loader-logo {
    font-size: 12.5rem; font-weight: 800; letter-spacing: 2px;
    display: flex; align-items: center; justify-content: center; gap: 10px;
    min-height: 72px;
}
.loader-logo img {
    max-width: min(820px, 72vw);
    max-height: 150px;
    width: auto;
    height: auto;
    display: block;
    object-fit: contain;
}
.loader-logo span { color: var(--primary-color); }
.preloader-fallback {
    font-size: 2.5rem;
    letter-spacing: 2px;
}
.preloader-fallback i { font-size: 2.2rem; }
.loader-bar-bg {
    width: 200px; height: 2px;
    background: rgba(255,255,255,0.1);
    margin-top: 20px; overflow: hidden;
    position: relative;
}
.loader-bar {
    width: 0%; height: 100%;
    background: var(--primary-color);
    position: absolute; left: 0; top: 0;
}

/* --- Header --- */
header {
    position: fixed; top: 0; left: 0; width: 100%;
    padding: 25px 5%;
    display: flex; justify-content: space-between; align-items: center;
    z-index: 1000;
    transition: var(--transition-smooth);
    background-color: transparent;
    border-bottom: 1px solid transparent;
}

header.scrolled {
    background-color: var(--header-bg);
    padding: 15px 5%;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-color);
}

.logo-container { height: 70px; display: flex; align-items: center; flex-shrink: 0; max-width: 200px; }
.logo-container img { max-height: 100%; max-width: 100%; transition: opacity 0.3s ease; }
.logo-fallback {
    font-size: 24px; font-weight: 800; letter-spacing: 1px;
    display: flex; align-items: center; gap: 8px;
}
.logo-fallback i { color: var(--primary-color); font-size: 28px; }

nav { display: flex; align-items: center; gap: 40px; }
.nav-links { display: flex; gap: 35px; }
.nav-actions { display: flex; align-items: center; gap: 15px; }
.mobile-menu-toggle,
.mobile-nav { display: none; }
.nav-links li a {
    font-weight: 500; font-size: 13px; text-transform: uppercase;
    letter-spacing: 1.5px; position: relative; padding: 5px 0;
    color: #ccc; transition: color 0.3s ease;
}
.nav-links li a:hover,
.nav-links li a.active,
.mobile-nav-links a:hover,
.mobile-nav-links a.active { color: #fff; }
.nav-links li a::before {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 0; height: 2px; background-color: var(--primary-color);
    transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.nav-links li a:hover::before { width: 100%; }
.nav-links li a.active::before { width: 100%; }

.lang-switch {
    display: flex; gap: 5px; background: rgba(0,0,0,0.2);
    padding: 5px; border-radius: 30px; border: 1px solid var(--border-color);
}
.lang-btn {
    background: transparent; border: none; color: var(--text-muted);
    padding: 5px 12px; border-radius: 20px; font-size: 12px;
    font-weight: 600; transition: var(--transition-smooth);
    min-width: 40px;
    min-height: 32px;
}
.lang-btn.active { background: var(--primary-color); color: #fff; }
.btn.header-cta {
    padding: 7px 14px;
    font-size: 10px;
    letter-spacing: 0.8px;
    gap: 6px;
    white-space: nowrap;
}
.mobile-menu-toggle {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    background: rgba(255,255,255,0.04);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    transition: var(--transition-smooth);
}
.mobile-menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: #fff;
    transition: var(--transition-smooth);
}
.mobile-menu-toggle.is-active {
    background: rgba(255, 102, 0, 0.12);
    border-color: rgba(255, 102, 0, 0.3);
}
.mobile-menu-toggle.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.mobile-menu-toggle.is-active span:nth-child(2) {
    opacity: 0;
}
.mobile-menu-toggle.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}
.mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 10010;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.mobile-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.mobile-nav-backdrop {
    position: absolute;
    inset: 0;
    border: none;
    background: rgba(0,0,0,0.58);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.mobile-nav-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(88vw, 380px);
    height: 100%;
    padding: calc(22px + var(--safe-top)) calc(20px + var(--safe-right)) calc(26px + var(--safe-bottom)) calc(20px + var(--safe-left));
    background: linear-gradient(180deg, rgba(22,22,22,0.98), rgba(10,10,10,0.98));
    border-left: 1px solid rgba(255,255,255,0.08);
    box-shadow: -24px 0 60px rgba(0,0,0,0.32);
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.mobile-nav.is-open .mobile-nav-panel {
    transform: translateX(0);
}
.mobile-nav-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.mobile-nav-brand {
    max-width: 170px;
}
.mobile-nav-brand img {
    display: block;
    max-height: 40px;
    object-fit: contain;
}
.mobile-nav-close {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.04);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.mobile-nav-links {
    display: grid;
    gap: 8px;
}
.mobile-nav-links a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 48px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    color: #cfcfcf;
    font-size: 0.98rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}
.mobile-nav-footer {
    margin-top: auto;
    display: grid;
    gap: 16px;
}
.mobile-nav-footer .lang-switch {
    justify-content: center;
}
.mobile-nav-cta {
    width: 100%;
    justify-content: center;
}
body.mobile-nav-open {
    overflow: hidden;
    overscroll-behavior: contain;
}

/* --- Typography Helpers --- */
.word-line { display: inline-block; overflow: hidden; vertical-align: bottom; }
.word { display: inline-block; } /* Deixamos a posição inicial pro GSAP gerenciar */

/* --- Sections Comuns --- */
.fullscreen-section {
    min-height: 100svh; width: 100%;
    display: flex; flex-direction: column; justify-content: center;
    padding: clamp(72px, 8vh, 96px) 5%; position: relative;
}
section[id] {
    scroll-margin-top: calc(var(--anchor-offset) + var(--safe-top));
}
#hero {
    scroll-margin-top: 0;
}

.section-header { text-align: center; margin-bottom: clamp(36px, 5vh, 72px); }
.section-subtitle {
    color: var(--primary-color); font-size: 14px;
    font-weight: 600; text-transform: uppercase; letter-spacing: 3px;
    margin-bottom: 15px; display: block;
}
.section-title {
    font-size: clamp(2.45rem, 4vw, 3.5rem); font-weight: 800; line-height: 1.12; text-transform: uppercase;
}

/* --- Button Premium --- */
.btn {
    position: relative; display: inline-flex; align-items: center; gap: 10px;
    padding: 18px 45px; background-color: var(--primary-color);
    color: #fff; font-weight: 600; font-size: 14px;
    text-transform: uppercase; letter-spacing: 1.5px; border-radius: 2px;
    overflow: hidden; z-index: 1; transition: color 0.4s;
}
.btn::before {
    content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
    background-color: var(--text-color); z-index: -1; transition: left 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
.btn:hover { color: var(--bg-darker); }
.btn:hover::before { left: 0; }
.btn-whatsapp {
    background-color: #25d366;
    color: #fff;
}
.btn-whatsapp::before {
    background-color: #128c7e;
}
.btn-whatsapp:hover {
    color: #fff;
}

/* --- Hero Section --- */
#hero {
    padding-top: 0; align-items: flex-start;
    background: var(--bg-darker); overflow: hidden;
}
.hero-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 120%;
    background: #080808;
    overflow: hidden;
    z-index: 0;
}
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, rgba(5, 5, 5, 0.856) 0%, rgba(5, 5, 5, 0.712) 38%, rgba(5, 5, 5, 0.658) 100%),
        linear-gradient(to top, rgba(0, 0, 0, 0.678) 0%, rgba(0, 0, 0, 0.247) 45%, rgba(0,0,0,0.55) 100%);
    z-index: 1;
}
.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(0.85) brightness(0.55);
}
.hero-content {
    position: relative; z-index: 2; max-width: 800px;
    margin-top: 10vh;
}
.hero-title { font-size: clamp(2.9rem, 4.2vw, 4.6rem); font-weight: 800; line-height: 1.05; margin-bottom: 22px; text-transform: uppercase; }
.hero-desc { font-size: 1rem; color: #ccc; margin-bottom: 40px; max-width: 480px; line-height: 1.7; }

/* Floating Stat Box no Hero */
.hero-stat-box {
    position: absolute; right: 5%; bottom: 15%;
    background: rgba(25, 25, 25, 0.6);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    padding: 30px; border-left: 4px solid var(--primary-color);
    z-index: 2; display: flex; gap: 20px; align-items: center;
}
.hero-stat-box i { font-size: 2.5rem; color: var(--primary-color); }
.hero-stat-box h4 { font-size: 2rem; font-weight: 800; }
.hero-stat-box p { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }

/* --- Services Section --- */
#services { background-color: var(--bg-color); }
.services-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px;
    background: var(--border-color); border: 1px solid var(--border-color);
}
.service-card {
    background-color: var(--bg-color); padding: 60px 40px;
    position: relative; transition: var(--transition-smooth);
    overflow: hidden; display: flex; flex-direction: column;
}
.service-card:hover { background-color: var(--bg-darker); }
.srv-bg-icon {
    position: absolute; right: -20px; bottom: -20px;
    font-size: 150px; color: rgba(255, 255, 255, 0.02);
    transition: var(--transition-smooth); z-index: 0;
}
.service-card:hover .srv-bg-icon {
    transform: scale(1.1) rotate(-10deg); color: rgba(255, 102, 0, 0.05);
}
.service-content { position: relative; z-index: 1; }
.service-icon {
    font-size: 2.5rem; color: var(--primary-color); margin-bottom: 30px;
    display: inline-block; transition: var(--transition-smooth);
}
.service-card:hover .service-icon { transform: translateY(-10px); }
.service-title { font-size: 1.4rem; font-weight: 700; margin-bottom: 20px; }
.service-text { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; margin-bottom: 30px; }
.service-link {
    font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 2px;
    color: var(--primary-color); display: flex; align-items: center; gap: 10px;
    opacity: 0; transform: translateY(20px); transition: var(--transition-smooth);
    background: transparent; border: none; padding: 0; text-align: left;
}
.service-card:hover .service-link { opacity: 1; transform: translateY(0); }
.service-link i { transition: transform 0.3s ease; }
.service-link:hover i { transform: translateX(4px); }

.service-modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    z-index: 10020;
}
.service-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.service-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.76);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.service-modal-dialog {
    position: relative;
    width: min(1100px, 100%);
    max-height: min(88vh, 920px);
    overflow: auto;
    padding: 42px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 28px;
    background:
        radial-gradient(circle at top right, rgba(255, 102, 0, 0.14), transparent 28%),
        linear-gradient(180deg, rgba(28,28,28,0.98), rgba(14,14,14,0.98));
    box-shadow: 0 36px 90px rgba(0,0,0,0.42);
    z-index: 1;
}
.service-modal-dialog::-webkit-scrollbar { width: 8px; }
.service-modal-dialog::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.16); }
.service-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.04);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition-smooth);
}
.service-modal-close:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}
.service-modal-top {
    display: grid;
    grid-template-columns: 92px 1fr;
    gap: 24px;
    align-items: start;
    margin-bottom: 26px;
}
.service-modal-icon {
    width: 92px;
    height: 92px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    background: linear-gradient(180deg, rgba(255,102,0,0.15), rgba(255,102,0,0.04));
    border: 1px solid rgba(255,102,0,0.15);
    font-size: 2.2rem;
}
.service-modal-eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.8px;
}
.service-modal-title {
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.08;
    margin-bottom: 18px;
    text-transform: uppercase;
}
.service-modal-summary {
    max-width: 780px;
    color: #d1d1d1;
    font-size: 1.05rem;
    line-height: 1.85;
}
.service-modal-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
}
.service-modal-highlight {
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.04);
    color: #f2f2f2;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.8px;
}
.service-modal-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}
.service-modal-panel {
    padding: 26px;
    border-radius: 22px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
}
.service-modal-panel-wide {
    grid-column: 1 / -1;
}
.service-modal-panel h4 {
    margin-bottom: 18px;
    font-size: 0.95rem;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: #fff;
}
.service-modal-panel ul,
.service-modal-panel ol {
    display: grid;
    gap: 14px;
    color: #cfcfcf;
    line-height: 1.7;
}
.service-modal-panel ul {
    list-style: none;
}
.service-modal-panel ul li,
.service-modal-panel ol li {
    position: relative;
    padding-left: 28px;
}
.service-modal-panel ul li::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary-color);
    box-shadow: 0 0 0 5px rgba(255, 102, 0, 0.12);
}
.service-modal-panel ol {
    counter-reset: modal-step;
    list-style: none;
}
.service-modal-panel ol li::before {
    counter-increment: modal-step;
    content: counter(modal-step);
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(255, 102, 0, 0.14);
    color: var(--primary-color);
    border: 1px solid rgba(255, 102, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
}
.service-modal-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.service-modal-footer p {
    max-width: 620px;
    color: var(--text-muted);
    line-height: 1.7;
}
.service-modal-cta {
    flex-shrink: 0;
}
body.modal-open {
    overflow: hidden;
    overscroll-behavior: contain;
}

/* --- About Section (Premium Split Layout) --- */
#about { background-color: var(--bg-darker); display: grid; grid-template-columns: 1fr 1fr; gap: 80px; padding: 0; }
.about-image-col {
    position: relative; overflow: hidden; height: 100vh;
}
.about-img {
    width: 100%; height: 120%;
    background: url('https://images.unsplash.com/photo-1578575437130-527eed3abbec?q=80&w=2070&auto=format&fit=crop') center/cover;
    position: absolute; top: -10%;
}
.about-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(90deg, transparent, var(--bg-darker));
}
.about-text-col {
    display: flex; flex-direction: column; justify-content: center;
    padding-right: 10%;
}
.about-desc { font-size: 1.1rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 25px; }

.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 40px; padding-top: 40px; border-top: 1px solid var(--border-color); }
.stat-item h4 { font-size: 3.5rem; color: var(--text-color); font-weight: 800; line-height: 1; margin-bottom: 10px; }
.stat-item h4 span { color: var(--primary-color); }
.stat-item p { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-muted); }

/* --- Why MM Logistics --- */
#why-mm {
    background:
        radial-gradient(circle at 12% 18%, rgba(255, 102, 0, 0.12), transparent 28%),
        radial-gradient(circle at 85% 80%, rgba(255, 102, 0, 0.08), transparent 24%),
        linear-gradient(180deg, #151515 0%, #101010 100%);
    overflow: hidden;
    padding-top: clamp(60px, 6.5vh, 80px);
    padding-bottom: clamp(60px, 6.5vh, 80px);
}
.why-shell {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(28px, 5vw, 60px);
    align-items: center;
}
.why-intro {
    position: relative;
    z-index: 1;
}
.why-intro::before {
    content: '';
    position: absolute;
    top: -42px;
    left: -34px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 102, 0, 0.16), transparent 68%);
    filter: blur(6px);
    z-index: -1;
    pointer-events: none;
}
.why-intro .section-title {
    max-width: 12ch;
}
.why-lead {
    max-width: 38ch;
    margin-top: 24px;
    color: #d3d3d3;
    font-size: 1.02rem;
    line-height: 1.85;
}
.clients-header {
    margin-top: -18px;
    margin-bottom: 38px;
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
}
.why-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}
.why-network-block {
    width: 100%;
    max-width: 1180px;
    margin: clamp(20px, 3.6vh, 30px) auto 0;
    padding: 22px 24px 24px;
    border: none;
    background: transparent;
    display: none;
    grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(28px, 5vw, 60px);
    align-items: center;
}
#why-mm > .why-network-block {
    display: grid;
}
.why-network-header {
    max-width: 38ch;
    margin-bottom: 0;
    text-align: left;
}
.why-network-title {
    font-size: clamp(1.65rem, 2.6vw, 2.4rem);
    line-height: 1.1;
    text-transform: uppercase;
}
.why-network-desc {
    margin-top: 10px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.72;
}
.why-network-block .map-container {
    margin-top: 0 !important;
    width: 100%;
    max-width: none;
    aspect-ratio: 95 / 62;
    min-height: 0;
    border-radius: 24px;
    background:
        radial-gradient(circle at center, rgba(255, 102, 0, 0.06), transparent 35%),
        rgba(255, 255, 255, 0);
}
.why-network-block .map-pin-label {
    opacity: 1;
    transform: translate(var(--pin-label-x, -50%), 0);
}
.network-legacy {
    display: none !important;
}
.why-card {
    position: relative;
    min-height: 0;
    padding: 24px 24px 22px;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.07);
    background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.018));
    overflow: hidden;
}
.why-card:first-child {
    background: linear-gradient(180deg, rgba(255, 102, 0, 0.14), rgba(255,255,255,0.03));
    border-color: rgba(255, 102, 0, 0.18);
}
.why-card::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 102, 0, 0.7), transparent 55%);
}
.why-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}
.why-number {
    color: rgba(255,255,255,0.2);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 1.8px;
}
.why-icon {
    display: inline-flex;
    align-items: right;
    justify-content: right;
    color: var(--primary-color);
    background: transparent;
    border: none;
    font-size: 1.2rem;
}
.why-card h3 {
    font-size: 1.12rem;
    line-height: 1.3;
    margin-bottom: 10px;
}
.why-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.68;
}

/* --- Clients / Social Proof --- */
#clients {
    background:
        radial-gradient(circle at top right, rgba(255, 102, 0, 0.08), transparent 28%),
        linear-gradient(180deg, #111111 0%, #161616 100%);
}
.clients-shell {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    gap: 16px;
}
.clients-carousel-head {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 20px;
}
.clients-summary {
    max-width: 560px;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.75;
}
.clients-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}
.clients-control {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: rgba(255,255,255,0.04);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}
.clients-control:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}
.clients-control:disabled {
    opacity: 0.38;
    pointer-events: none;
}
.clients-viewport {
    overflow: hidden;
}
.clients-track {
    display: flex;
    gap: 24px;
    transition: transform 0.75s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}
.client-card {
    flex: 0 0 calc((100% - 48px) / 3);
    min-height: 320px;
    padding: 30px;
    border-radius: 28px;
    border: 1px solid rgba(255,255,255,0.08);
    background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.02));
    box-shadow: 0 24px 50px rgba(0,0,0,0.16);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.client-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 26px;
}
.client-badge {
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.08);
    color: #d8d8d8;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}
.client-quote-icon {
    font-size: 1.2rem;
    color: rgba(255, 102, 0, 0.55);
}
.client-quote {
    color: #f2f2f2;
    font-size: 1.02rem;
    line-height: 1.9;
}
.client-footer {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: grid;
    gap: 6px;
}
.client-name {
    font-size: 1rem;
    font-weight: 700;
}
.client-role {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.5;
}
.clients-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.clients-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: none;
    background: rgba(255,255,255,0.14);
    transition: var(--transition-smooth);
}
.clients-dot.is-active {
    width: 30px;
    background: var(--primary-color);
}

/* --- Global Network --- */
#network {
    background:
        radial-gradient(circle at top, rgba(255, 102, 0, 0.08), transparent 38%),
        linear-gradient(180deg, #171717 0%, #121212 100%);
    text-align: center;
}
.map-container {
    margin-top: -75px !important;
    width: 100%;
    max-width: 950px;
    aspect-ratio: 95 / 62;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border: none;
    background: transparent;

    -webkit-mask-image: 
        linear-gradient(to top, transparent, black 70%),
        linear-gradient(to bottom, transparent, black 50%),
        linear-gradient(to left, transparent, black 20%),
        linear-gradient(to right, transparent, black 20%);
    
    -webkit-mask-composite: destination-in;
    mask-composite: intersect;
}
.map-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: transparent;
    background-size: 72px 72px;
    opacity: 0.28;
    mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
}
.map-container::after {
    content: '';
    position: absolute;
    inset: 12% 8%;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(255, 102, 0, 0.08), transparent 60%);
    filter: blur(30px);
    pointer-events: none;
}
.world-map-svg,
.map-routes-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.world-map-svg {
    z-index: 1;
    pointer-events: none;
}
.world-map-image {
    object-fit: contain;
    filter: brightness(0) saturate(0) invert(1) opacity(0.26);
}
.map-routes-svg {
    z-index: 2;
    pointer-events: none;
    opacity: 0.72;
}
.route-line {
    fill: none;
    stroke: rgba(255, 102, 0, 0.35);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-dasharray: 8 12;
    animation: dashFlow 16s linear infinite;
}
.map-pin {
    --pin-label-x: -50%;
    --pin-label-y: 6px;
    --pin-label-bottom: 22px;
    --pin-label-tail-x: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    z-index: 3;
}
.map-pin.map-pin-priority {
    z-index: 6;
}
.map-pin-dot {
    position: relative;
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary-color);
    box-shadow: 0 0 0 6px rgba(255, 102, 0, 0.14), 0 0 22px rgba(255, 102, 0, 0.38);
}
.map-pin-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 26px;
    height: 26px;
    border: 1.5px solid rgba(255, 102, 0, 0.55);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: ripple 2.8s infinite;
}
.map-pin-label {
    position: absolute;
    left: 50%;
    bottom: var(--pin-label-bottom);
    transform: translate(var(--pin-label-x), var(--pin-label-y));
    padding: 8px 12px;
    border-radius: 14px;
    background: rgba(12,12,12,0.92);
    border: 1px solid rgba(255, 102, 0, 0.18);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.4px;
    white-space: nowrap;
    box-shadow: 0 16px 34px rgba(0,0,0,0.28);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    opacity: 0;
    transition: var(--transition-smooth);
    pointer-events: none;
}
.map-pin-label::after {
    content: '';
    position: absolute;
    left: var(--pin-label-tail-x);
    bottom: -7px;
    width: 12px;
    height: 12px;
    background: rgba(12,12,12,0.92);
    border-right: 1px solid rgba(255, 102, 0, 0.18);
    border-bottom: 1px solid rgba(255, 102, 0, 0.18);
    transform: translateX(-50%) rotate(45deg);
}
.map-pin-priority .map-pin-label {
    --pin-label-bottom: 34px;
}
.map-pin-featured {
    z-index: 4;
}
.map-pin-featured .map-pin-dot {
    width: 16px;
    height: 16px;
    background: #fff;
    border: 4px solid var(--primary-color);
    box-shadow: 0 0 0 10px rgba(255, 102, 0, 0.12), 0 0 26px rgba(255, 102, 0, 0.45);
}
.map-pin-featured .map-pin-label,
.map-pin:hover .map-pin-label {
    opacity: 1;
    transform: translate(var(--pin-label-x, -50%), 0);
}
.map-pin-featured .map-pin-label {
    border-color: rgba(255, 102, 0, 0.35);
}
@keyframes dashFlow { to { stroke-dashoffset: -200; } }
@keyframes ripple {
    0% { transform: translate(-50%, -50%) scale(0.45); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(1.6); opacity: 0; }
}

/* --- Contact / CTA --- */
#contact {
    background: linear-gradient(rgba(26,26,26,0.9), rgba(26,26,26,0.9)), 
                url('../img/contact_bg.png') center/cover;
    text-align: center; align-items: center;
}
.contact-box {
    background: rgba(17, 17, 17, 0.7); backdrop-filter: blur(20px);
    padding: 80px 60px; border: 1px solid var(--border-color);
    max-width: 800px; width: 100%; border-top: 4px solid var(--primary-color);
}
.contact-info-flex {
    display: flex; justify-content: center; align-items: center; gap: 12px; margin-top: 36px; flex-wrap: nowrap;
}
.info-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 14px;
    border-radius: 16px;
    border: none;
    background: transparent;
    white-space: nowrap;
}
.info-card i { font-size: 0.88rem; color: var(--primary-color); flex: 0 0 auto; }
.info-card span { font-weight: 600; letter-spacing: 0.2px; line-height: 1.3; font-size: 0.93rem; }
.contact-highlight { color: var(--primary-color); font-weight: 700; }

/* --- Footer --- */
footer {
    background: #0a0a0a; padding: 40px 5%; text-align: center;
    border-top: 1px solid var(--border-color); color: var(--text-muted); font-size: 14px;
}

/* --- WhatsApp Float Premium com Ripple/Wave --- */
.whatsapp-float {
    position: fixed; bottom: 40px; right: 40px;
    width: 65px; height: 65px; background: #25d366; color: #FFF;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 32px; z-index: 1000;
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    animation: pulse-main 2s infinite;
    transition: transform 0.3s;
}

.whatsapp-float::before, 
.whatsapp-float::after {
    content: ''; position: absolute; inset: 0; border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, 0.8);
    z-index: -1; /* Mantém a onda atrás do ícone/botão */
    animation: pulse-wave 2s infinite cubic-bezier(0.25, 1, 0.5, 1);
}

/* Atraso na segunda onda para criar o efeito contínuo de propagação */
.whatsapp-float::after {
    animation-delay: 1s;
}

.whatsapp-float:hover { transform: translateY(-5px) scale(1.05); }

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

@keyframes pulse-wave {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.8); opacity: 0; }
}

/* --- Responsive --- */
@media (max-width: 1200px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-title { font-size: clamp(2.7rem, 4.4vw, 3.7rem); }
    nav { gap: 24px; }
    .nav-links { gap: 20px; }
    .btn.header-cta { padding: 7px 12px; }
    .service-card { padding: 48px 32px; }
    .contact-box { padding: 64px 44px; }
    .why-grid { gap: 16px; }
    .client-card { flex-basis: calc((100% - 24px) / 2); }
}
@media (max-width: 992px) {
    :root { --anchor-offset: 66px; }
    html { scroll-padding-top: calc(var(--anchor-offset) + var(--safe-top)); }
    header {
        padding: calc(18px + var(--safe-top)) calc(5% + var(--safe-right)) 18px calc(5% + var(--safe-left));
        gap: 16px;
    }
    header.scrolled {
        padding: calc(14px + var(--safe-top)) calc(5% + var(--safe-right)) 14px calc(5% + var(--safe-left));
    }
    nav {
        margin-left: auto;
        gap: 0;
    }
    .nav-links,
    .nav-actions {
        display: none;
    }
    .mobile-menu-toggle,
    .mobile-nav {
        display: block;
    }
    .mobile-menu-toggle {
        display: inline-flex;
    }
    .mobile-nav-footer .lang-btn {
        min-width: 46px;
        min-height: 38px;
    }
    #hero {
        min-height: 100svh;
        justify-content: flex-end;
        padding: calc(140px + var(--safe-top)) calc(5% + var(--safe-right)) 84px calc(5% + var(--safe-left));
    }
    .hero-bg {
        height: 100%;
    }
    .hero-content {
        max-width: 100%;
        margin-top: 0;
    }
    .hero-title {
        font-size: clamp(2.35rem, 6.6vw, 3.2rem);
        margin-bottom: 20px;
    }
    .hero-desc {
        max-width: 100%;
        margin-bottom: 30px;
    }
    .section-header {
        margin-bottom: 54px;
    }
    .section-title {
        font-size: clamp(2.2rem, 5vw, 3.2rem);
    }
    .fullscreen-section {
        min-height: auto;
        padding: 92px calc(5% + var(--safe-right)) 92px calc(5% + var(--safe-left));
    }
    #about { grid-template-columns: 1fr; }
    .about-image-col { height: 42vh; min-height: 300px; }
    .about-overlay { background: linear-gradient(0deg, var(--bg-darker), transparent); }
    .about-text-col { padding: 42px 5% 0; }
    .about-desc { font-size: 1rem; }
    .why-shell {
        grid-template-columns: 1fr;
        gap: 26px;
    }
    .why-intro .section-title,
    .why-lead {
        max-width: none;
    }
    .why-grid { grid-template-columns: 1fr; }
    .why-network-block {
        padding: 20px;
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .why-network-block .map-container {
        aspect-ratio: 95 / 62;
        min-height: 0;
    }
    .why-card { min-height: 0; padding: 28px; }
    .clients-carousel-head {
        flex-direction: column;
        align-items: flex-start;
    }
    .clients-summary {
        max-width: none;
    }
    .hero-stat-box { display: none; }
    .services-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        background: transparent;
        border: none;
    }
    .service-card {
        min-height: 0;
        padding: 36px 28px;
        border: 1px solid var(--border-color);
        border-radius: 22px;
    }
    .service-link {
        opacity: 1;
        transform: translateY(0);
    }
    .service-modal-dialog {
        padding: 34px 28px;
    }
    .service-modal-grid {
        grid-template-columns: 1fr;
    }
    .service-modal-panel-wide {
        grid-column: auto;
    }
    .contact-box {
        padding: 44px 28px;
    }
    .contact-info-flex {
        gap: 10px;
        margin-top: 36px;
    }
    .info-card {
        flex: 1 1 0;
        min-width: 0;
        padding: 12px 14px;
    }
    .map-container {
        margin-top: 8px !important;
    }
    .map-pin-label {
        font-size: 10px;
        padding: 7px 10px;
        letter-spacing: 0.5px;
    }
    footer {
        padding: 28px calc(5% + var(--safe-right)) calc(34px + var(--safe-bottom)) calc(5% + var(--safe-left));
    }
}
@media (max-width: 768px) {
    :root { --anchor-offset: 60px; }
    html { scroll-padding-top: calc(var(--anchor-offset) + var(--safe-top)); }
    header {
        padding: calc(14px + var(--safe-top)) calc(5% + var(--safe-right)) 14px calc(5% + var(--safe-left));
    }
    .logo-container {
        height: 42px;
        max-width: 170px;
    }
    #hero {
        padding: calc(124px + var(--safe-top)) calc(5% + var(--safe-right)) 72px calc(5% + var(--safe-left));
    }
    #hero .btn {
        width: 100%;
        justify-content: center;
        padding: 16px 22px;
        font-size: 12px;
    }
    .hero-title {
        font-size: clamp(2rem, 8.6vw, 2.8rem);
        line-height: 1.02;
    }
    .hero-desc {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 28px;
    }
    .section-header {
        margin-bottom: 42px;
    }
    .section-subtitle {
        font-size: 12px;
        letter-spacing: 2.4px;
    }
    .section-title {
        font-size: clamp(1.85rem, 8vw, 2.6rem);
    }
    .fullscreen-section {
        padding: 78px calc(5% + var(--safe-right)) 78px calc(5% + var(--safe-left));
    }
    .service-card {
        padding: 30px 22px;
    }
    .service-title {
        font-size: 1.2rem;
    }
    .service-text {
        font-size: 0.93rem;
        margin-bottom: 22px;
    }
    .service-modal {
        padding: calc(16px + var(--safe-top)) calc(16px + var(--safe-right)) calc(16px + var(--safe-bottom)) calc(16px + var(--safe-left));
    }
    .service-modal-dialog {
        padding: 26px 18px;
        border-radius: 22px;
        max-height: min(92vh, 920px);
    }
    .service-modal-top {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .service-modal-icon {
        width: 72px;
        height: 72px;
        border-radius: 18px;
        font-size: 1.8rem;
    }
    .service-modal-title {
        font-size: 1.65rem;
    }
    .service-modal-summary {
        font-size: 0.96rem;
        line-height: 1.75;
    }
    .service-modal-panel {
        padding: 20px;
    }
    .service-modal-footer {
        flex-direction: column;
        align-items: flex-start;
    }
    .service-modal-cta {
        width: 100%;
        justify-content: center;
    }
    .about-image-col {
        height: 32vh;
        min-height: 240px;
    }
    .about-text-col {
        padding: 34px 5% 0;
    }
    .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        margin-top: 26px;
        padding-top: 26px;
    }
    .stat-item {
        padding: 18px 12px;
        text-align: center;
    }
    .stat-item h4 {
        font-size: clamp(2rem, 9vw, 2.55rem);
        margin-bottom: 8px;
    }
    .stat-item p {
        font-size: 0.72rem;
        letter-spacing: 1px;
        line-height: 1.35;
    }
    .why-intro::before {
        top: -24px;
        left: -10px;
        width: 140px;
        height: 140px;
    }
    .why-lead {
        margin-top: 18px;
        font-size: 0.96rem;
        line-height: 1.72;
    }
    .why-card {
        padding: 24px;
        border-radius: 24px;
    }
    .why-network-block {
        padding: 18px;
        border-radius: 24px;
    }
    .why-network-header {
        margin-bottom: 0;
    }
    .why-network-desc {
        font-size: 0.92rem;
        line-height: 1.64;
    }
    .why-network-block .map-container {
        aspect-ratio: 95 / 62;
        min-height: 0;
        border-radius: 22px;
    }
    .why-card h3 {
        font-size: 1.18rem;
    }
    .clients-controls {
        width: 100%;
        justify-content: flex-end;
    }
    .client-card {
        flex-basis: 100%;
        min-height: 0;
        padding: 24px;
        border-radius: 24px;
    }
    .client-quote {
        font-size: 0.97rem;
        line-height: 1.8;
    }
    .map-container {
        margin-top: 0 !important;
        border-radius: 22px;
    }
    .map-pin-dot {
        width: 10px;
        height: 10px;
        box-shadow: 0 0 0 4px rgba(255, 102, 0, 0.14), 0 0 16px rgba(255, 102, 0, 0.32);
    }
    .map-pin-dot::after {
        width: 22px;
        height: 22px;
    }
    .map-pin:not(.map-pin-featured) .map-pin-label {
        display: none;
    }
    .map-pin-featured .map-pin-dot {
        width: 14px;
        height: 14px;
        border-width: 3px;
    }
    .map-pin-featured .map-pin-label {
        font-size: 8.5px;
        padding: 6px 8px;
        max-width: 98px;
        white-space: normal;
        line-height: 1.25;
        text-align: center;
    }
    .map-pin-bh {
        --pin-label-bottom: 42px;
        --pin-label-x: -70%;
        --pin-label-tail-x: 66%;
    }
    .map-pin-asu {
        --pin-label-bottom: 12px;
        --pin-label-x: -22%;
        --pin-label-tail-x: 34%;
        z-index: 5;
    }
    .contact-box {
        padding: 36px 20px;
        border-radius: 22px;
    }
    .contact-box .section-title {
        font-size: 2rem !important;
    }
    .contact-box > p {
        font-size: 0.98rem !important;
        margin-bottom: 28px !important;
    }
    .contact-info-flex {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
        margin-top: 28px;
    }
    .info-card {
        min-width: 0;
        min-height: 104px;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        text-align: center;
        gap: 10px;
        padding: 14px 10px;        
        white-space: normal;
    }
    .info-card i {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 1.50rem;
    }
    .info-card span {
        font-size: 0.76rem;
        letter-spacing: 0.1px;
        line-height: 1.45;
        overflow-wrap: anywhere;
        word-break: break-word;
    }
    footer {
        font-size: 13px;
    }
    footer p {
        line-height: 1.7;
    }
    .whatsapp-float {
        width: 58px;
        height: 58px;
        right: calc(18px + var(--safe-right));
        bottom: calc(18px + var(--safe-bottom));
        font-size: 28px;
    }
    .cursor-dot, .cursor-outline { display: none; } /* Disable custom cursor on mobile */
    body, a, button { cursor: auto; }
}
@media (max-width: 560px) {
    :root { --anchor-offset: 60px; }
    header {
        padding: calc(12px + var(--safe-top)) calc(4.5% + var(--safe-right)) 12px calc(4.5% + var(--safe-left));
    }
    .logo-container {
        height: 40px;
        max-width: 160px;
    }
    .mobile-nav-brand img {
        max-height: 38px;
    }
    .mobile-menu-toggle {
        width: 44px;
        height: 44px;
        border-radius: 14px;
    }
    .mobile-nav-panel {
        width: min(92vw, 360px);
        padding: calc(18px + var(--safe-top)) calc(16px + var(--safe-right)) calc(22px + var(--safe-bottom)) calc(16px + var(--safe-left));
    }
    #hero {
        padding: calc(118px + var(--safe-top)) calc(4.5% + var(--safe-right)) 64px calc(4.5% + var(--safe-left));
    }
    .hero-title {
        font-size: clamp(1.75rem, 9.4vw, 2.3rem);
    }
    .hero-desc {
        font-size: 0.9rem;
    }
    .fullscreen-section {
        padding: 72px calc(4.5% + var(--safe-right)) 72px calc(4.5% + var(--safe-left));
    }
    .service-card {
        padding: 28px 18px;
    }
    .service-modal {
        padding: calc(10px + var(--safe-top)) calc(10px + var(--safe-right)) calc(10px + var(--safe-bottom)) calc(10px + var(--safe-left));
    }
    .service-modal-dialog {
        padding: 22px 16px;
    }
    .service-modal-panel {
        padding: 18px;
    }
    .stats-grid {
        gap: 10px;
        margin-top: 22px;
        padding-top: 22px;
    }
    .stat-item {
        padding: 16px 10px;
    }
    .stat-item h4 {
        font-size: clamp(1.7rem, 9vw, 2.2rem);
    }
    .stat-item p {
        font-size: 0.66rem;
        letter-spacing: 0.85px;
    }
    .map-pin-bh {
        --pin-label-bottom: 44px;
        --pin-label-x: -76%;
        --pin-label-tail-x: 70%;
    }
    .map-pin-asu {
        --pin-label-bottom: 10px;
        --pin-label-x: -16%;
        --pin-label-tail-x: 32%;
    }
    .contact-box {
        padding: 32px 16px;
    }
    .contact-info-flex {
        grid-template-columns: 1fr;
        gap: 9px;
    }
    .info-card {
        min-height: 0;
        padding: 14px 12px;
        gap: 8px;
    }
    .info-card span {
        font-size: 0.84rem;
    }
    .clients-control {
        width: 44px;
        height: 44px;
    }
    .why-card,
    .client-card {
        padding: 22px 18px;
    }
    .btn-whatsapp {
        font-size: 12px;
    }
}
