@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/* =====================
   DESIGN SYSTEM — VEX LEGAL
   ===================== */
:root {
    /* Brand Colors */
    --azul-marinho:   #1e3a65;
    --azul-petroleo:  #13243d;
    --champanhe:      #c4b694;
    --alabastro:      #f1edea;
    --grafite:        #3a3a3a;
    --po-de-estrela:  #d9d4c8;

    /* Funcionais */
    --branco:         #ffffff;
    --champanhe-dark: #a8996e;
    --champanhe-light:#e0d9c8;
    --whatsapp:       #25d366;

    /* Tipografia */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body:    'Plus Jakarta Sans', system-ui, sans-serif;

    /* Espaçamento */
    --section-pad:    clamp(5rem, 10vw, 8rem);
    --container-max:  1140px;
    --container-pad:  clamp(1.5rem, 5vw, 3rem);

    /* Bordas */
    --radius-sm:  6px;
    --radius-md:  12px;
    --radius-lg:  20px;
    --radius-xl:  32px;
    --radius-pill:50px;

    /* Sombras */
    --shadow-sm:  0 2px 8px rgba(19,36,61,0.08);
    --shadow-md:  0 8px 30px rgba(19,36,61,0.12);
    --shadow-lg:  0 20px 60px rgba(19,36,61,0.18);

    /* Transições */
    --fast:   0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);

    --nav-height: 84px;

    /* Dark base */
    --ink:            #0c1524;
    /* Hairlines */
    --hairline:       rgba(196,182,148,0.22);
    --hairline-dark:  rgba(30,58,101,0.14);
}

/* =====================
   RESET
   ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; scroll-padding-top: calc(var(--nav-height) + 12px); }
::selection { background: var(--champanhe); color: var(--ink); }
:focus-visible { outline: 2px solid var(--champanhe); outline-offset: 3px; }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; } }
body {
    font-family: var(--font-body);
    color: var(--grafite);
    background-color: var(--branco);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { background: none; border: none; cursor: pointer; font-family: var(--font-body); }
address { font-style: normal; }

/* =====================
   TIPOGRAFIA
   ===================== */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    line-height: 1.2;
    color: var(--azul-marinho);
}
h1 { font-size: clamp(3rem, 4vw, 3.5rem); font-weight: 800; } /* 48–56px */
h2 { font-size: clamp(2.25rem, 3vw, 2.625rem); font-weight: 700; } /* 36–42px */
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p  { font-size: 1rem; line-height: 1.8; }

/* =====================
   UTILIDADES
   ===================== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-pad);
}

.section { padding: var(--section-pad) 0; }

.section--dark {
    background-color: var(--ink);
    color: var(--po-de-estrela);
}
.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 { color: var(--branco); }
.section--dark p   { color: var(--po-de-estrela); }
.section--dark .kicker { color: var(--champanhe); }

.section--alabastro { background-color: var(--alabastro); }

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 4rem;
}
.section-header h2 { margin-bottom: 1rem; }
.section-header p { font-size: 1.05rem; color: var(--grafite); opacity: 0.75; }
.section--dark .section-header p { color: var(--po-de-estrela); opacity: 0.9; }

/* Kicker */
.kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--champanhe-dark);
    margin-bottom: 1.25rem;
}
.kicker::before,
.kicker::after {
    content: '';
    width: 2rem;
    height: 1px;
    background-color: var(--champanhe);
    flex-shrink: 0;
}
.kicker--light { color: var(--champanhe); }
.kicker--light::before,
.kicker--light::after { background-color: var(--champanhe); opacity: 0.5; }

/* =====================
   BOTÕES
   ===================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: var(--radius-pill);
    border: 2px solid transparent;
    transition: var(--fast);
    cursor: pointer;
    white-space: nowrap;
}
.btn-lg { padding: 1.1rem 2.8rem; font-size: 0.88rem; }

.btn-primary {
    background-color: var(--azul-marinho);
    color: var(--branco);
    border-color: var(--azul-marinho);
}
.btn-primary:hover {
    background-color: var(--azul-petroleo);
    border-color: var(--azul-petroleo);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-champanhe {
    background-color: var(--champanhe);
    color: var(--azul-petroleo);
    border-color: var(--champanhe);
    font-weight: 800;
}
.btn-champanhe:hover {
    background-color: var(--champanhe-dark);
    border-color: var(--champanhe-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(196,182,148,0.45);
}

.btn-outline {
    background-color: transparent;
    color: var(--po-de-estrela);
    border-color: rgba(196,182,148,0.35);
}
.btn-outline:hover {
    border-color: var(--champanhe);
    color: var(--champanhe);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background-color: var(--whatsapp);
    color: var(--branco);
    border-color: var(--whatsapp);
}
.btn-whatsapp:hover {
    background-color: #1da851;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(37,211,102,0.35);
}

/* =====================
   HEADER / NAV
   ===================== */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--nav-height);
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(12, 21, 36, 0.62), rgba(12, 21, 36, 0));
    transition: background-color 0.45s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.45s cubic-bezier(0.4, 0, 0.2, 1),
                backdrop-filter 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.header.scrolled {
    background: rgba(12, 21, 36, 0.94);
    backdrop-filter: blur(16px) saturate(1.4);
    -webkit-backdrop-filter: blur(16px) saturate(1.4);
    box-shadow: inset 0 -1px 0 rgba(196, 182, 148, 0.22),
                0 4px 24px rgba(12, 21, 36, 0.25);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-pad);
    height: 100%;
    display: flex;
    align-items: center;
    gap: 2rem;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    transition: opacity var(--fast);
}
.logo:hover { opacity: 0.85; }

