/* ============================================================
   GB Despachante — style.css
   ============================================================ */

/* --- FONTES --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');
@import url('https://fonts.googleapis.com/icon?family=Material+Icons+Round');

/* --- VARIÁVEIS --- */
:root {
    --verde:       #0D4F3C;
    --verde-dark:  #0A3020;
    --verde-light: #E8F2EE;
    --dourado:     #C9A84C;
    --dourado-bg:  rgba(201,168,76,0.12);
    --creme:       #F5F2EB;
    --cinza-claro: #F8F7F4;
    --texto:       #1a1a1a;
    --texto-muted: #6b7280;
    --borda:       #E0DDD6;
    --branco:      #ffffff;
    --sombra:      0 2px 20px rgba(13,79,60,0.08);
    --sombra-hover:0 8px 30px rgba(13,79,60,0.15);
    --radius:      12px;
    --radius-sm:   8px;
    --radius-pill: 50px;
}

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'DM Sans', sans-serif;
    color: var(--texto);
    background: var(--branco);
    overflow-x: hidden;
    line-height: 1.6;
}
h1,h2,h3,h4 { font-family: 'Playfair Display', serif; line-height: 1.25; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* --- UTILITÁRIOS --- */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.section-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px; font-weight: 600;
    letter-spacing: 2px; text-transform: uppercase;
    color: var(--dourado); margin-bottom: 8px;
}
.section-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700; color: var(--verde);
    margin-bottom: 12px;
}
.section-sub {
    color: var(--texto-muted); font-size: 1rem;
    max-width: 600px; line-height: 1.7;
}
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* --- NAVBAR --- */
.navbar {
    background: var(--branco);
    border-bottom: 1px solid var(--borda);
    position: sticky; top: 0; z-index: 1000;
    height: 68px;
}
.navbar .container {
    height: 100%;
    display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo-mark {
    width: 40px; height: 40px;
    background: var(--verde); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    border: 1.5px solid var(--dourado);
    font-family: 'Playfair Display', serif;
    font-size: 15px; font-weight: 700;
    color: var(--dourado); flex-shrink: 0;
    position: relative;
}
.nav-logo-mark::after {
    content: '';
    position: absolute; inset: 3px;
    border-radius: 50%;
    border: 0.5px solid rgba(201,168,76,0.3);
}
.nav-logo-divider {
    width: 1px; height: 28px;
    background: var(--borda);
}
.nav-logo-text { line-height: 1.2; }
.nav-logo-nome {
    font-family: 'Playfair Display', serif;
    font-size: 16px; font-weight: 700;
    color: var(--verde);
}
.nav-logo-tag {
    font-size: 10px; font-weight: 500;
    color: var(--dourado); letter-spacing: 1px;
    font-style: italic;
}
.nav-links {
    display: flex; align-items: center; gap: 32px;
    list-style: none;
}
.nav-links a {
    font-size: 14px; font-weight: 500;
    color: var(--texto-muted);
    transition: color .2s;
}
.nav-links a:hover { color: var(--verde); }
.nav-cta {
    background: var(--verde); color: var(--branco);
    border: none; padding: 10px 20px;
    border-radius: var(--radius-pill);
    font-size: 14px; font-weight: 600;
    cursor: pointer; display: flex;
    align-items: center; gap: 8px;
    transition: background .2s, transform .2s;
    font-family: 'DM Sans', sans-serif;
}
.nav-cta:hover { background: var(--verde-dark); transform: translateY(-1px); }
.nav-cta .material-icons-round { font-size: 18px; }
.nav-mobile-btn {
    display: none; background: none; border: none;
    cursor: pointer; color: var(--verde);
}
.nav-mobile-btn .material-icons-round { font-size: 28px; }

/* --- HERO --- */
.hero {
    background: var(--verde);
    padding: 80px 0 60px;
    position: relative; overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute; right: -100px; top: -100px;
    width: 500px; height: 500px; border-radius: 50%;
    border: 60px solid rgba(201,168,76,0.06);
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute; right: 60px; top: 60px;
    width: 300px; height: 300px; border-radius: 50%;
    border: 1.5px solid rgba(201,168,76,0.12);
    pointer-events: none;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--dourado-bg);
    border: 1px solid rgba(201,168,76,0.35);
    color: var(--dourado);
    padding: 6px 16px; border-radius: var(--radius-pill);
    font-size: 12px; font-weight: 600;
    letter-spacing: .5px; margin-bottom: 24px;
}
.hero-badge .material-icons-round { font-size: 16px; }
.hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--branco);
    font-weight: 400; margin-bottom: 8px;
}
.hero h1 em {
    color: var(--dourado); font-style: normal;
    font-weight: 700;
}
.hero-sub {
    color: rgba(255,255,255,0.72);
    font-size: 1.05rem; max-width: 560px;
    margin-bottom: 36px; line-height: 1.7;
}
.hero-cards {
    display: grid; grid-template-columns: repeat(3,1fr);
    gap: 14px; max-width: 680px; margin-bottom: 36px;
}
.hero-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.13);
    border-radius: var(--radius);
    padding: 16px 18px;
    transition: background .2s;
}
.hero-card:hover { background: rgba(255,255,255,0.12); }
.hero-card-icon {
    color: var(--dourado);
    font-size: 22px; margin-bottom: 8px;
}
.hero-card h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px; font-weight: 600;
    color: var(--branco); margin-bottom: 4px;
}
.hero-card p { color: rgba(255,255,255,0.6); font-size: 12px; }
.hero-btns {
    display: flex; gap: 14px; flex-wrap: wrap;
    align-items: center; margin-bottom: 24px;
}
.btn-primary {
    background: var(--dourado); color: var(--verde-dark);
    border: none; padding: 13px 28px;
    border-radius: var(--radius-pill);
    font-size: 14px; font-weight: 700;
    cursor: pointer; display: inline-flex;
    align-items: center; gap: 8px;
    transition: transform .2s, box-shadow .2s;
    font-family: 'DM Sans', sans-serif;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(201,168,76,0.4); }
