/* ═══════════════════════════════════════════════════════════
   MD CONSULTORIA & PROJETOS — STYLESHEET
   ═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Sofia+Sans:ital,wght@0,400;0,450;0,500;0,700;1,500&display=swap');

/* ── VARIABLES ─────────────────────────────────────────── */
:root {
    --navy:        #0D1B3E;
    --navy-dark:   #141413;
    --navy-mid:    #262627;
    --orange:      #CF4500;
    --orange-dark: #9A3A0A;
    --orange-glow: rgba(207, 69, 0, 0.14);
    --light-orange:#F37338;
    --cream:       #F3F0EE;
    --cream-lift:  #FCFBFA;
    --ink:         #141413;
    --white:       #FFFFFF;
    --off-white:   #FCFBFA;
    --gray-light:  #F4F4F4;
    --gray:        #696969;
    --gray-dark:   #555555;
    --text:        #141413;
    --border:      rgba(20,20,19,.14);

    --font-head: 'Sofia Sans', 'Montserrat', Arial, sans-serif;
    --font-body: 'Sofia Sans', 'Inter', Arial, sans-serif;

    --radius-sm:  20px;
    --radius-md:  40px;
    --radius-lg:  99px;
    --radius-xl:  999px;

    --shadow-sm:  0 4px 24px rgba(0,0,0,.04);
    --shadow-md:  0 24px 48px rgba(0,0,0,.08);
    --shadow-lg:  0 32px 70px rgba(0,0,0,.10);
    --shadow-xl:  0 70px 110px rgba(0,0,0,.18);
    --shadow-orange: 0 18px 42px rgba(207,69,0,.16);

    --transition: 0.3s cubic-bezier(.4,0,.2,1);
    --transition-fast: 0.18s cubic-bezier(.4,0,.2,1);

    --container: 1280px;
    --nav-h: 96px;
}

/* ── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }
body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--text);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select {
    font-family: var(--font-body);
    font-size: 15px;
}

/* ── TYPOGRAPHY ─────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.05; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.6rem, 5.2vw, 4.75rem); font-weight: 500; }
h2 { font-size: clamp(2rem, 3.4vw, 3rem);   font-weight: 500; }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem);  font-weight: 500; }
h4 { font-size: 1rem; font-weight: 700; }

.text-orange { color: var(--orange); }

/* ── CONTAINER ──────────────────────────────────────────── */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* ── BUTTONS ────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 26px;
    border-radius: var(--radius-sm);
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.02em;
    transition: var(--transition);
    white-space: nowrap;
    cursor: pointer;
}
.btn-lg { padding: 16px 34px; font-size: 16px; border-radius: 24px; }
.btn-full { width: 100%; justify-content: center; }

.btn-primary {
    background: var(--orange);
    color: var(--white);
    border: 1.5px solid var(--orange);
    box-shadow: 0 16px 36px rgba(207,69,0,.22);
}
.btn-primary:hover {
    background: var(--orange-dark);
    border-color: var(--orange-dark);
    transform: translateY(-1px);
    box-shadow: 0 20px 44px rgba(207,69,0,.28);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
    background: rgba(255,255,255,.92);
    color: var(--ink);
    border: 1.5px solid var(--ink);
    backdrop-filter: blur(10px);
}
.btn-ghost:hover {
    background: var(--white);
    border-color: var(--ink);
    transform: translateY(-1px);
}

.btn-white {
    background: var(--white);
    color: var(--navy);
}
.btn-white:hover {
    background: var(--off-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline-orange {
    background: transparent;
    color: var(--orange);
    border: 2px solid var(--orange);
}
.btn-outline-orange:hover {
    background: var(--orange);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-orange);
}

.btn-arrow { transition: transform var(--transition-fast); }
.btn:hover .btn-arrow { transform: translateX(3px); }

/* ── SECTION HELPERS ────────────────────────────────────── */
.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: var(--orange-glow);
    color: var(--orange);
    border: 1px solid rgba(244,98,31,.25);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.section-tag-light {
    background: rgba(255,255,255,.12);
    color: var(--white);
    border-color: rgba(255,255,255,.2);
}
.section-title { margin-bottom: 20px; }
.section-title-light { color: var(--white); }
.section-sub {
    font-size: 1.05rem;
    color: var(--gray);
    max-width: 680px;
    margin: 0 auto;
}
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

/* ── ANIMATIONS ─────────────────────────────────────────── */
.reveal-up, .reveal-left, .reveal-right {
    opacity: 0;
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(.16,1,.3,1);
}
.reveal-up    { transform: translateY(40px); }
.reveal-left  { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }

.revealed {
    opacity: 1 !important;
    transform: none !important;
}

.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .24s; }
.delay-3 { transition-delay: .36s; }
.delay-4 { transition-delay: .48s; }