.logo-img {
    height: 88px;
    width: auto;
    display: block;
}

.footer .logo-img {
    height: 46px;
}

/* Nav menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 0;
    flex: 1;
    justify-content: center;
}

.nav-link {
    position: relative;
    font-size: 0.79rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--po-de-estrela);
    padding: 0.5rem 0.75rem;
    white-space: nowrap;
    transition: color 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-link::after {
    content: '';
    position: absolute;
    left: 0.75rem; right: 0.75rem; bottom: 0.15rem;
    height: 1px;
    background-color: var(--champanhe);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-link:hover { color: var(--champanhe); }
.nav-link:hover::after { transform: scaleX(1); }

.nav-cta {
    flex-shrink: 0;
    font-size: 0.76rem;
    padding: 0.6rem 1.3rem;
}

/* Seletor de idioma */
.lang-switcher {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    border: 1px solid rgba(196, 182, 148, 0.22);
    border-radius: 100px;
    padding: 3px;
    gap: 1px;
}
.lang-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1;
    padding: 6px 9px;
    border-radius: 100px;
    color: var(--po-de-estrela);
    opacity: 0.55;
    transition: opacity 0.22s, background-color 0.22s, color 0.22s;
}
.lang-btn:hover { opacity: 0.95; }
.lang-btn.active {
    opacity: 1;
    background-color: var(--champanhe);
    color: #0c1524;
}

/* Hamburguer */
.mobile-menu-btn {
    display: none !important;
}
.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--branco);
    border-radius: 2px;
    transition: var(--fast);
    transform-origin: center;
}
.mobile-menu-btn.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.mobile-menu-btn.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

#nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background-color: rgba(10, 20, 40, 0.75);
    backdrop-filter: blur(4px);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--smooth);
}
#nav-overlay.active { opacity: 1; pointer-events: auto; }

/* =====================
   HERO
   ===================== */
/* ── HERO ── */
.hero {
    position: relative;
    width: 100%;
    max-width: 2560px;
    margin: 0 auto;
    background: var(--ink);
    overflow: hidden;
    aspect-ratio: 2006 / 784;
    min-height: 560px;
}

.hero-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
    display: block;
    filter: brightness(1.1);
}

/* Gradiente 70/30 — escuro cobre 70%, foto aparece nos 30% direitos */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        #0d1520          0%,
        #0d1520          38%,
        rgba(13,21,32,0.72) 56%,
        rgba(13,21,32,0.18) 72%,
        rgba(13,21,32,0)    82%
    );
    z-index: 1;
    pointer-events: none;
}

/* Texto: coluna esquerda */
.hero-text {
    position: absolute;
    left: 8%;
    top: 0;
    bottom: 0;
    padding-top: calc(var(--nav-height) + 4rem);
    padding-bottom: 2rem;
    max-width: clamp(300px, 34vw, 540px);
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Kicker — 10% (acento dourado, discreto) */
.hero-kicker {
    display: inline-block;
    font-family: var(--font-body);
    font-size: clamp(0.58rem, 0.62vw, 0.68rem);
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--champanhe);
    margin-bottom: clamp(0.6rem, 1vw, 1.1rem);
}

/* H1 — 70% do peso visual */
.hero h1 {
    font-size: clamp(1.5rem, 2.4vw, 3rem);
    line-height: 1.12;
    letter-spacing: -0.02em;
    font-weight: 700;
    color: var(--branco);
    margin-bottom: clamp(0.5rem, 0.7vw, 0.8rem);
}

/* Parágrafo — 30% (suporte ao H1, claramente menor) */
.hero-sub {
    font-size: clamp(0.65rem, 0.72vw, 0.76rem);
    line-height: 1.55;
    max-width: 38ch;
    color: var(--po-de-estrela);
    opacity: 0.85;
    margin-bottom: clamp(1.5rem, 2.2vw, 2.5rem); /* maior — separa do CTA */
}

/* CTAs lado a lado */
.hero-ctas {
    display: flex;
    align-items: center;
    gap: clamp(1rem, 1.5vw, 2rem);
    flex-wrap: nowrap;
}

/* Botão secundário como link discreto */
.hero-cta-link {
    font-family: var(--font-body);
    font-size: clamp(0.78rem, 0.85vw, 0.9rem);
    font-weight: 500;
    color: var(--po-de-estrela);
    text-decoration: none;
    opacity: 0.65;
    white-space: nowrap;
    transition: opacity 0.2s;
}
.hero-cta-link:hover { opacity: 1; }