.btn-ghost {
    background: transparent; color: rgba(255,255,255,0.8);
    border: 1.5px solid rgba(255,255,255,0.3);
    padding: 12px 22px; border-radius: var(--radius-pill);
    font-size: 14px; font-weight: 500;
    cursor: pointer; display: inline-flex;
    align-items: center; gap: 8px;
    transition: border-color .2s, color .2s;
    font-family: 'DM Sans', sans-serif;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.6); color: var(--branco); }
.hero-digital-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(201,168,76,0.1);
    border: 1px dashed rgba(201,168,76,0.35);
    color: rgba(201,168,76,0.85);
    padding: 6px 14px; border-radius: var(--radius-pill);
    font-size: 12px;
}
.hero-digital-badge .material-icons-round { font-size: 15px; }

/* --- STATS --- */
.stats-bar {
    background: var(--branco);
    border-bottom: 1px solid var(--borda);
    padding: 0;
}
.stats-grid {
    display: grid; grid-template-columns: repeat(4,1fr);
}
.stat-item {
    text-align: center; padding: 24px 16px;
    border-right: 1px solid var(--borda);
}
.stat-item:last-child { border-right: none; }
.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2rem; color: var(--verde);
    font-weight: 700; line-height: 1;
    margin-bottom: 4px;
}
.stat-label {
    font-size: 11px; font-weight: 500;
    color: var(--texto-muted);
    text-transform: uppercase; letter-spacing: .5px;
}

/* --- SERVIÇOS --- */
.servicos { background: var(--cinza-claro); padding: 80px 0; }
.servicos-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px; margin-top: 48px;
}
.servico-card {
    background: var(--branco);
    border: 1px solid var(--borda);
    border-radius: var(--radius);
    padding: 24px;
    display: flex; flex-direction: column;
    transition: transform .25s, box-shadow .25s;
}
.servico-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--sombra-hover);
}
.servico-icon {
    width: 44px; height: 44px;
    background: var(--verde-light);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 14px;
    color: var(--verde); font-size: 22px;
}
.servico-tag {
    display: inline-block;
    background: var(--dourado-bg);
    color: var(--dourado);
    font-size: 10px; font-weight: 700;
    letter-spacing: .5px; text-transform: uppercase;
    padding: 2px 8px; border-radius: 4px;
    margin-left: 8px; vertical-align: middle;
}
.servico-card h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px; font-weight: 600;
    color: var(--verde); margin-bottom: 8px;
}
.servico-card p {
    font-size: 13.5px; color: var(--texto-muted);
    flex: 1; margin-bottom: 18px; line-height: 1.6;
}
.btn-servico {
    background: none; border: 1.5px solid var(--verde);
    color: var(--verde); padding: 9px 16px;
    border-radius: var(--radius-pill);
    font-size: 13px; font-weight: 600;
    cursor: pointer; width: 100%;
    display: flex; align-items: center; justify-content: center; gap: 6px;
    transition: background .2s, color .2s;
    font-family: 'DM Sans', sans-serif;
}
.btn-servico:hover { background: var(--verde); color: var(--branco); }