/* ═══════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════ */
.navbar {
    position: fixed;
    top: 24px;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    border-bottom: 1px solid transparent;
    box-shadow: none;
    backdrop-filter: none;
    transition: background var(--transition), box-shadow var(--transition), border-color var(--transition), padding var(--transition);
    --nav-bg: transparent;
}
.navbar::before {
    display: none;
}
.navbar.scrolled {
    background: transparent;
    border-bottom: 0;
    box-shadow: none;
    backdrop-filter: none;
    --nav-bg: var(--white);
}
.nav-container {
    max-width: min(1520px, calc(100vw - 48px));
    margin: 0 auto;
    padding: 0 28px 0 32px;
    height: 76px;
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 1;
    background: rgba(255,255,255,.94);
    border: 1px solid rgba(255,255,255,.72);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(18px) saturate(140%);
    transition: box-shadow var(--transition), transform var(--transition), background var(--transition);
}
.navbar.scrolled .nav-container {
    background: rgba(255,255,255,.96);
    box-shadow: 0 24px 48px rgba(0,0,0,.08), 0 4px 24px rgba(0,0,0,.04);
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    padding: 0;
    transition: transform var(--transition-fast), filter var(--transition-fast);
}
.nav-logo:hover {
    transform: translateY(-1px);
}
.navbar.scrolled .nav-logo {
    filter: drop-shadow(0 8px 14px rgba(8,18,36,.10));
}
.brand-logo-img {
    display: block;
    width: auto;
    height: 58px;
    max-width: 194px;
    object-fit: contain;
    filter: drop-shadow(0 10px 18px rgba(255,255,255,.26)) drop-shadow(0 5px 14px rgba(8,18,36,.18));
}
.navbar.scrolled .brand-logo-img {
    filter: none;
}
.logo-chain { width: 48px; height: 31px; }
.logo-text-group { display: flex; flex-direction: column; line-height: 1.1; }
.logo-md {
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 900;
    color: var(--white);
    letter-spacing: -0.02em;
}
.logo-tagline {
    font-family: var(--font-head);
    font-size: 9.5px;
    font-weight: 600;
    color: rgba(255,255,255,.6);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.navbar.scrolled .logo-tagline { color: rgba(255,255,255,.5); }

/* Nav Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    margin-left: auto;
    margin-right: auto;
}
.nav-link {
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 500;
    color: var(--ink);
    padding: 12px 0;
    border-radius: var(--radius-xl);
    transition: color var(--transition-fast), background var(--transition-fast);
    letter-spacing: 0.02em;
    position: relative;
}
.nav-link::after,
.nav-dropdown-btn::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 2px;
    width: 18px;
    height: 3px;
    border-radius: 999px;
    background: var(--orange);
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
    transition: transform var(--transition-fast), opacity var(--transition-fast);
    opacity: .9;
}
.nav-link:hover {
    color: var(--orange);
    background: transparent;
}
.nav-link:hover::after,
.nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}
.navbar.scrolled .nav-link {
    color: rgba(8,18,36,.72);
}
.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
    color: var(--orange);
    background: transparent;
}

.nav-cta {
    flex-shrink: 0;
    padding: 17px 34px;
    font-size: 16px;
    border-radius: var(--radius-xl);
    color: var(--white);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    margin-left: auto;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: var(--transition);
}
.navbar.scrolled .hamburger span { background: var(--navy); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
    display: none;
    max-width: min(1520px, calc(100vw - 48px));
    margin: 10px auto 0;
    background: rgba(255,255,255,.96);
    border: 1px solid rgba(20,20,19,.08);
    border-radius: 32px;
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: max-height 0.4s ease, padding 0.4s ease;
}
.mobile-menu.open { max-height: 500px; padding: 16px 24px 24px; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-link {
    display: block;
    padding: 12px 16px;
    color: var(--ink);
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 500;
    border-radius: var(--radius-xl);
    transition: color var(--transition-fast), background var(--transition-fast);
}
.mobile-link:hover { color: var(--ink); background: rgba(20,20,19,.06); }
.mobile-cta { width: 100%; justify-content: center; margin-top: 8px; }

/* ═══════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 112svh;
    margin: 0;
    display: flex;
    align-items: center;
    background-color: var(--navy-dark);
    background-image:
        linear-gradient(
            135deg,
            rgba(4, 9, 16, 0.78) 0%,
            rgba(10, 16, 24, 0.54) 42%,
            rgba(4, 9, 16, 0.20) 100%
        ),
        url('/addons/hero_.png');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    overflow: hidden;
    border-radius: 0;
    box-shadow: none;
}

/* Geometric accent */
.hero::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    left: 0;
    height: 150px;
    background:
        radial-gradient(ellipse at 18% 0%, rgba(255,255,255,.54) 0%, rgba(255,255,255,.24) 30%, rgba(255,255,255,.06) 58%, rgba(255,255,255,0) 82%),
        linear-gradient(180deg, rgba(255,255,255,.32) 0%, rgba(255,255,255,.13) 42%, rgba(255,255,255,0) 100%);
    backdrop-filter: blur(2px);
    -webkit-mask-image: linear-gradient(180deg, #000 0%, rgba(0,0,0,.74) 48%, rgba(0,0,0,.18) 78%, transparent 100%);
    mask-image: linear-gradient(180deg, #000 0%, rgba(0,0,0,.74) 48%, rgba(0,0,0,.18) 78%, transparent 100%);
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -1px; left: 0; right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--cream), transparent);
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 80% 50%, rgba(244,98,31,.06) 0%, transparent 60%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: calc(var(--nav-h) + 88px);
    padding-bottom: 120px;
    width: 100%;
    max-width: var(--container);
}
.hero .reveal-up {
    opacity: 1;
    transform: none;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: rgba(255,255,255,.78);
    margin-bottom: 28px;
}
.eyebrow-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--orange);
    animation: pulse 2.5s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: .6; transform: scale(1.3); }
}

.hero-headline {
    color: var(--white);
    margin-bottom: 24px;
    max-width: 760px;
    letter-spacing: -0.02em;
    text-shadow: 0 14px 42px rgba(0,0,0,.28);
}
.headline-accent {
    font-style: normal;
    color: var(--light-orange);
    position: relative;
}

.hero-sub {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    color: rgba(255,255,255,.82);
    max-width: 560px;
    line-height: 1.75;
    margin-bottom: 40px;
    text-shadow: 0 10px 30px rgba(0,0,0,.24);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 60px;
}

.hero-metrics {
    display: none;
    align-items: center;
    gap: 0;
    padding: 24px 34px;
    background: rgba(252,251,250,.70);
    border: 1px solid rgba(255,255,255,.38);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(18px) saturate(130%);
    width: fit-content;
    box-shadow: 0 24px 48px rgba(0,0,0,.08);
}
.metric-item {
    display: flex;
    flex-direction: column;
    padding: 0 32px;
}
.metric-item:first-child { padding-left: 0; }
.metric-item:last-child  { padding-right: 0; }
.metric-item strong {
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 500;
    color: var(--ink);
    line-height: 1;
    margin-bottom: 4px;
}
.metric-item span {
    font-size: 12px;
    color: rgba(20,20,19,.58);
    font-weight: 500;
    letter-spacing: 0.02em;
}
.metric-sep {
    width: 1px;
    height: 48px;
    background: rgba(20,20,19,.16);
}