/* Botão hero — gradiente animado + glint */
.hero-ctas .btn-champanhe {
    background: linear-gradient(90deg,
        #c4b694, #e2d4a8, #a89870,
        #d4c5a0, #c4b694, #e2d4a8,
        #a89870, #c4b694);
    background-size: 800% 800%;
    animation: heroGradient 10s ease infinite;
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(196,182,148,0.4);
    transition: filter 0.3s, box-shadow 0.3s, transform 0.3s;
}
@keyframes heroGradient {
    0%   { background-position: 0% 51%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 51%; }
}
.hero-ctas .btn-champanhe:hover {
    filter: brightness(1.12);
    box-shadow: 0 12px 36px rgba(196,182,148,0.6);
    transform: translateY(-2px) scale(1.01);
}
.hero-ctas .btn-champanhe::before {
    content: "";
    position: absolute;
    top: 0;
    left: -20%;
    width: 80px;
    height: 100%;
    background: #fff;
    box-shadow: 0 0 28px 18px rgba(255,255,255,0.55);
    transform: skewX(-20deg);
    mix-blend-mode: soft-light;
    pointer-events: none;
    animation: heroGlint 3s linear infinite;
    opacity: 0;
}
@keyframes heroGlint {
    0%   { left: -20%; opacity: 0; }
    15%  { opacity: 0.6; }
    50%  { left: 60%; opacity: 0.5; }
    85%  { opacity: 0.2; }
    100% { left: 110%; opacity: 0; }
}

/* Prova social — Google rating */
.hero-cta-primary-col {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hero-social-proof {
    display: flex;
    align-items: center;
    gap: clamp(0.4rem, 0.6vw, 0.7rem);
    margin-top: clamp(0.7rem, 1vw, 1rem);
}
.google-logo {
    width: clamp(16px, 1.4vw, 20px);
    height: clamp(16px, 1.4vw, 20px);
    flex-shrink: 0;
}
.hero-stars {
    font-size: clamp(0.7rem, 0.8vw, 0.88rem);
    color: #FBBC05;
    letter-spacing: 0.04em;
    line-height: 1;
}
.hero-stars-count {
    color: var(--po-de-estrela);
    opacity: 0.7;
    font-size: clamp(0.62rem, 0.72vw, 0.78rem);
    font-family: var(--font-body);
    font-weight: 500;
    letter-spacing: 0;
}
.hero-rating-label {
    font-family: var(--font-body);
    font-size: clamp(0.62rem, 0.7vw, 0.75rem);
    font-weight: 500;
    color: var(--po-de-estrela);
    opacity: 0.65;
    white-space: nowrap;
}

/* Badges flutuantes sobre a foto */
.hero-badge {
    position: absolute;
    z-index: 3;
    background: rgba(196,182,148,0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(196,182,148,0.3);
    border-radius: 50px;
    padding: 0.55rem 1.25rem;
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--champanhe);
    pointer-events: none;
}
.hero-badge--1 { bottom: 30%; right: 22%; }
.hero-badge--2 { bottom: 21%; right: 36%; }



/* =====================
   TRUST BAR
   ===================== */
.trust-bar {
    background-color: var(--alabastro);
    border-top: 1px solid var(--hairline-dark);
    padding: 2.25rem 0;
}
.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0 2.5rem;
}
.trust-item + .trust-item {
    border-left: 1px solid var(--hairline-dark);
}
.trust-item:first-child { padding-left: 0; }
.trust-item:last-child  { padding-right: 0; }
.trust-icon {
    width: 46px; height: 46px;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid var(--hairline-dark);
    border-radius: 50%;
    color: var(--azul-marinho);
    flex-shrink: 0;
}
.trust-icon svg { width: 20px; height: 20px; }
.trust-text strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--azul-marinho);
    line-height: 1.2;
    margin-bottom: 0.1rem;
}
.trust-text span {
    font-size: 0.8rem;
    color: var(--grafite);
    opacity: 0.6;
}

/* =====================
   SERVIÇOS
   ===================== */
#servicos {
    position: relative;
    overflow: hidden;
}
#servicos::before {
    content: '';
    position: absolute;
    right: -3rem; top: 50%;
    transform: translateY(-50%);
    width: clamp(260px, 28vw, 440px);
    height: clamp(260px, 28vw, 440px);
    background-image: url('logo-azul.svg');
    background-repeat: no-repeat;
    background-size: 245% auto;
    background-position: 0% 50%;
    opacity: 0.07;
    pointer-events: none;
    user-select: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.service-card {
    background-color: var(--branco);
    border: 1px solid var(--po-de-estrela);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    transition: var(--smooth);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--champanhe);
    transform: scaleX(0.22);
    transform-origin: left;
    transition: transform var(--smooth);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(196,182,148,0.6);
}

.service-icon {
    width: 52px; height: 52px;
    display: flex; align-items: center; justify-content: center;
    background-color: var(--alabastro);
    border-radius: 50%;
    border: 1px solid var(--hairline-dark);
    color: var(--azul-marinho);
    margin-bottom: 1.5rem;
    transition: var(--smooth);
}
.service-icon svg { width: 22px; height: 22px; }
.service-card:hover .service-icon {
    background-color: var(--azul-marinho);
    border-color: var(--azul-marinho);
    color: var(--champanhe);
}

.service-card h3 {
    font-size: 1.15rem;
    color: var(--azul-marinho);
    margin-bottom: 0.75rem;
}
.service-card p {
    font-size: 0.91rem;
    color: var(--grafite);
    opacity: 0.82;
    line-height: 1.75;
}