/* --- COMO FUNCIONA --- */
.como-funciona { background: var(--verde); padding: 80px 0; }
.como-funciona .section-title { color: var(--branco); }
.como-funciona .section-sub { color: rgba(255,255,255,0.65); }
.etapas-grid {
    display: grid; grid-template-columns: repeat(4,1fr);
    gap: 0; margin-top: 48px; position: relative;
}
.etapas-grid::before {
    content: '';
    position: absolute; top: 28px; left: 10%; right: 10%;
    height: 1px; background: rgba(201,168,76,0.25);
    z-index: 0;
}
.etapa {
    text-align: center; padding: 0 16px;
    position: relative; z-index: 1;
}
.etapa-num {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: rgba(201,168,76,0.15);
    border: 2px solid var(--dourado);
    color: var(--dourado);
    font-size: 18px; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px;
    font-family: 'Playfair Display', serif;
    background: var(--verde);
}
.etapa h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px; font-weight: 600;
    color: var(--branco); margin-bottom: 8px;
}
.etapa p { font-size: 13px; color: rgba(255,255,255,0.58); line-height: 1.6; }

/* --- DIFERENCIAIS --- */
.diferenciais { background: var(--creme); padding: 80px 0; }
.diferenciais-grid {
    display: grid; grid-template-columns: repeat(3,1fr);
    gap: 20px; margin-top: 48px;
}
.diferencial-card {
    background: var(--branco);
    border-radius: var(--radius);
    padding: 24px 24px 24px 20px;
    border-left: 3px solid var(--verde);
    transition: box-shadow .2s;
}
.diferencial-card:hover { box-shadow: var(--sombra); }
.diferencial-icon {
    color: var(--dourado); font-size: 24px;
    margin-bottom: 12px;
}
.diferencial-card h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px; font-weight: 600;
    color: var(--verde); margin-bottom: 8px;
}
.diferencial-card p { font-size: 13px; color: var(--texto-muted); line-height: 1.6; }

/* --- ADVOGADOS --- */
.advogados { background: var(--branco); padding: 80px 0; }
.adv-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 48px; align-items: center; margin-top: 48px;
}
.adv-vantagens-list { display: flex; flex-direction: column; gap: 16px; }
.adv-vantagem {
    display: flex; gap: 16px; align-items: flex-start;
}
.adv-vantagem-icon {
    width: 40px; height: 40px; flex-shrink: 0;
    background: var(--verde-light);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    color: var(--verde); font-size: 20px;
}
.adv-vantagem-text h5 {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px; font-weight: 600;
    color: var(--verde); margin-bottom: 4px;
}
.adv-vantagem-text p { font-size: 13px; color: var(--texto-muted); line-height: 1.6; }
.adv-cta-box {
    background: var(--verde);
    border-radius: 16px; padding: 40px;
    text-align: center;
}
.adv-cta-box h3 {
    font-size: 1.5rem; color: var(--branco);
    font-weight: 400; margin-bottom: 12px;
}
.adv-cta-box h3 em { color: var(--dourado); font-style: normal; font-weight: 700; }
.adv-cta-box p { color: rgba(255,255,255,0.7); font-size: 14px; margin-bottom: 28px; }
.adv-servicos-list {
    list-style: none; margin-bottom: 28px; text-align: left;
    display: flex; flex-direction: column; gap: 8px;
}
.adv-servicos-list li {
    display: flex; align-items: center; gap: 10px;
    font-size: 13px; color: rgba(255,255,255,0.8);
}
.adv-servicos-list li .material-icons-round {
    font-size: 16px; color: var(--dourado);
}
.btn-adv {
    background: var(--dourado); color: var(--verde-dark);
    border: none; padding: 13px 28px;
    border-radius: var(--radius-pill);
    font-size: 14px; font-weight: 700;
    cursor: pointer; display: inline-flex;
    align-items: center; gap: 8px; width: 100%;
    justify-content: center;
    transition: transform .2s; font-family: 'DM Sans', sans-serif;
}
.btn-adv:hover { transform: translateY(-2px); }