/* Scroll cue */
.scroll-cue {
    display: none;
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}
.scroll-wheel {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255,255,255,.3);
    border-radius: 13px;
    position: relative;
    margin: 0 auto;
}
.scroll-wheel::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: rgba(255,255,255,.6);
    border-radius: 2px;
    animation: scroll-wheel 2s infinite;
}
@keyframes scroll-wheel {
    0%   { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(16px); }
}

/* ═══════════════════════════════════════════════════════════
   SECTORS BAR
   ═══════════════════════════════════════════════════════════ */
.sectors-bar {
    display: none;
    background: var(--navy);
    padding: 0;
    overflow: hidden;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.sectors-inner {
    display: flex;
    align-items: center;
    gap: 0;
}
.sectors-label {
    flex-shrink: 0;
    padding: 18px 28px;
    font-family: var(--font-head);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: var(--orange);
    border-right: 1px solid rgba(255,255,255,.08);
    background: rgba(0,0,0,.2);
    white-space: nowrap;
}
.sectors-track {
    overflow: hidden;
    flex: 1;
}
.sectors-slide {
    display: flex;
    gap: 0;
    width: max-content;
    animation: scroll-track 30s linear infinite;
}
.sectors-slide span {
    padding: 17px 28px;
    font-family: var(--font-head);
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,.55);
    letter-spacing: 0.04em;
    white-space: nowrap;
    border-right: 1px solid rgba(255,255,255,.06);
    transition: color var(--transition-fast);
}
.sectors-slide span:hover { color: var(--white); }
@keyframes scroll-track {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════════════════════ */
.about-section {
    padding: 120px 0;
    background: var(--cream);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Visual */
.about-visual { position: relative; }
.about-img-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/5;
    max-width: 480px;
}
.about-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.about-img-wrap:hover img { transform: scale(1.03); }
.about-img-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13,27,62,.7) 0%, transparent 50%);
    z-index: 1;
}
.about-img-card {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    color: var(--white);
}
.img-card-icon {
    width: 40px;
    height: 40px;
    background: var(--orange);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.img-card-icon svg { width: 20px; height: 20px; color: var(--white); }
.about-img-card strong { display: block; font-family: var(--font-head); font-size: 14px; font-weight: 700; }
.about-img-card span  { font-size: 12px; color: rgba(255,255,255,.7); }

.about-badge-stack {
    position: absolute;
    top: 32px;
    right: -24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.about-badge {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 12px 18px;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    min-width: 120px;
    text-align: center;
}
.about-badge .badge-flag { font-size: 18px; }
.about-badge span:last-child {
    font-family: var(--font-head);
    font-size: 10px;
    font-weight: 700;
    color: var(--gray);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.about-badge span:nth-child(1):not(.badge-flag) {
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 900;
    color: var(--navy);
}

/* Content */
.about-lead {
    font-size: 1.15rem;
    color: var(--text);
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.65;
}
.about-body {
    color: var(--gray);
    margin-bottom: 16px;
    line-height: 1.75;
}
.about-pillars {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 36px;
    padding-top: 36px;
    border-top: 1px solid var(--border);
}
.pillar-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.pillar-icon {
    width: 44px;
    height: 44px;
    background: var(--orange-glow);
    border: 1px solid rgba(244,98,31,.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.pillar-icon svg { width: 20px; height: 20px; color: var(--orange); }
.pillar-item strong { display: block; font-family: var(--font-head); font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.pillar-item span  { font-size: 13px; color: var(--gray); }

/* ═══════════════════════════════════════════════════════════
   STATS
   ═══════════════════════════════════════════════════════════ */
.stats-section {
    background: var(--navy);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.stats-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(244,98,31,.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(244,98,31,.05) 0%, transparent 60%);
}
.stats-grid {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}
.stat-item {
    flex: 1;
    text-align: center;
    padding: 20px 40px;
}
.stat-wrap {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 2px;
    margin-bottom: 10px;
}
.stat-number {
    font-family: var(--font-head);
    font-size: clamp(2.4rem, 4vw, 3.5rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1;
}
.stat-plus {
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--orange);
    line-height: 1.2;
}
.stat-label {
    font-size: 13px;
    color: rgba(255,255,255,.5);
    font-weight: 500;
    max-width: 140px;
    margin: 0 auto;
    line-height: 1.4;
}
.stat-divider {
    width: 1px;
    height: 80px;
    background: rgba(255,255,255,.1);
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════════════════════════ */
.services-section {
    padding: 120px 0;
    background: var(--cream-lift);
}

.services-grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr 1fr;
    gap: 24px;
    align-items: start;
}

/* All cards base */
.service-card {
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    position: relative;
    transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover { transform: translateY(-6px); }

/* Default card (white) */
.service-card:not(.service-featured) {
    background: var(--cream-lift);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}
.service-card:not(.service-featured):hover { box-shadow: var(--shadow-lg); }

/* Featured card */
.service-featured {
    background: var(--ink);
    color: var(--white);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}
.service-featured::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(243,115,56,.18) 0%, transparent 70%);
    pointer-events: none;
}
.service-featured::after {
    content: '';
    position: absolute;
    bottom: -40px; left: -40px;
    width: 150px; height: 150px;
    background: radial-gradient(circle, rgba(243,115,56,.10) 0%, transparent 70%);
    pointer-events: none;
}
.service-featured:hover { box-shadow: var(--shadow-xl); }

.feat-badge {
    display: inline-block;
    padding: 5px 14px;
    background: var(--orange);
    color: var(--white);
    border-radius: 100px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 28px;
}

/* Icons */
.service-icon-wrap {
    width: 60px;
    height: 60px;
    background: rgba(244,98,31,.15);
    border: 1px solid rgba(244,98,31,.3);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}
.service-icon-wrap svg { width: 28px; height: 28px; color: var(--orange); }
.service-icon-light {
    background: var(--orange-glow);
    border-color: rgba(244,98,31,.2);
}

.service-card h3 {
    margin-bottom: 14px;
    font-size: 1.25rem;
}
.service-featured h3 { color: var(--white); }

.service-card p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 24px;
}
.service-featured p { color: rgba(255,255,255,.7); }
.service-card:not(.service-featured) p { color: var(--gray); }

.service-checklist { margin-bottom: 28px; }
.service-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13.5px;
    line-height: 1.5;
    padding: 7px 0;
    border-bottom: 1px solid rgba(255,255,255,.07);
}
.service-checklist li:last-child { border-bottom: none; }
.service-checklist li svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; color: var(--orange); }
.service-featured .service-checklist li { color: rgba(255,255,255,.8); border-color: rgba(255,255,255,.07); }
.service-checklist-dark li { color: var(--gray-dark); border-color: var(--border); }
.service-checklist-dark li svg { color: var(--orange); }

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
}
.service-tags span {
    padding: 4px 12px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,.65);
    letter-spacing: 0.04em;
}