.section-cta { text-align: center; }

/* =====================
   QUEM SOMOS (manifesto) — bloco completo
   ===================== */
.manifesto-bg-section {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 2560px;
    margin: 0 auto;
    aspect-ratio: 2005 / 784;
    background-color: #0c1524;
    display: flex;
    align-items: center;
}

.manifesto-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.manifesto-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        100deg,
        rgba(12, 21, 36, 0.92) 0%,
        rgba(12, 21, 36, 0.78) 46%,
        rgba(12, 21, 36, 0.30) 78%,
        rgba(12, 21, 36, 0.10) 100%
    );
    z-index: 1;
}

.manifesto-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 3.5rem clamp(1.25rem, 5vw, 3rem);
}
.manifesto-text { max-width: clamp(340px, 46vw, 660px); }

.manifesto-text h2 {
    font-size: clamp(1.85rem, 2.7vw, 2.6rem);
    color: #ffffff;
    margin-bottom: 1.4rem;
}
.manifesto-text p {
    font-size: 0.9rem;
    line-height: 1.85;
    color: #d9d4c8;
    opacity: 0.92;
    margin-bottom: 1.15rem;
    max-width: 62ch;
}
.manifesto-quote {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.15rem, 1.7vw, 1.5rem);
    font-style: italic;
    font-weight: 500;
    color: #c4b694;
    border-left: 2px solid #c4b694;
    padding: 0.4rem 0 0.4rem 1.6rem;
    margin: 1.75rem 0 0;
    line-height: 1.5;
    max-width: 30em;
}

@media (max-width: 1024px) {
    .manifesto-bg-section { aspect-ratio: auto; }
    .manifesto-content { padding-top: 4.5rem; padding-bottom: 4.5rem; }
    .manifesto-text { max-width: 100%; }
}

/* =====================
   DIFERENCIAIS
   ===================== */
#diferenciais {
    background-color: var(--ink);
    position: relative;
    overflow: hidden;
    color: var(--po-de-estrela);
}
#diferenciais h2,
#diferenciais h3,
#diferenciais h4 { color: var(--branco); }
#diferenciais p   { color: var(--po-de-estrela); }
#diferenciais .kicker { color: var(--champanhe); }
#diferenciais .section-header p { color: var(--po-de-estrela); opacity: 0.75; }
#diferenciais::after {
    content: '';
    position: absolute;
    right: -5rem; top: 50%;
    transform: translateY(-50%);
    width: clamp(280px, 30vw, 480px);
    height: clamp(280px, 30vw, 480px);
    background-image: url('assets/logo_1_branco.svg');
    background-repeat: no-repeat;
    background-size: 245% auto;
    background-position: 0% 50%;
    opacity: 0.055;
    pointer-events: none;
    user-select: none;
}
.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.diferencial-item {
    display: flex;
    gap: 1.25rem;
    padding: 1.75rem;
    background-color: rgba(255,255,255,0.03);
    border: 1px solid var(--hairline);
    border-radius: var(--radius-lg);
    transition: var(--smooth);
}
.diferencial-item:hover {
    border-color: rgba(196,182,148,0.45);
    background-color: rgba(255,255,255,0.055);
    transform: translateY(-3px);
}

.diferencial-icon {
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid var(--hairline);
    border-radius: 50%;
    color: var(--champanhe);
    flex-shrink: 0;
}
.diferencial-icon svg { width: 20px; height: 20px; }

.diferencial-body h3 {
    font-family: var(--font-body);
    font-size: 0.93rem;
    font-weight: 700;
    color: var(--po-de-estrela);
    margin-bottom: 0.35rem;
    letter-spacing: 0;
}
.diferencial-body p {
    font-size: 0.86rem;
    line-height: 1.65;
    color: var(--po-de-estrela);
    opacity: 0.6;
}

/* =====================
   SOBRE
   ===================== */
.sobre-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 780px;
}

.sobre-text h2 { color: var(--azul-marinho); margin-bottom: 1.5rem; }
.sobre-text p {
    font-size: 1.03rem;
    line-height: 1.85;
    color: var(--grafite);
    margin-bottom: 1.25rem;
}
.sobre-text .btn { margin-top: 0.75rem; }


/* =====================
   FAQ
   ===================== */
#faq {
    position: relative;
    overflow: hidden;
}
#faq::before {
    content: '';
    position: absolute;
    left: -3rem; top: 50%;
    transform: translateY(-50%);
    width: clamp(240px, 26vw, 400px);
    height: clamp(240px, 26vw, 400px);
    background-image: url('logo-azul.svg');
    background-repeat: no-repeat;
    background-size: 245% auto;
    background-position: 0% 50%;
    opacity: 0.06;
    pointer-events: none;
    user-select: none;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}