/* --- SOBRE NÓS --- */
.sobre { background: var(--cinza-claro); padding: 80px 0; }
.sobre-grid {
    display: grid; grid-template-columns: 1fr 1.4fr;
    gap: 60px; align-items: center; margin-top: 48px;
}
.sobre-foto-wrap {
    position: relative;
}
.sobre-foto-placeholder {
    width: 100%; aspect-ratio: 3/4;
    background: var(--verde-light);
    border-radius: 16px;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 12px; color: var(--verde);
    border: 2px dashed var(--borda);
}
.sobre-foto-placeholder .material-icons-round { font-size: 48px; opacity: .4; }
.sobre-foto-placeholder p { font-size: 13px; color: var(--texto-muted); }
.sobre-badge-foto {
    position: absolute; bottom: -16px; right: -16px;
    background: var(--verde); color: var(--branco);
    padding: 14px 20px; border-radius: var(--radius);
    text-align: center; box-shadow: var(--sombra);
}
.sobre-badge-foto strong {
    display: block; font-family: 'Playfair Display', serif;
    font-size: 1.8rem; color: var(--dourado);
}
.sobre-badge-foto span { font-size: 11px; opacity: .8; }
.sobre-nome {
    font-size: 1.6rem; color: var(--verde); margin-bottom: 4px;
}
.sobre-cargo {
    font-size: 13px; color: var(--dourado);
    font-weight: 600; letter-spacing: 1px;
    text-transform: uppercase; margin-bottom: 20px;
    font-family: 'DM Sans', sans-serif;
}
.sobre-texto { font-size: 15px; color: var(--texto-muted); line-height: 1.8; margin-bottom: 16px; }
.sobre-credenciais {
    list-style: none; margin: 24px 0;
    display: flex; flex-direction: column; gap: 10px;
}
.sobre-credenciais li {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 13.5px; color: var(--texto);
}
.sobre-credenciais li .material-icons-round {
    font-size: 18px; color: var(--dourado); flex-shrink: 0; margin-top: 1px;
}
.sobre-nota-legal {
    background: var(--verde-light);
    border-left: 3px solid var(--verde);
    padding: 14px 18px; border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-size: 12.5px; color: var(--verde);
    line-height: 1.6; margin-top: 20px;
}

/* --- DEPOIMENTOS --- */
.depoimentos { background: var(--branco); padding: 80px 0; }
.depoimentos-grid {
    display: grid; grid-template-columns: repeat(3,1fr);
    gap: 20px; margin-top: 48px;
}
.depoimento-card {
    background: var(--cinza-claro);
    border-radius: var(--radius);
    padding: 24px; border: 1px solid var(--borda);
}
.depoimento-stars { color: var(--dourado); font-size: 14px; margin-bottom: 14px; }
.depoimento-texto {
    font-size: 14px; color: var(--texto);
    line-height: 1.7; margin-bottom: 20px;
    font-style: italic;
}
.depoimento-autor { display: flex; align-items: center; gap: 12px; }
.depoimento-avatar {
    width: 38px; height: 38px; border-radius: 50%;
    background: var(--verde); color: var(--dourado);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 15px; font-weight: 700;
    flex-shrink: 0;
}
.depoimento-autor-info strong {
    display: block; font-size: 13px;
    font-weight: 600; color: var(--verde);
}
.depoimento-autor-info span { font-size: 12px; color: var(--texto-muted); }