/* ═══════════════════════════════════════════════════════════
   WHY MD
   ═══════════════════════════════════════════════════════════ */
.why-section {
    background: var(--navy);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}
.why-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: .4;
}
.why-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}
.why-left .section-title { margin-bottom: 24px; }
.why-lead {
    font-size: 1.05rem;
    color: rgba(255,255,255,.65);
    line-height: 1.75;
    margin-bottom: 40px;
}
.why-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.why-card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.why-card:hover {
    background: rgba(255,255,255,.08);
    border-color: rgba(244,98,31,.3);
    transform: translateY(-4px);
}
.why-num {
    font-family: var(--font-head);
    font-size: 11px;
    font-weight: 800;
    color: var(--orange);
    letter-spacing: 0.1em;
    margin-bottom: 14px;
}
.why-card h3 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 10px;
    line-height: 1.3;
}
.why-card p { font-size: 13.5px; color: rgba(255,255,255,.55); line-height: 1.65; }
.why-card-body {}

/* ═══════════════════════════════════════════════════════════
   PROCESS
   ═══════════════════════════════════════════════════════════ */
.process-section {
    padding: 120px 0;
    background: var(--white);
}
.process-flow {
    display: flex;
    align-items: flex-start;
    gap: 0;
}
.process-step {
    flex: 1;
    text-align: center;
    padding: 0 24px;
}
.process-icon {
    width: 64px;
    height: 64px;
    background: var(--orange-glow);
    border: 1.5px solid rgba(244,98,31,.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    transition: background var(--transition), transform var(--transition);
}
.process-step:hover .process-icon {
    background: var(--orange);
    transform: scale(1.08);
}
.process-step:hover .process-icon svg { color: var(--white); }
.process-icon svg { width: 26px; height: 26px; color: var(--orange); transition: color var(--transition); }

.process-num {
    font-family: var(--font-head);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--orange);
    margin-bottom: 12px;
}
.process-step h3 { margin-bottom: 10px; font-size: 1.05rem; }
.process-step p  { font-size: 13.5px; color: var(--gray); line-height: 1.65; }

.process-connector {
    flex-shrink: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--orange), var(--border));
    margin-top: 31px;
    position: relative;
}
.process-connector::after {
    content: '›';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--border);
    font-size: 16px;
    line-height: 1;
}

/* ═══════════════════════════════════════════════════════════
   TEAM
   ═══════════════════════════════════════════════════════════ */
.team-section {
    padding: 120px 0;
    background: var(--gray-light);
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.team-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: transform var(--transition), box-shadow var(--transition);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.team-photo {
    aspect-ratio: 4/5;
    overflow: hidden;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform 0.6s ease; }
.team-card:hover .team-photo img { transform: scale(1.05); }

.team-photo-placeholder {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.team-photo-placeholder span {
    font-family: var(--font-head);
    font-size: 2.5rem;
    font-weight: 900;
    color: rgba(255,255,255,.3);
}

.team-content { padding: 28px; }
.team-content h3 { font-size: 1.1rem; margin-bottom: 4px; }
.team-role {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--orange);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.team-content p { font-size: 13.5px; color: var(--gray); line-height: 1.65; margin-bottom: 16px; }

.team-linkedin {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-head);
    font-size: 12px;
    font-weight: 700;
    color: var(--gray);
    transition: color var(--transition-fast);
}
.team-linkedin:hover { color: #0077B5; }

/* ═══════════════════════════════════════════════════════════
   CTA BAND
   ═══════════════════════════════════════════════════════════ */
.cta-band {
    position: relative;
    padding: 112px 0 128px;
    background: var(--ink);
    overflow: hidden;
}
.cta-band-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 28%, rgba(207,69,0,.26) 0%, rgba(207,69,0,.08) 28%, transparent 58%),
        linear-gradient(180deg, rgba(243,240,238,.03), transparent 42%);
    pointer-events: none;
}
.cta-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(243,240,238,.03), transparent 42%, rgba(207,69,0,.04));
    pointer-events: none;
}
.cta-band-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}
.cta-band-content { max-width: 640px; }
.cta-band-content h2 {
    font-size: clamp(2.1rem, 3.4vw, 3.2rem);
    color: var(--cream);
    margin-bottom: 24px;
    font-weight: 500;
    letter-spacing: -0.02em;
}
.cta-band-content p {
    font-size: 1.05rem;
    color: rgba(243,240,238,.68);
    margin-bottom: 40px;
    line-height: 1.55;
    font-weight: 450;
}
.cta-band-deco {
    width: clamp(180px, 22vw, 280px);
    height: clamp(180px, 22vw, 280px);
    border: 2px solid rgba(207,69,0,.38);
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
    background:
        radial-gradient(circle at 50% 50%, rgba(207,69,0,.62) 0 17%, transparent 18%),
        repeating-radial-gradient(circle at 50% 50%, transparent 0 40px, rgba(207,69,0,.34) 41px 42px, transparent 43px 66px);
    box-shadow: 0 0 100px rgba(207,69,0,.12);
}
.cta-band-deco::before {
    content: '';
    position: absolute;
    inset: 24px;
    border: 1px solid rgba(243,115,56,.24);
    border-radius: 50%;
}
.cta-band-deco::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 46%;
    height: 46%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(207,69,0,.30);
    border-radius: 50%;
}