.faq-item {
    border-bottom: 1px solid var(--hairline-dark);
    transition: border-color var(--fast);
}
.faq-item:first-child { border-top: 1px solid var(--hairline-dark); }
.faq-item.active { border-color: var(--champanhe); }
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.5rem 0;
    cursor: pointer;
    user-select: none;
    width: 100%;
    text-align: left;
    background: none;
    transition: var(--fast);
}
.faq-question-text {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 1.1rem;
    color: var(--azul-marinho);
    line-height: 1.4;
}
.faq-item.active .faq-question-text { color: var(--champanhe-dark); }
.faq-icon {
    width: 28px; height: 28px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid var(--hairline-dark);
    color: var(--azul-marinho);
    flex-shrink: 0;
    transition: var(--fast);
}
.faq-icon svg { width: 14px; height: 14px; }
.faq-item.active .faq-icon {
    background-color: var(--champanhe);
    border-color: var(--champanhe);
    color: var(--azul-petroleo);
    transform: rotate(45deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-answer-inner {
    padding: 0 0 1.75rem;
}
.faq-answer p {
    font-size: 0.94rem;
    line-height: 1.85;
    color: var(--grafite);
    opacity: 0.82;
}

/* =====================
   ESCRITÓRIOS — MAPA
   ===================== */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.location-card {
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(196,182,148,0.15);
    transition: var(--smooth);
    background-color: rgba(255,255,255,0.03);
}
.location-card:hover {
    border-color: rgba(196,182,148,0.35);
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.location-map {
    overflow: hidden;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    line-height: 0;
}
.location-map iframe {
    width: 100%;
    display: block;
    border: 0;
}

.location-info {
    padding: 1.5rem 1.75rem 1.75rem;
}
.location-city {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--champanhe);
    margin-bottom: 0.4rem;
    line-height: 1.2;
}
.location-info address {
    font-size: 0.88rem;
    color: var(--po-de-estrela);
    opacity: 0.75;
    line-height: 1.65;
    margin-bottom: 0.85rem;
}
.location-link {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--champanhe);
    transition: opacity var(--fast);
}
.location-link:hover { opacity: 0.7; }

@media (max-width: 900px) {
    .locations-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
}

/* =====================
   CTA FINAL
   ===================== */
.cta-section {
    background: linear-gradient(140deg, var(--azul-marinho) 0%, var(--ink) 100%);
    padding: var(--section-pad) 0;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    width: clamp(320px, 40vw, 600px);
    height: clamp(320px, 40vw, 600px);
    background-image: url('logo-dourado.svg');
    background-repeat: no-repeat;
    background-size: 245% auto;
    background-position: 0% 50%;
    opacity: 0.09;
    pointer-events: none;
    user-select: none;
}
.cta-section::after { display: none; }

.cta-container {
    text-align: center;
    position: relative;
}
.cta-container h2 {
    color: var(--branco);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.25rem;
}
.cta-container p {
    font-size: 1.1rem;
    color: var(--po-de-estrela);
    max-width: 560px;
    margin: 0 auto 2.5rem;
}

/* =====================
   FOOTER
   ===================== */
.footer {
    background-color: var(--ink);
    border-top: 1px solid var(--hairline);
    padding: 4rem 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.6fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--hairline);
}

.footer-brand-tagline {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 0.95rem;
    color: var(--po-de-estrela);
    line-height: 1.55;
    margin-top: 0.5rem;
    opacity: 0.75;
}
.footer-brand-sub {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--champanhe);
    opacity: 0.6;
    margin-bottom: 0.25rem;
}

.footer-socials {
    margin-top: 1.25rem;
}
.footer-social-link--labeled {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff !important;
    font-size: 0.88rem;
    font-weight: 600;
    transition: var(--fast);
    text-decoration: none;
}
.footer-social-link--labeled:hover {
    color: var(--champanhe) !important;
    transform: translateX(2px);
}
.footer-social-link--labeled svg {
    color: #ffffff !important;
    flex-shrink: 0;
}
.footer-social-link--labeled:hover svg {
    color: var(--champanhe) !important;
}

.footer-col-title {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--champanhe);
    margin-bottom: 1.5rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}
.footer-links a {
    font-size: 0.9rem;
    color: var(--po-de-estrela);
    transition: var(--fast);
}
.footer-links a:hover {
    color: var(--champanhe);
    padding-left: 0.3rem;
}

.footer-locations {
    display: flex;
    flex-direction: column;
}

.footer-addresses {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.footer-address {
    font-size: 0.87rem;
    color: var(--po-de-estrela);
    line-height: 1.65;
}
.footer-address strong {
    display: block;
    color: var(--branco);
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
}

.footer-bottom {
    padding: 1.5rem 0;
    text-align: center;
}
.footer-bottom p {
    font-size: 0.78rem;
    color: var(--po-de-estrela);
    opacity: 0.45;
}
.footer-socials { display: flex; gap: 0.75rem; margin-top: 1.2rem; }
.footer-brand-socials { margin-top: 1.2rem; }

.footer-social-link {
    color: var(--po-de-estrela);
    opacity: 0.45;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: opacity 0.2s;
}
.footer-social-link:hover { opacity: 1; }

/* INSTAGRAM LINK MATCHING OFFICE NAMES TYPOGRAPHY & COLOR */
.footer-social-link--labeled {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    color: var(--branco) !important;
    font-size: 0.9rem !important;
    font-weight: 700 !important;
    opacity: 1 !important;
    text-decoration: none !important;
    transition: all 0.25s ease !important;
}
.footer-social-link--labeled .footer-social-label,
.footer-social-link--labeled strong {
    font-family: var(--font-body) !important;
    color: var(--branco) !important;
    font-size: 0.9rem !important;
    font-weight: 700 !important;
    opacity: 1 !important;
    letter-spacing: normal !important;
    white-space: nowrap !important;
}
.footer-social-link--labeled svg {
    color: var(--branco) !important;
    stroke: var(--branco) !important;
    opacity: 1 !important;
}
.footer-social-link--labeled:hover,
.footer-social-link--labeled:hover .footer-social-label,
.footer-social-link--labeled:hover strong {
    color: var(--champanhe) !important;
    opacity: 1 !important;
}
.footer-social-link--labeled:hover svg {
    color: var(--champanhe) !important;
    stroke: var(--champanhe) !important;
    opacity: 1 !important;
}

/* =====================
   WHATSAPP FLOAT
   ===================== */
@keyframes pulse-wa {
    0%   { box-shadow: 0 4px 20px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.45); }
    70%  { box-shadow: 0 4px 20px rgba(37,211,102,0.45), 0 0 0 16px rgba(37,211,102,0); }
    100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0); }
}