/* --- FAQ --- */
.faq-section { background: var(--creme); padding: 80px 0; }
.faq-list { margin-top: 48px; max-width: 780px; margin-left: auto; margin-right: auto; }
.faq-item {
    border-bottom: 1px solid var(--borda);
    padding: 0;
}
.faq-pergunta {
    width: 100%; text-align: left;
    background: none; border: none;
    padding: 20px 0; cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
    gap: 16px; font-family: 'DM Sans', sans-serif;
    font-size: 15px; font-weight: 500; color: var(--verde);
    transition: color .2s;
}
.faq-pergunta:hover { color: var(--dourado); }
.faq-pergunta .material-icons-round {
    font-size: 20px; color: var(--dourado);
    transition: transform .3s; flex-shrink: 0;
}
.faq-item.active .faq-pergunta .material-icons-round { transform: rotate(45deg); }
.faq-resposta {
    max-height: 0; overflow: hidden;
    transition: max-height .35s ease, padding .35s ease;
}
.faq-item.active .faq-resposta { max-height: 300px; padding-bottom: 20px; }
.faq-resposta p { font-size: 14px; color: var(--texto-muted); line-height: 1.7; }

/* --- CTA FINAL --- */
.cta-final { background: var(--verde); padding: 80px 0; text-align: center; }
.cta-final h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--branco); font-weight: 400; margin-bottom: 12px;
}
.cta-final h2 em { color: var(--dourado); font-style: normal; font-weight: 700; }
.cta-final p { color: rgba(255,255,255,0.7); margin-bottom: 36px; font-size: 1rem; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-verde {
    background: var(--branco); color: var(--verde);
    border: none; padding: 14px 32px;
    border-radius: var(--radius-pill);
    font-size: 15px; font-weight: 700;
    cursor: pointer; display: inline-flex;
    align-items: center; gap: 8px;
    transition: transform .2s; font-family: 'DM Sans', sans-serif;
}
.btn-verde:hover { transform: translateY(-2px); }
.btn-outline-branco {
    background: transparent; color: var(--branco);
    border: 1.5px solid rgba(255,255,255,0.4);
    padding: 13px 28px; border-radius: var(--radius-pill);
    font-size: 15px; font-weight: 500;
    cursor: pointer; display: inline-flex;
    align-items: center; gap: 8px;
    transition: border-color .2s; font-family: 'DM Sans', sans-serif;
}
.btn-outline-branco:hover { border-color: rgba(255,255,255,.8); }

/* --- FOOTER --- */
.footer { background: var(--verde-dark); padding: 40px 0 24px; }
.footer-top {
    display: grid; grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px; padding-bottom: 32px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo-area {}
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer-logo-mark {
    width: 36px; height: 36px;
    background: rgba(201,168,76,0.15);
    border: 1px solid var(--dourado);
    border-radius: 50%; display: flex;
    align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 13px; font-weight: 700;
    color: var(--dourado);
}
.footer-logo-nome {
    font-family: 'Playfair Display', serif;
    font-size: 15px; color: var(--branco);
}
.footer-logo-tag {
    font-size: 10px; color: var(--dourado);
    letter-spacing: 1px; font-style: italic;
}
.footer-desc { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.7; }
.footer-col h5 {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px; font-weight: 600;
    letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--dourado); margin-bottom: 16px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.5); transition: color .2s; }
.footer-links a:hover { color: var(--branco); }
.footer-contact-item {
    display: flex; align-items: center; gap: 8px;
    font-size: 13px; color: rgba(255,255,255,0.5);
    margin-bottom: 10px;
}
.footer-contact-item .material-icons-round { font-size: 16px; color: var(--dourado); }
.footer-bottom {
    display: flex; justify-content: space-between; align-items: flex-start;
    gap: 16px; padding-top: 24px; flex-wrap: wrap;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.3); }
.footer-legal { font-size: 11px; color: rgba(255,255,255,0.25); max-width: 500px; line-height: 1.6; }