/* ═══════════════════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════════════════ */
.contact-section {
    padding: 120px 0;
    background: var(--white);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: start;
}
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}
.contact-item:last-of-type { border-bottom: none; }
.contact-icon {
    width: 44px;
    height: 44px;
    background: var(--orange-glow);
    border: 1px solid rgba(244,98,31,.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-icon svg { width: 20px; height: 20px; color: var(--orange); }
.contact-item-text strong { display: block; font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 4px; letter-spacing: 0.02em; }
.contact-item-text a, .contact-item-text span { font-size: 14px; color: var(--gray); line-height: 1.5; }
.contact-item-text a:hover { color: var(--orange); }

.contact-social-row {
    display: flex;
    gap: 12px;
    margin-top: 28px;
}
.social-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 100px;
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 700;
    transition: var(--transition);
}
.pill-whatsapp {
    background: #25D366;
    color: var(--white);
}
.pill-whatsapp:hover { background: #1ebe5d; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,.4); }
.pill-linkedin {
    background: #0077B5;
    color: var(--white);
}
.pill-linkedin:hover { background: #006396; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,119,181,.4); }

/* Form */
.contact-form-wrap {
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 44px 40px;
}
.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}
.form-field label {
    font-family: var(--font-head);
    font-size: 12px;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.form-field input,
.form-field select,
.form-field textarea {
    padding: 13px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--white);
    color: var(--text);
    font-size: 14.5px;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    -webkit-appearance: none;
    appearance: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(244,98,31,.12);
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: #B0B8C4; }
.form-field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.form-field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 12px; color: var(--gray); text-align: center; margin-top: 12px; }
.form-success {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
    background: rgba(16,185,129,.1);
    border: 1px solid rgba(16,185,129,.3);
    border-radius: var(--radius-sm);
    color: #059669;
    font-weight: 600;
    font-size: 14px;
    margin-top: 16px;
}
.form-success svg { width: 20px; height: 20px; flex-shrink: 0; }

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.footer {
    background: var(--ink);
    padding: 112px 0 0;
    position: relative;
    overflow: hidden;
}
.footer::before {
    content: '';
    position: absolute;
    top: -160px;
    right: -120px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 50% 50%, rgba(207,69,0,.20) 0 12%, transparent 13%),
        repeating-radial-gradient(circle at 50% 50%, transparent 0 58px, rgba(207,69,0,.16) 59px 60px, transparent 61px 88px);
    pointer-events: none;
}
.footer-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 72px;
    padding-bottom: 72px;
    border-bottom: 1px solid rgba(243,240,238,.22);
}
.footer-brand .footer-logo {
    display: inline-flex;
    align-items: center;
    padding: 12px 18px;
    border-radius: var(--radius-xl);
    background: var(--white);
    border: 1px solid rgba(255,255,255,.72);
    box-shadow: 0 24px 48px rgba(0,0,0,.08);
    margin-bottom: 28px;
}
.footer-logo-img {
    display: block;
    width: auto;
    height: 58px;
    max-width: 196px;
    object-fit: contain;
}
.footer-brand p {
    font-size: 15px;
    color: rgba(243,240,238,.62);
    line-height: 1.55;
    margin-bottom: 18px;
    font-weight: 450;
}
.footer-since {
    font-size: 12px;
    color: rgba(243,240,238,.40);
    letter-spacing: 0.04em;
    display: block;
    margin-bottom: 24px;
}
.footer-social {
    display: flex;
    gap: 12px;
}
.footer-social a {
    width: 44px;
    height: 44px;
    background: rgba(243,240,238,.08);
    border: 1px solid rgba(243,240,238,.18);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.6);
    transition: var(--transition);
}
.footer-social a:hover { background: var(--orange); border-color: var(--orange); color: var(--white); transform: translateY(-2px); }

.footer-col h4 {
    font-family: var(--font-head);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(243,240,238,.46);
    margin-bottom: 24px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 13px; }
.footer-col li a, .footer-contact-list li {
    font-size: 14px;
    color: rgba(243,240,238,.64);
    transition: color var(--transition-fast);
    line-height: 1.5;
}
.footer-col li a:hover { color: var(--light-orange); }
.footer-contact-list li a:hover { color: var(--orange); }

.footer-bottom {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 32px 0 44px;
    font-size: 12.5px;
    color: rgba(243,240,238,.38);
}
.footer-credit {
    color: var(--orange);
    transition: color var(--transition-fast);
}
.footer-credit:hover { color: var(--orange-dark); }

/* ═══════════════════════════════════════════════════════════
   WHATSAPP FLOAT
   ═══════════════════════════════════════════════════════════ */
.wa-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    width: 58px;
    height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 8px 32px rgba(37,211,102,.45);
    transition: transform var(--transition), box-shadow var(--transition);
}
.wa-float:hover { transform: scale(1.08) translateY(-3px); box-shadow: 0 14px 48px rgba(37,211,102,.55); }
.wa-tooltip {
    position: absolute;
    right: 68px;
    background: var(--navy-dark);
    color: var(--white);
    padding: 7px 14px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(8px);
    transition: opacity var(--transition), transform var(--transition);
    pointer-events: none;
}
.wa-float:hover .wa-tooltip { opacity: 1; transform: translateX(0); }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */

/* ── Tablet (≤ 1100px) ─── */
@media (max-width: 1100px) {
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 640px;
        margin: 0 auto;
    }
    .service-featured { order: -1; }

    .why-grid { grid-template-columns: 1fr; gap: 48px; }
    .why-right { grid-template-columns: 1fr 1fr; }

    .about-grid { grid-template-columns: 1fr; gap: 60px; }
    .about-visual { order: -1; max-width: 440px; }
    .about-badge-stack { top: auto; right: -16px; bottom: -20px; flex-direction: row; }

    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