.wa-float {
    position: fixed;
    bottom: 2rem; right: 2rem;
    z-index: 900;
    width: 58px; height: 58px;
    background-color: var(--whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse-wa 2.2s infinite;
    transition: transform var(--fast);
}
.wa-float:hover {
    transform: scale(1.1);
    animation: none;
    box-shadow: 0 6px 30px rgba(37,211,102,0.55);
}
.wa-float svg { width: 30px; height: 30px; fill: var(--branco); }

/* =====================
   PÁGINAS DE SERVIÇO
   ===================== */
.page-hero {
    min-height: 55vh;
    display: flex;
    align-items: flex-end;
    background-color: var(--azul-petroleo);
    position: relative;
    overflow: hidden;
    padding: calc(var(--nav-height) + 4rem) 0 5rem;
}
.page-hero::before {
    content: '';
    position: absolute;
    top: -15%; right: -5%;
    width: 550px; height: 550px;
    border: 1px solid rgba(196,182,148,0.06);
    border-radius: 50%;
    pointer-events: none;
}
.page-hero::after {
    content: '';
    position: absolute;
    bottom: -20%; left: -5%;
    width: 300px; height: 300px;
    border: 1px solid rgba(196,182,148,0.04);
    border-radius: 50%;
    pointer-events: none;
}

.page-hero .container { position: relative; }

.page-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    color: var(--po-de-estrela);
    opacity: 0.65;
    margin-bottom: 2rem;
}
.page-breadcrumb a { color: var(--champanhe); transition: opacity var(--fast); }
.page-breadcrumb a:hover { opacity: 0.8; }
.page-breadcrumb span { opacity: 0.5; }

.page-hero h1 {
    color: var(--branco);
    font-weight: 500;
    max-width: 780px;
    margin-bottom: 1.25rem;
}
.page-hero-sub {
    font-size: 1.08rem;
    color: var(--po-de-estrela);
    max-width: 620px;
    line-height: 1.85;
    margin-bottom: 2.5rem;
}
.page-hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Steps */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}
.step-card {
    padding: 2rem;
    background-color: var(--branco);
    border: 1px solid var(--po-de-estrela);
    border-radius: var(--radius-lg);
    transition: var(--smooth);
    position: relative;
    overflow: hidden;
}
.step-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--champanhe), var(--azul-marinho));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--smooth);
}
.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(196,182,148,0.5);
}
.step-card:hover::before { transform: scaleX(1); }
.step-number {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
    color: var(--azul-marinho);
    opacity: 0.12;
    margin-bottom: 0.75rem;
    display: block;
}
.step-card h3 { font-size: 1.1rem; color: var(--azul-marinho); margin-bottom: 0.6rem; }
.step-card p  { font-size: 0.9rem; color: var(--grafite); opacity: 0.82; line-height: 1.7; }

/* Feature list */
.feature-list { display: flex; flex-direction: column; gap: 0.85rem; }
.feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.25rem 1.5rem;
    background-color: var(--branco);
    border: 1px solid var(--po-de-estrela);
    border-radius: var(--radius-md);
    transition: var(--fast);
}
.feature-item:hover {
    border-color: var(--azul-marinho);
    background-color: var(--alabastro);
}
.feature-dot {
    width: 8px; height: 8px;
    background-color: var(--champanhe);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 5px;
}
.feature-item strong {
    display: block;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--azul-marinho);
    margin-bottom: 0.2rem;
}
.feature-item p { font-size: 0.87rem; color: var(--grafite); opacity: 0.78; line-height: 1.6; margin: 0; }

/* Content split */
.content-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}
.content-split-text h2 { color: var(--azul-marinho); margin-bottom: 1.25rem; }
.content-split-text p  { font-size: 1rem; line-height: 1.85; color: var(--grafite); margin-bottom: 1rem; }

/* Highlight box */
.highlight-box {
    background: linear-gradient(145deg, var(--azul-petroleo), var(--azul-marinho));
    border-radius: var(--radius-xl);
    padding: 2.5rem;
}
.highlight-box h3 { color: var(--champanhe); margin-bottom: 1rem; font-size: 1.3rem; }
.highlight-box p  { color: var(--po-de-estrela); font-size: 0.95rem; line-height: 1.8; }