/* --- MODAL SERVIÇO --- */
.modal-overlay {
    display: none; position: fixed; inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 9999; align-items: center; justify-content: center;
    padding: 20px;
}
.modal-overlay.active { display: flex; }
.modal {
    background: var(--branco); border-radius: 16px;
    width: 100%; max-width: 520px;
    max-height: 90vh; overflow-y: auto;
    animation: modalIn .25s ease;
}
@keyframes modalIn {
    from { transform: translateY(20px); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
}
.modal-header {
    background: var(--verde); padding: 20px 24px;
    display: flex; justify-content: space-between; align-items: center;
    border-radius: 16px 16px 0 0; position: sticky; top: 0;
}
.modal-header h5 {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px; font-weight: 600; color: var(--branco);
}
.modal-close {
    background: none; border: none; cursor: pointer;
    color: rgba(255,255,255,0.7);
    display: flex; align-items: center;
    transition: color .2s;
}
.modal-close:hover { color: var(--branco); }
.modal-body { padding: 24px; }
.modal-desc { font-size: 14px; color: var(--texto-muted); line-height: 1.7; margin-bottom: 20px; }
.modal-preco-box {
    background: var(--cinza-claro);
    border: 1px solid var(--borda);
    border-radius: var(--radius); padding: 20px;
}
.modal-preco-box h6 {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 1px;
    color: var(--texto-muted); margin-bottom: 14px;
}
.modal-select {
    width: 100%; padding: 10px 14px;
    border: 1px solid var(--borda); border-radius: var(--radius-sm);
    font-family: 'DM Sans', sans-serif; font-size: 14px;
    color: var(--texto); background: var(--branco);
    margin-bottom: 16px; cursor: pointer;
}
.modal-valores { display: none; }
.modal-linha {
    display: flex; justify-content: space-between;
    font-size: 13px; padding: 6px 0;
    color: var(--texto-muted);
}
.modal-linha strong { color: var(--texto); }
.modal-total {
    display: flex; justify-content: space-between; align-items: center;
    padding: 12px 0 0; margin-top: 8px;
    border-top: 1px solid var(--borda);
}
.modal-total span { font-size: 14px; font-weight: 600; color: var(--verde); }
.modal-total strong { font-size: 1.3rem; color: var(--verde); font-family: 'Playfair Display',serif; }
.modal-msg { text-align: center; font-size: 13px; color: var(--texto-muted); padding: 8px 0; }
.modal-footer { padding: 16px 24px; border-top: 1px solid var(--borda); }
.btn-zap-modal {
    background: #25D366; color: var(--branco);
    border: none; padding: 14px; width: 100%;
    border-radius: var(--radius-pill); font-size: 15px; font-weight: 700;
    cursor: pointer; display: flex; align-items: center;
    justify-content: center; gap: 8px;
    transition: background .2s; font-family: 'DM Sans', sans-serif;
}
.btn-zap-modal:hover { background: #1ebe5d; }

/* --- WHATSAPP FLUTUANTE --- */
.zap-float {
    position: fixed; bottom: 28px; right: 28px;
    width: 56px; height: 56px; border-radius: 50%;
    background: #25D366; color: var(--branco);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.5);
    z-index: 9000; transition: transform .2s;
    font-size: 28px;
}
.zap-float:hover { transform: scale(1.1); }

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .hero-cards { grid-template-columns: repeat(3,1fr); }
    .servicos-grid { grid-template-columns: repeat(2,1fr); }
    .diferenciais-grid { grid-template-columns: repeat(2,1fr); }
    .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .nav-links, .nav-cta { display: none; }
    .nav-mobile-btn { display: flex; }
    .hero { padding: 60px 0 40px; }
    .hero-cards { grid-template-columns: 1fr; max-width: 100%; }
    .stats-grid { grid-template-columns: repeat(2,1fr); }
    .stat-item:nth-child(2) { border-right: none; }
    .servicos-grid { grid-template-columns: 1fr; }
    .etapas-grid { grid-template-columns: repeat(2,1fr); gap: 24px; }
    .etapas-grid::before { display: none; }
    .diferenciais-grid { grid-template-columns: 1fr; }
    .adv-grid { grid-template-columns: 1fr; }
    .sobre-grid { grid-template-columns: 1fr; }
    .sobre-foto-wrap { max-width: 280px; margin: 0 auto; }
    .depoimentos-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; }
}
@media (max-width: 480px) {
    .hero h1 { font-size: 1.8rem; }
    .hero-btns { flex-direction: column; }
    .hero-btns .btn-primary, .hero-btns .btn-ghost { width: 100%; justify-content: center; }
    .stats-grid { grid-template-columns: repeat(2,1fr); }
    .cta-btns { flex-direction: column; align-items: center; }
}