/* ── Tablet Small (≤ 880px) ─── */
@media (max-width: 880px) {
    .nav-links, .nav-cta { display: none; }
    .hamburger { display: flex; }
    .mobile-menu { display: block; }
    .navbar { top: 16px; }
    .nav-container { gap: 18px; height: 68px; max-width: calc(100vw - 28px); padding: 0 18px 0 22px; }
    .brand-logo-img { height: 48px; max-width: 160px; }
    .nav-logo { padding: 7px 0; }
    .mobile-menu { max-width: calc(100vw - 28px); }

    .hero-metrics { flex-direction: column; gap: 20px; padding: 24px; }
    .metric-sep { width: 100%; height: 1px; }

    .stats-grid { flex-wrap: wrap; }
    .stat-item { flex: 0 0 calc(50% - 1px); }
    .stat-divider { display: none; }

    .process-flow { flex-direction: column; align-items: center; gap: 24px; }
    .process-connector { width: 2px; height: 40px; background: linear-gradient(180deg, var(--orange), var(--border)); margin: 0; }
    .process-connector::after { display: none; }
    .process-step { width: 100%; max-width: 400px; }

    .team-grid { grid-template-columns: repeat(2, 1fr); }

    .cta-band-inner { flex-direction: column; text-align: center; }
    .cta-band-deco { display: none; }

    .contact-grid { grid-template-columns: 1fr; gap: 48px; }
    .form-row-2 { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
}

/* ── Mobile (≤ 880px) — parallax fix for iOS Safari ── */
@media (max-width: 880px) {
    .hero { background-attachment: scroll; margin: 0; border-radius: 0; min-height: 100svh; }
}

/* ── Mobile (≤ 600px) ─── */
@media (max-width: 600px) {
    :root { --nav-h: 68px; }

    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.75rem; }
    .nav-container { padding: 0 16px; }
    .brand-logo-img { height: 42px; max-width: 140px; }
    .nav-logo { padding: 6px 0; }
    .footer-logo-img { height: 46px; max-width: 152px; }

    .hero-content { padding-bottom: 80px; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .hero-metrics { width: 100%; }
    .metric-item { flex-direction: row; justify-content: space-between; align-items: center; }
    .metric-item strong { font-size: 1.5rem; }

    .about-section, .services-section, .why-section,
    .process-section, .team-section, .contact-section { padding: 80px 0; }

    .stat-item { flex: 0 0 100%; }

    .why-right { grid-template-columns: 1fr; }

    .team-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }

    .contact-form-wrap { padding: 28px 24px; }

    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

    .about-badge-stack { display: none; }
    .sections-bar .sectors-label { display: none; }
}

/* ═══════════════════════════════════════════════════════════
   MULTIPAGE — NAV DROPDOWN
   ═══════════════════════════════════════════════════════════ */
.has-dropdown { position: relative; }

.nav-dropdown-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 0;
    background: none;
    border: none;
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 500;
    color: var(--ink);
    cursor: pointer;
    border-radius: var(--radius-xl);
    transition: color var(--transition-fast), background var(--transition-fast);
    letter-spacing: 0.02em;
    white-space: nowrap;
    position: relative;
}
.nav-dropdown-btn:hover { color: var(--orange); background: transparent; }
.nav-dropdown-btn:hover::after,
.nav-dropdown-btn.active::after,
.has-dropdown.open .nav-dropdown-btn::after,
.has-dropdown:hover .nav-dropdown-btn::after {
    transform: translateX(-50%) scaleX(1);
}
.nav-dropdown-btn.active { color: var(--orange); }
.navbar.scrolled .nav-dropdown-btn { color: rgba(8,18,36,.72); }
.navbar.scrolled .nav-dropdown-btn:hover,
.navbar.scrolled .nav-dropdown-btn.active {
    color: var(--orange);
    background: transparent;
}

.nav-caret { width: 10px; height: 6px; flex-shrink: 0; transition: transform var(--transition); }
.has-dropdown.open .nav-caret { transform: rotate(180deg); }

.dropdown {
    position: absolute;
    top: calc(100% + 18px);
    left: 50%;
    transform: translateX(-50%) translateY(8px) scale(.98);
    background: rgba(255,255,255,.96);
    border-radius: 28px;
    box-shadow: 0 26px 58px rgba(20,20,19,.14), 0 4px 18px rgba(20,20,19,.06);
    min-width: 390px;
    padding: 14px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .24s ease, transform .24s cubic-bezier(.16,1,.3,1), visibility .24s;
    z-index: 200;
    border: 1px solid rgba(20,20,19,.08);
    backdrop-filter: blur(18px) saturate(140%);
}
.dropdown::before {
    content: '';
    position: absolute;
    top: -7px;
    left: 50%;
    width: 18px;
    height: 18px;
    background: rgba(255,255,255,.96);
    border-left: 1px solid rgba(20,20,19,.08);
    border-top: 1px solid rgba(20,20,19,.08);
    transform: translateX(-50%) rotate(45deg);
}
.dropdown::after {
    content: '';
    position: absolute;
    top: 0;
    left: 28px;
    right: 28px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, var(--orange), var(--light-orange), transparent);
    opacity: .85;
}
.has-dropdown.open .dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0) scale(1);
}

.dropdown-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 18px 20px;
    border-radius: 22px;
    color: var(--text);
    transition: background var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
    border: 1px solid transparent;
    margin-bottom: 6px;
}
.dropdown-item:last-child { margin-bottom: 0; }
.dropdown-item:hover {
    background: rgba(207,69,0,.08);
    border-color: rgba(207,69,0,.22);
    transform: translateX(2px);
}
.dropdown-item.active {
    background: rgba(207,69,0,.10);
    border-color: rgba(207,69,0,.24);
}
.di-label {
    font-size: 9px;
    font-weight: 800;
    color: var(--orange);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 2px;
}
.dropdown-item strong {
    font-size: 16px;
    font-family: var(--font-head);
    font-weight: 500;
    color: var(--ink);
    display: block;
}
.dropdown-item span { font-size: 14px; color: var(--gray); line-height: 1.45; }

.dropdown-featured {
    background: linear-gradient(135deg, rgba(207,69,0,.13), rgba(243,115,56,.08));
    border-color: rgba(207,69,0,.22);
}
.dropdown-featured:hover { background: linear-gradient(135deg, rgba(207,69,0,.18), rgba(243,115,56,.12)); border-color: rgba(207,69,0,.36); }
.dropdown-featured strong { color: var(--orange); }