/* =====================
   EQUIPA — CORPO JURÍDICO
   ===================== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.team-card {
    background-color: var(--branco);
    border: 1px solid var(--po-de-estrela);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: var(--smooth);
}
.team-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(196,182,148,0.55);
}

.team-photo-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    background-color: var(--alabastro);
}
.team-photo-wrap img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.team-photo-wrap::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(12,21,36,0.55), transparent);
    pointer-events: none;
}
.team-card:hover .team-photo-wrap img {
    transform: scale(1.045);
}

.team-info {
    padding: 1.75rem;
    position: relative;
}
.team-info::before {
    content: '';
    display: block;
    width: 2.5rem;
    height: 1px;
    background-color: var(--champanhe);
    margin-bottom: 1.1rem;
    transition: width var(--smooth);
}
.team-card:hover .team-info::before {
    width: 4rem;
}
.team-info h3 {
    font-size: 1.35rem;
    color: var(--azul-marinho);
    margin-bottom: 0.2rem;
    font-weight: 600;
}
.team-role {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--champanhe-dark);
    margin-bottom: 0.85rem;
}
.team-info p {
    font-size: 0.88rem;
    color: var(--grafite);
    opacity: 0.75;
    line-height: 1.7;
    margin: 0;
}

/* =========================================================
   RESPONSIVO — VEX LEGAL
   ========================================================= */

/* =====================
   AREAS DROPDOWN (mobile only)
   ===================== */
.areas-dropdown { display: none; position: relative; }

@media (max-width: 992px) {
    .areas-dropdown { display: block; }

    .areas-btn {
        display: flex;
        align-items: center;
        gap: 3px;
        background: none;
        border: 1px solid rgba(196, 182, 148, 0.22);
        border-radius: 100px;
        padding: 6px 9px;
        font-family: var(--font-body);
        font-size: 0.66rem;
        font-weight: 700;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--po-de-estrela);
        opacity: 0.85;
        cursor: pointer;
        white-space: nowrap;
        line-height: 1;
        transition: opacity 0.22s, border-color 0.22s;
    }
    .areas-btn:hover,
    .areas-btn[aria-expanded="true"] {
        opacity: 1;
        border-color: rgba(196, 182, 148, 0.55);
    }
    .areas-chevron {
        font-size: 0.6rem;
        transition: transform 0.2s;
        display: inline-block;
    }
    .areas-btn[aria-expanded="true"] .areas-chevron { transform: rotate(180deg); }

    .areas-menu {
        display: none;
        position: absolute;
        top: calc(100% + 10px);
        right: 0;
        background: var(--azul-petroleo);
        border: 1px solid rgba(196,182,148,0.18);
        border-radius: 14px;
        padding: 0.4rem 0;
        min-width: 190px;
        z-index: 1100;
        box-shadow: 0 12px 40px rgba(0,0,0,0.35);
    }
    .areas-menu.open { display: block; }

    .areas-menu li a {
        display: block;
        padding: 0.65rem 1.1rem;
        font-family: var(--font-body);
        font-size: 0.82rem;
        font-weight: 500;
        color: var(--po-de-estrela);
        letter-spacing: 0.02em;
        transition: color var(--fast), background var(--fast);
    }
    .areas-menu li a:hover {
        color: var(--champanhe);
        background: rgba(196,182,148,0.06);
    }
    .areas-menu li + li {
        border-top: 1px solid rgba(196,182,148,0.07);
    }
    .areas-menu li:first-child a { border-radius: 14px 14px 0 0; }
    .areas-menu li:last-child  a { border-radius: 0 0 14px 14px; }
}

/* ── 1200px — Nav compacto em notebooks ── */
@media (max-width: 1200px) {
    .nav-link { font-size: 0.72rem; padding: 0.5rem 0.5rem; }
    .logo-img { height: 72px; }
}