/* Mobile services sub-menu */
.mobile-services-section { padding: 4px 0; }
.mobile-services-label {
    padding: 10px 16px 6px;
    font-family: var(--font-head);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,.35);
    text-transform: uppercase;
}
.mobile-sub {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-left: 12px;
    border-left: 2px solid rgba(244,98,31,.3);
    margin: 4px 16px;
}
.mobile-link-featured { color: var(--orange) !important; }

/* ── PAGE HERO ────────────────────────────────────────── */
.page-hero {
    padding-top: calc(var(--nav-h) + 64px);
    padding-bottom: 80px;
    position: relative;
    background-color: var(--navy-dark);
    background-size: cover;
    background-position: center;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(8,18,36,.95) 0%, rgba(13,27,62,.80) 60%, rgba(8,18,36,.65) 100%);
}
.page-hero::after {
    content: '';
    position: absolute;
    bottom: -1px; left: 0; right: 0;
    height: 80px;
    background: linear-gradient(to top, var(--ph-next, #fff), transparent);
}
.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
}
.page-hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-head);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,.45);
    margin-bottom: 16px;
}
.page-hero-eyebrow .eyebrow-dot { width: 6px; height: 6px; }
.page-hero h1 { color: var(--white); margin-bottom: 18px; }
.page-hero .ph-desc {
    font-size: 1.05rem;
    color: rgba(255,255,255,.65);
    line-height: 1.75;
    margin-bottom: 32px;
    max-width: 560px;
}
.page-hero .hero-actions { margin-bottom: 0; }

/* ── BREADCRUMB ───────────────────────────────────────── */
.breadcrumb-wrap {
    background: var(--off-white);
    border-bottom: 1px solid var(--border);
}
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 0;
    font-size: 13px;
    color: var(--gray);
}
.breadcrumb a { color: var(--orange); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb-sep { color: var(--border); font-size: 16px; }
.breadcrumb-current { color: var(--gray-dark); font-weight: 500; }

/* ── INNER PAGE SECTIONS ──────────────────────────────── */
.section-white { padding: 100px 0; background: var(--cream); }
.section-gray  { padding: 100px 0; background: var(--cream-lift); }
.section-navy  { padding: 100px 0; background: var(--navy); }

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start;
}
.col-text p { color: var(--gray); margin-bottom: 16px; line-height: 1.75; font-size: 15.5px; }
.col-text h2 { margin-bottom: 18px; }
.col-text h3 { margin-bottom: 12px; }
.col-text .section-tag { margin-bottom: 16px; }

/* ── FEATURE LIST ─────────────────────────────────────── */
.feature-list,
.fi-list { display: flex; flex-direction: column; gap: 14px; margin: 28px 0; }
.fi {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 20px;
    background: var(--white);
    border: 1px solid var(--border);
    border-left: 3px solid var(--orange);
    border-radius: var(--radius-sm);
    transition: box-shadow var(--transition);
}
.fi:hover { box-shadow: var(--shadow-md); }
.fi-icon {
    width: 36px; height: 36px;
    background: var(--orange-glow);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.fi-icon svg { width: 18px; height: 18px; color: var(--orange); }
.fi-body strong { display: block; font-size: 14px; font-family: var(--font-head); font-weight: 700; margin-bottom: 3px; }
.fi-body span,
.fi-body p { font-size: 13px; color: var(--gray); line-height: 1.5; margin: 0; }

/* ── BENEFIT GRID ─────────────────────────────────────── */
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.bc {
    text-align: center;
    padding: 32px 20px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: transform var(--transition), box-shadow var(--transition);
}
.bc:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.bc-icon {
    width: 56px; height: 56px;
    background: var(--orange-glow);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px;
}
.bc-icon svg { width: 24px; height: 24px; color: var(--orange); }
.bc h3 { font-size: 1rem; margin-bottom: 10px; }
.bc p { font-size: 13.5px; color: var(--gray); line-height: 1.6; }

/* ── FAQ ──────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--white);
}
.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    text-align: left;
    font-family: var(--font-head);
    font-size: 14.5px;
    font-weight: 700;
    color: var(--navy);
    cursor: pointer;
    transition: background var(--transition-fast);
    background: none;
    border: none;
}
.faq-q:hover { background: var(--gray-light); }
.faq-plus {
    width: 26px; height: 26px;
    background: var(--orange-glow);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    font-size: 18px;
    color: var(--orange);
    font-weight: 400;
    transition: transform var(--transition), background var(--transition), color var(--transition);
    line-height: 1;
}
.faq-item.open .faq-plus { transform: rotate(45deg); background: var(--orange); color: var(--white); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-item.open .faq-a { max-height: 500px; }
.faq-a-inner { padding: 0 24px 24px; font-size: 14.5px; color: var(--gray); line-height: 1.75; }

/* ── TOOLS ────────────────────────────────────────────── */
.tools-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.tool-card {
    padding: 24px 16px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    text-align: center;
    transition: border-color var(--transition), transform var(--transition);
}
.tool-card:hover { border-color: var(--orange); transform: translateY(-3px); }
.tool-card strong { display: block; font-family: var(--font-head); font-size: 16px; font-weight: 900; color: var(--navy); margin-bottom: 6px; }
.tool-card span { font-size: 12px; color: var(--gray); }

/* ── HIGHLIGHT BOX ────────────────────────────────────── */
.hl-box {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    border-radius: var(--radius-lg);
    padding: 48px 44px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.hl-box::before {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 180px; height: 180px;
    background: radial-gradient(circle, rgba(244,98,31,.22), transparent 70%);
}
.hl-box h3 { color: var(--white); font-size: 1.5rem; margin-bottom: 14px; position: relative; }
.hl-box p  { color: rgba(255,255,255,.7); line-height: 1.75; margin-bottom: 28px; position: relative; }

/* ── HOME SERVICES ORBITS ─────────────────────────────── */
.home-services {
    position: relative;
    padding: 112px 0 132px;
    background:
        radial-gradient(circle at 14% 18%, rgba(255,255,255,.75), transparent 26%),
        var(--cream);
    overflow: hidden;
}
.home-services::before {
    content: 'SOLUÇÕES';
    position: absolute;
    left: max(24px, calc((100vw - 1280px) / 2));
    top: 56px;
    color: rgba(209, 205, 199, .34);
    font-family: var(--font-head);
    font-size: clamp(58px, 9vw, 128px);
    font-weight: 500;
    letter-spacing: -0.04em;
    line-height: .9;
    pointer-events: none;
}
.home-services::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 330px;
    width: min(1120px, 92vw);
    height: 320px;
    transform: translateX(-50%) rotate(-2deg);
    border-top: 1.5px solid rgba(243, 115, 56, .48);
    border-radius: 50%;
    pointer-events: none;
}
.home-services .container { position: relative; z-index: 1; }
.hsg {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(30px, 4vw, 64px);
    align-items: start;
    margin-top: 44px;
}
.hsc {
    position: relative;
    background: transparent;
    border: 0;
    box-shadow: none;
    overflow: visible;
    transition: transform var(--transition);
}
.hsc:hover { transform: translateY(-8px); }
.hsc-img {
    width: min(100%, 330px);
    height: auto;
    aspect-ratio: 1;
    margin: 0 auto 34px;
    border-radius: 50%;
    background: var(--cream-lift);
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(20,20,19,.08);
    box-shadow: rgba(0,0,0,.08) 0 24px 48px 0;
}
.hsc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .75s ease, filter .75s ease;
}
.hsc:hover .hsc-img img {
    transform: scale(1.055);
    filter: saturate(1.04) contrast(1.02);
}
.hsc-img-ov {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 72% 70%, rgba(243,115,56,.16), transparent 34%),
        linear-gradient(to top, rgba(20,20,19,.26), transparent 54%);
}
.hsc-body {
    padding: 0 14px;
    color: var(--ink);
}
.hsc-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 18px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: var(--gray);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.hsc-tag::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--light-orange, #F37338);
    box-shadow: 0 0 0 7px rgba(243,115,56,.12);
}
.hsc-tag-std,
.hsc-tag-prio {
    background: transparent;
    color: var(--orange);
}
.hsc-body h3 {
    max-width: 340px;
    font-size: clamp(22px, 2vw, 26px);
    font-weight: 500;
    line-height: 1.16;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin-bottom: 14px;
}
.hsc-body p {
    max-width: 360px;
    font-size: 15.5px;
    font-weight: 450;
    color: var(--gray);
    line-height: 1.55;
    margin-bottom: 22px;
}
.hsc-list {
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin: 0;
}
.hsc-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13.5px;
    line-height: 1.45;
    color: var(--gray-dark);
}
.hsc-list li::before {
    content: '→';
    color: var(--orange);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: -1px;
}
.hsc .btn {
    position: absolute;
    top: 268px;
    right: calc(50% - 164px);
    width: 58px;
    height: 58px;
    min-width: 58px;
    padding: 0;
    border-radius: 50%;
    font-size: 0;
    line-height: 1;
    color: var(--ink);
    background: var(--white);
    border: 1px solid rgba(20,20,19,.11);
    box-shadow: rgba(0,0,0,.10) 0 18px 34px;
}
.hsc .btn::after {
    content: '→';
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    font-size: 24px;
    font-weight: 500;
    color: var(--ink);
}
.hsc .btn:hover {
    transform: translate(4px, -4px);
    background: var(--orange);
    border-color: var(--orange);
}
.hsc .btn:hover::after { color: var(--white); }