/* ── 1024px — Tablet landscape ── */
@media (max-width: 1024px) {
    .sobre-inner     { grid-template-columns: 1fr; gap: 2.5rem; }
    .locations-grid  { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
}

/* ── 992px — Menu mobile + tablet portrait ── */
@media (max-width: 992px) {
    .nav-link::after { display: none; }
    /* Nav */
    .nav-menu {
        position: fixed;
        top: 0; right: -100%;
        width: min(380px, 90vw);
        height: 100vh;
        background-color: var(--azul-petroleo);
        border-left: 1px solid rgba(196,182,148,0.1);
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 0;
        padding: 5rem 2.5rem;
        z-index: 999;
        transition: right var(--smooth);
        overflow-y: auto;
    }
    .nav-menu.active { right: 0; }
    .nav-link { font-size: 1rem; width: 100%; padding: 0.8rem 1rem; }
    .nav-cta  { display: none; }
    .mobile-menu-btn { display: flex; }
    #nav-overlay { display: block; }

    /* Logo menor no nav mobile */
    .logo-img { height: 72px; }

    /* Grids */
    .trust-grid        { grid-template-columns: 1fr; gap: 1.25rem; }
    .services-grid     { grid-template-columns: repeat(2, 1fr); }
    .diferenciais-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid         { grid-template-columns: 1fr 1fr; }

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

    /* Lang switcher compacto */
    .lang-switcher { padding: 2px; }
    .lang-btn { font-size: 0.6rem; padding: 5px 7px; }
}

/* ── 900px — Hero mobile ── */
@media (max-width: 900px) {
    :root { --nav-height: 72px; }

    /* No mobile: imagem como fundo com cover, texto empilhado acima */
    .hero {
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        min-height: 100svh;
    }

    .hero-bg-img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: 81% top;
        opacity: 0.85;
        filter: brightness(1.25);
    }

    /* Marta (landscape) — override para centralizar rosto no mobile */
    .hero-bg-marta {
        object-position: 72% top;
        filter: brightness(1.6);
    }

    .hero::before {
        background: linear-gradient(
            to top,
            #0d1520 0%,
            rgba(13,21,32,0.88) 38%,
            rgba(13,21,32,0.3) 65%,
            rgba(13,21,32,0.1) 85%,
            transparent 100%
        );
    }

    .hero-text {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        padding: calc(var(--nav-height) + 1rem) 1.5rem 3rem;
        max-width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-ctas { justify-content: center; flex-direction: column; width: 100%; }
    .hero-ctas .btn { width: 100%; text-align: center; justify-content: center; }

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

/* ── 768px — Tablet pequeno ── */
@media (max-width: 768px) {
    .steps-grid     { grid-template-columns: 1fr; }
    .content-split  { grid-template-columns: 1fr; gap: 2.5rem; }
    .page-hero-ctas { flex-direction: column; align-items: flex-start; }

    .section-header { text-align: center; }
    .section-header p { max-width: 90%; margin: 0 auto; }

    /* Badges flutuantes não fazem sentido em mobile */
    .hero-badge--1, .hero-badge--2 { display: none; }

    /* Manifesto: sem aspect-ratio abaixo de 1024px — precisa de altura mínima */
    .manifesto-bg-section { min-height: 480px; }

    /* Watermarks: reduz opacidade para não sobrepor texto em telas pequenas */
    #servicos::before { opacity: 0.04; }
    #faq::before      { opacity: 0.03; }
}

/* ── 640px — Mobile ── */
@media (max-width: 640px) {
    :root {
        --nav-height: 64px;
        --section-pad: clamp(3rem, 8vw, 5rem);
        --container-pad: 1.25rem;
    }

    .logo-img { height: 52px; }
    .footer .logo-img { height: 38px; }

    h1 { font-size: clamp(2rem, 9vw, 2.25rem); }
    h2 { font-size: clamp(1.75rem, 7.5vw, 2rem); }
    h3 { font-size: clamp(1.1rem, 4.5vw, 1.35rem); }

    /* Botões Mobile */
    .btn { padding: 0.8rem 1.5rem; font-size: 0.78rem; }
    .btn-lg { padding: 0.95rem 1.8rem; font-size: 0.82rem; }

    /* Hero */
    .hero { padding: calc(var(--nav-height) + 1.5rem) 0 3rem; }
    .hero-text { padding-top: 0; } /* anula o padding-top do breakpoint 900px */
    .hero-kicker { flex-wrap: wrap; justify-content: center; gap: 0.4rem; }
    .hero-ctas { flex-direction: column; width: 100%; }
    .hero-ctas .btn { width: 100%; justify-content: center; text-align: center; }

    /* Serviços */
    .services-grid { grid-template-columns: 1fr; }
    .service-card  { padding: 1.5rem 1.25rem; }
    .service-icon  { width: 44px; height: 44px; margin-bottom: 0.875rem; }
    .service-icon svg { width: 18px; height: 18px; }

    /* Equipa */
    .diferenciais-grid { grid-template-columns: 1fr; }
    .team-grid         { grid-template-columns: 1fr; max-width: min(360px, 100%); margin: 0 auto; }
    .team-info         { text-align: center; }
    .team-info::before { margin: 0 auto 1.1rem; }
    .team-role         { display: block; }

    /* Manifesto */
    .manifesto-text h2 { font-size: clamp(1.6rem, 6.5vw, 1.9rem); }
    .manifesto-quote   { font-size: 1rem; }

    /* Escritórios: iframes mais baixos em mobile */
    .location-map iframe { height: 180px; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr; }
    .footer-addresses { flex-direction: column; gap: 1rem; }

    /* CTA */
    .cta-section .btn { width: 100%; }

    /* Nav — lang switcher compacto em mobile */
    .lang-btn { font-size: 0.7rem; padding: 5px 7px; }

    /* Glint não extravasa em mobile */
    .hero-ctas .btn-champanhe { overflow: hidden; }
}

/* ── 400px — Telefones muito pequenos ── */
@media (max-width: 400px) {
    h1 { font-size: 1.875rem; }
    h2 { font-size: 1.625rem; }
    h3 { font-size: 1.05rem; }
    
    /* Botões Extra Mobile */
    .btn { padding: 0.75rem 1.25rem; font-size: 0.75rem; }
    .btn-lg { padding: 0.85rem 1.5rem; font-size: 0.78rem; }
    
    .hero-kicker { font-size: 0.65rem; flex-wrap: wrap; gap: 0.35rem; }
    .page-hero h1 { font-size: 1.75rem; }
    .lang-btn { font-size: 0.6rem; padding: 4px 6px; }
    .service-card { padding: 1.25rem 1rem; }
}