/* ── HOME ABOUT STRIP ─────────────────────────────────── */
.home-about { padding: 100px 0; background: var(--cream-lift); }
.ha-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.ha-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/5;
    position: relative;
}
.ha-img img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.ha-img::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(13,27,62,.4) 0%, transparent 60%);
    z-index: 1;
}
.ha-cred {
    position: absolute;
    bottom: 20px; left: 20px; right: 20px;
    z-index: 2;
    display: flex;
    gap: 12px;
}
.ha-badge {
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    color: var(--white);
    text-align: center;
    flex: 1;
}
.ha-badge strong { display: block; font-family: var(--font-head); font-size: 22px; font-weight: 900; color: var(--orange); }
.ha-badge span { font-size: 11px; color: rgba(255,255,255,.7); }

/* ── CONTACT PAGE ─────────────────────────────────────── */
.contact-page-hero { --ph-next: #fff; }

/* ── RESPONSIVE — MULTIPAGE ───────────────────────────── */
@media (max-width: 1100px) {
    .benefit-grid { grid-template-columns: repeat(2, 1fr); }
    .tools-grid { grid-template-columns: repeat(2, 1fr); }
    .hsg { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .hsc:nth-child(2),
    .hsc:nth-child(3) { margin-top: 0; }
    .hsc:nth-child(3) { grid-column: 1 / -1; max-width: 420px; justify-self: center; }
    .two-col { grid-template-columns: 1fr; gap: 48px; }
    .ha-grid { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 900px) {
    .has-dropdown { position: static; }
    .dropdown { display: none !important; }
}
@media (max-width: 768px) {
    .benefit-grid { grid-template-columns: 1fr; }
    .home-services { padding: 82px 0 92px; }
    .home-services::before { top: 38px; font-size: 56px; }
    .home-services::after { display: none; }
    .hsg { grid-template-columns: 1fr; max-width: 420px; margin: 36px auto 0; gap: 58px; }
    .hsc:nth-child(3) { grid-column: auto; max-width: none; justify-self: stretch; }
    .hsc-img { width: min(100%, 278px); margin-bottom: 30px; }
    .hsc .btn {
        top: 222px;
        right: calc(50% - 138px);
        width: 54px;
        height: 54px;
        min-width: 54px;
    }
    .hsc-body { padding: 0 6px; }
    .page-hero { padding-bottom: 50px; }
    .section-white, .section-gray, .section-navy { padding: 72px 0; }
}
@media (max-width: 600px) {
    .tools-grid { grid-template-columns: repeat(2, 1fr); }
    .hl-box { padding: 32px 24px; }
    .ha-cred { flex-direction: column; }
}
