/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --gold: #C9A84C;
    --gold-light: #E8D5A3;
    --gold-dark: #9A7B2E;
    --gold-bg: rgba(201, 168, 76, 0.07);
    --gold-border: rgba(201, 168, 76, 0.2);
    --black: #0A0A0A;
    --black-soft: #111111;
    --black-card: #181818;
    --white: #FFFFFF;
    --gray: rgba(255,255,255,0.55);
    --gray-light: rgba(255,255,255,0.85);
    --font-head: 'Cormorant Garamond', serif;
    --font-body: 'Raleway', sans-serif;
    --transition: all 0.4s ease;
    --radius: 2px;
    --section-pad: 120px 0;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--white);
    line-height: 1.75;
    overflow-x: hidden;
    font-size: 1rem;
    font-weight: 300;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 32px; }

.gold-italic { color: var(--gold); font-style: italic; }

h1, h2, h3 { font-family: var(--font-head); line-height: 1.15; font-weight: 400; }
h1 { font-size: clamp(2.8rem, 6vw, 4.8rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: 1.25rem; font-weight: 600; }

.section-label {
    display: inline-block;
    color: var(--gold);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-header { text-align: center; margin-bottom: 72px; }
.section-header h2 { margin-bottom: 20px; }
.section-desc { color: var(--gray); max-width: 580px; margin: 0 auto; font-size: 1rem; line-height: 1.8; }

/* ===== BOTÕES ===== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gold);
    color: var(--black);
    padding: 16px 38px;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid var(--gold);
    cursor: pointer;
    transition: var(--transition);
}
.btn-primary svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-primary:hover {
    background: transparent;
    color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(201,168,76,0.15);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 16px 38px;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.88rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.25);
    color: rgba(255,255,255,0.8);
    transition: var(--transition);
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

.btn-block { width: 100%; justify-content: center; }

/* ===== HEADER ===== */
#header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; }

.navbar { padding: 24px 0; transition: var(--transition); }

.navbar.scrolled {
    background: rgba(10,10,10,0.97);
    backdrop-filter: blur(16px);
    padding: 14px 0;
    border-bottom: 1px solid var(--gold-border);
}

.nav-inner { display: flex; align-items: center; justify-content: space-between; }

.logo { display: flex; align-items: center; }

.logo-img { height: 48px !important; width: auto !important; max-width: 150px !important; object-fit: contain !important; display: block !important; flex-shrink: 0; }
.logo-img-footer { height: 60px !important; width: auto !important; max-width: 160px !important; margin: 0 auto 20px; opacity: 0.9; object-fit: contain !important; display: block; }

.nav-links { display: flex; align-items: center; gap: 40px; list-style: none; }
.nav-links a {
    color: rgba(255,255,255,0.7);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: var(--transition);
}
.nav-links a:hover { color: var(--gold); }

.btn-nav {
    border: 1px solid var(--gold-border) !important;
    color: var(--gold) !important;
    padding: 10px 24px !important;
    border-radius: var(--radius) !important;
    letter-spacing: 1.5px !important;
}
.btn-nav:hover { background: var(--gold) !important; color: var(--black) !important; }

.menu-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.menu-toggle span { display: block; width: 24px; height: 1px; background: var(--white); transition: var(--transition); }
.menu-toggle.ativo span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.menu-toggle.ativo span:nth-child(2) { opacity: 0; }
.menu-toggle.ativo span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--black);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 80% 30%, rgba(201,168,76,0.08) 0%, transparent 55%),
        radial-gradient(ellipse at 15% 85%, rgba(201,168,76,0.05) 0%, transparent 45%);
}

.hero-overlay-text {
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    font-family: var(--font-head);
    font-size: clamp(6rem, 14vw, 16rem);
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 1px rgba(201,168,76,0.06);
    letter-spacing: 0.3em;
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 150px;
    padding-bottom: 100px;
    max-width: 860px;
}

.hero-label {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 28px;
    opacity: 0.85;
}
.hero-label::before { content: ''; width: 48px; height: 1px; background: var(--gold); }

.hero h1 { margin-bottom: 28px; font-weight: 300; }
.hero h1 em { font-weight: 600; }

.hero-desc {
    font-size: 1.05rem;
    color: var(--gray);
    margin-bottom: 36px;
    line-height: 1.9;
    max-width: 600px;
    font-weight: 300;
}

.hero-badge-online {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201,168,76,0.08);
    border: 1px solid rgba(201,168,76,0.25);
    color: rgba(232,213,163,0.9);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    padding: 8px 18px;
    border-radius: 20px;
    margin-bottom: 40px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: #4ade80;
    border-radius: 50%;
    animation: blink 1.8s infinite;
    flex-shrink: 0;
}
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.2; } }

.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 26px;
    height: 44px;
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: 13px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}
.scroll-indicator span { width: 3px; height: 7px; background: var(--gold); border-radius: 2px; animation: scrollBounce 2s infinite; }
@keyframes scrollBounce { 0%,100% { opacity: 1; transform: translateY(0); } 80% { opacity: 0; transform: translateY(16px); } }

/* ===== NÚMEROS ===== */
.numeros {
    background: var(--black-soft);
    border-top: 1px solid var(--gold-border);
    border-bottom: 1px solid var(--gold-border);
    padding: 56px 0;
}
.numeros-grid { display: grid; grid-template-columns: repeat(4, 1fr); }

.numero-item { text-align: center; padding: 24px; border-right: 1px solid var(--gold-border); }
.numero-item:last-child { border-right: none; }
.numero-item strong {
    display: block;
    font-family: var(--font-head);
    font-size: 2.8rem;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 10px;
}
.numero-item strong span { font-size: 1.8rem; }
.numero-item > span { font-size: 0.72rem; color: var(--gray); letter-spacing: 2px; text-transform: uppercase; }

/* ===== SOBRE ===== */
.sobre { padding: var(--section-pad); background: var(--black-soft); }

.sobre-grid { display: grid; grid-template-columns: 440px 1fr; gap: 100px; align-items: center; }

.sobre-foto-wrap { position: relative; }

.foto-moldura {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    border: 1px solid var(--gold-border);
    background: var(--black-card);
}

.foto-dra { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }

.foto-placeholder {
    display: none;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 32px;
    font-family: var(--font-head);
    font-size: 1.2rem;
    color: rgba(255,255,255,0.4);
    text-align: center;
}

.foto-detalhe-linha {
    position: absolute;
    left: -20px;
    top: 48px;
    width: 3px;
    height: 55%;
    background: linear-gradient(to bottom, var(--gold), transparent);
}

.foto-detalhe-ponto {
    position: absolute;
    left: -24px;
    top: 44px;
    width: 11px;
    height: 11px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    background: var(--black-soft);
}

.sobre-intro {
    font-family: var(--font-head);
    font-size: 1.35rem;
    font-style: italic;
    color: var(--gold-light);
    margin-bottom: 20px;
    font-weight: 300;
    line-height: 1.5;
}

.sobre-texto h2 { margin-bottom: 24px; }
.sobre-texto p { color: var(--gray); margin-bottom: 18px; font-size: 0.98rem; }
.sobre-texto p strong { color: var(--white); font-weight: 600; }

.sobre-quote {
    border-left: 2px solid var(--gold);
    padding: 16px 24px;
    margin: 32px 0;
    font-family: var(--font-head);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--gold-light);
    font-weight: 300;
    line-height: 1.6;
    background: var(--gold-bg);
}

.diferenciais { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 32px 0 40px; }
.diferencial { display: flex; align-items: flex-start; gap: 10px; font-size: 0.88rem; color: var(--gray-light); line-height: 1.5; }
.d-icone { color: var(--gold); font-size: 0.6rem; flex-shrink: 0; margin-top: 4px; }

/* ===== FRASE DIVISÓRIA ===== */
.frase-divisoria {
    padding: 80px 0;
    background: var(--black);
    border-top: 1px solid var(--gold-border);
    border-bottom: 1px solid var(--gold-border);
    text-align: center;
}
.frase-divisoria p {
    font-family: var(--font-head);
    font-size: clamp(1.3rem, 3vw, 2rem);
    font-style: italic;
    font-weight: 300;
    color: rgba(255,255,255,0.7);
    max-width: 820px;
    margin: 0 auto;
    line-height: 1.6;
}
.frase-divisoria p::before,
.frase-divisoria p::after { content: '—'; color: var(--gold); margin: 0 12px; opacity: 0.6; }

/* ===== ÁREAS ===== */
.areas { padding: var(--section-pad); background: var(--black-soft); }

.areas-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1px; background: var(--gold-border); border: 1px solid var(--gold-border); }

.area-card {
    background: var(--black-soft);
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    cursor: default;
}

.area-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, var(--gold), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.area-card:hover { background: rgba(201,168,76,0.04); }
.area-card:hover::before { transform: scaleX(1); }

.area-card.destaque { background: rgba(201,168,76,0.04); }
.area-card.destaque::before { transform: scaleX(0.4); }

.area-icone { font-size: 1.8rem; margin-bottom: 18px; line-height: 1; opacity: 0.85; }
.area-card h3 { color: var(--gold-light); margin-bottom: 12px; font-family: var(--font-head); font-size: 1.3rem; font-weight: 400; }
.area-card p { color: var(--gray); font-size: 0.88rem; line-height: 1.75; }

/* ===== CTA BANNER ===== */
.cta-banner {
    padding: 100px 0;
    background: linear-gradient(135deg, #0D0B07 0%, #1A1508 50%, #0D0B07 100%);
    border-top: 1px solid rgba(201,168,76,0.15);
    border-bottom: 1px solid rgba(201,168,76,0.15);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(201,168,76,0.08) 0%, transparent 65%);
}

.cta-inner { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 48px; flex-wrap: wrap; }

.cta-label {
    font-size: 0.7rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    display: block;
}

.cta-texto h2 { color: var(--white); font-size: clamp(2rem, 4vw, 3rem); font-weight: 300; margin-bottom: 12px; }
.cta-texto h2 em { color: var(--gold); font-weight: 400; }
.cta-texto p { color: var(--gray); font-size: 1rem; }

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--gold);
    color: var(--black);
    padding: 18px 40px;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    white-space: nowrap;
    transition: var(--transition);
    flex-shrink: 0;
    border: 1px solid var(--gold);
}
.btn-cta svg { width: 20px; height: 20px; }
.btn-cta:hover { background: transparent; color: var(--gold); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(201,168,76,0.15); }

/* ===== CONTATO ===== */
.contato { padding: var(--section-pad); background: var(--black); }

.contato-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 100px; align-items: start; }

.contato-info h2 { margin-bottom: 20px; }
.contato-desc { color: var(--gray); margin-bottom: 48px; font-size: 0.98rem; line-height: 1.8; }

.info-lista { display: flex; flex-direction: column; gap: 24px; }

.info-item { display: flex; align-items: center; gap: 18px; }

.info-icon {
    width: 48px;
    height: 48px;
    background: var(--gold-bg);
    border: 1px solid var(--gold-border);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-item strong { display: block; color: var(--gold); font-size: 0.68rem; letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 3px; }
.info-item a, .info-item span { color: var(--gray-light); font-size: 0.92rem; }
.info-item a:hover { color: var(--gold); }

/* ===== FORMULÁRIO ===== */
.contato-form-wrap {
    background: var(--black-soft);
    border: 1px solid var(--gold-border);
    padding: 48px 40px;
}

.contato-form-wrap h3 {
    font-family: var(--font-head);
    color: var(--white);
    font-size: 1.9rem;
    font-weight: 400;
    margin-bottom: 8px;
}

.form-subtitulo { color: var(--gray); font-size: 0.88rem; margin-bottom: 32px; padding-bottom: 28px; border-bottom: 1px solid var(--gold-border); }

.form-group { margin-bottom: 20px; }

.form-group label { display: block; color: rgba(255,255,255,0.45); font-size: 0.68rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 8px; }

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(201,168,76,0.25);
    padding: 13px 0;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 300;
    outline: none;
    transition: var(--transition);
    border-radius: 0;
    appearance: none;
    background: transparent;
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23C9A84C' stroke-width='1.2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 4px center;
    padding-right: 24px;
    cursor: pointer;
}
.form-group select option { background: #181818; color: var(--white); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-bottom-color: var(--gold); }

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.2); font-style: italic; }

.form-group textarea { resize: vertical; min-height: 100px; }

.form-nota { text-align: center; color: rgba(255,255,255,0.25); font-size: 0.75rem; margin-top: 14px; font-style: italic; }

/* ===== PRESENÇA GEOGRÁFICA ===== */
.presenca {
    padding: var(--section-pad);
    background: var(--black-soft);
    border-top: 1px solid var(--gold-border);
    border-bottom: 1px solid var(--gold-border);
}

.presenca .section-header { text-align: center; margin-bottom: 64px; }
.presenca .section-desc { max-width: 580px; margin: 16px auto 0; color: var(--gray); }

.presenca-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    max-width: 820px;
    margin: 0 auto;
}

.presenca-sede,
.presenca-parceiros {
    flex: 1;
    min-width: 260px;
    text-align: center;
    padding: 40px 32px;
}

.presenca-badge-label {
    display: inline-block;
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid var(--gold-border);
    padding: 4px 14px;
    margin-bottom: 20px;
}

.presenca-sede h3 {
    font-family: var(--font-head);
    font-size: 2.6rem;
    font-weight: 300;
    color: var(--white);
    margin: 0;
    line-height: 1;
}

.presenca-sede p {
    color: var(--gold);
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-top: 6px;
}

.presenca-tipo {
    display: block;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.35);
    letter-spacing: 0.08em;
    margin-top: 18px;
}

.presenca-divisor {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
}

.presenca-linha {
    width: 1px;
    height: 120px;
    background: linear-gradient(to bottom, transparent, var(--gold-border), transparent);
}

.cidades-lista {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cidades-lista li {
    font-size: 1rem;
    color: var(--gray-light);
    font-family: var(--font-head);
    font-weight: 300;
    letter-spacing: 0.04em;
    position: relative;
    padding-left: 18px;
    text-align: left;
}

.cidades-lista li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 1px;
    background: var(--gold);
}

@media (max-width: 640px) {
    .presenca-divisor { display: none; }
    .presenca-sede, .presenca-parceiros { padding: 28px 16px; }
    .presenca-linha { display: none; }
    .cidades-lista li { padding-left: 0; text-align: center; }
    .cidades-lista li::before { display: none; }
}

/* ===== AGENDA ===== */
.agenda {
    padding: 100px 0;
    background: var(--black);
    text-align: center;
    border-top: 1px solid var(--gold-border);
    border-bottom: 1px solid var(--gold-border);
}

.agenda-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 36px;
}

.agenda-linha {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--gold));
    margin-bottom: -12px;
}

.agenda .section-label { margin-bottom: 0; }

.agenda h2 { font-weight: 300; margin-bottom: 0; }

.btn-agenda {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    color: var(--black);
    padding: 18px 56px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    border: 1px solid var(--gold);
    border-radius: var(--radius);
    transition: var(--transition);
}

.btn-agenda:hover {
    background: transparent;
    color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(201,168,76,0.18);
}

.agenda-detalhe {
    font-size: 0.75rem;
    color: var(--gray);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: -12px;
}

/* ===== FOOTER ===== */
.footer {
    background: #060606;
    border-top: 1px solid var(--gold-border);
    padding: 72px 0 36px;
}

.footer-inner { text-align: center; }
.footer-logo { margin-bottom: 8px; }

.footer-tagline { color: rgba(255,255,255,0.3); font-size: 0.85rem; font-style: italic; font-family: var(--font-head); letter-spacing: 0.5px; margin-bottom: 36px; }

.footer-nav { display: flex; justify-content: center; gap: 36px; flex-wrap: wrap; margin-bottom: 48px; }
.footer-nav a { color: rgba(255,255,255,0.35); font-size: 0.72rem; letter-spacing: 2px; text-transform: uppercase; transition: var(--transition); }
.footer-nav a:hover { color: var(--gold); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.04); padding-top: 28px; }
.footer-bottom p { color: rgba(255,255,255,0.2); font-size: 0.75rem; margin-bottom: 8px; }
.oab-aviso { font-style: italic; }

/* ===== WHATSAPP FLUTUANTE ===== */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 58px;
    height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 4px 24px rgba(37,211,102,0.4);
    transition: var(--transition);
    animation: wppPulse 2.5s infinite;
}
.whatsapp-float svg { width: 28px; height: 28px; }

.wpp-tooltip {
    position: absolute;
    right: 68px;
    background: var(--black-soft);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 7px 14px;
    border-radius: 20px;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(8px);
    transition: var(--transition);
    pointer-events: none;
    border: 1px solid var(--gold-border);
}
.whatsapp-float:hover { transform: scale(1.1); animation: none; box-shadow: 0 6px 36px rgba(37,211,102,0.6); }
.whatsapp-float:hover .wpp-tooltip { opacity: 1; transform: translateX(0); }

@keyframes wppPulse {
    0%,100% { box-shadow: 0 4px 24px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 4px 40px rgba(37,211,102,0.7), 0 0 0 8px rgba(37,211,102,0.08); }
}

/* ===== ANIMAÇÕES ===== */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.8s ease, transform 0.8s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVO ===== */
@media (max-width: 960px) {
    :root { --section-pad: 80px 0; }

    .nav-links {
        display: none;
        position: fixed;
        inset: 0;
        top: 80px;
        background: rgba(10,10,10,0.99);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 36px;
        border-top: 1px solid var(--gold-border);
    }
    .nav-links.aberto { display: flex; }
    .nav-links a { font-size: 1rem; }
    .menu-toggle { display: flex; }

    .sobre-grid { grid-template-columns: 1fr; gap: 56px; }
    .sobre-foto-wrap { max-width: 360px; margin: 0 auto; }
    .foto-detalhe-linha, .foto-detalhe-ponto { display: none; }

    .contato-grid { grid-template-columns: 1fr; gap: 56px; }
    .numeros-grid { grid-template-columns: repeat(2, 1fr); }
    .numero-item:nth-child(2) { border-right: none; }
    .numero-item:nth-child(3) { border-right: 1px solid var(--gold-border); border-top: 1px solid var(--gold-border); }
    .numero-item:nth-child(4) { border-right: none; border-top: 1px solid var(--gold-border); }

    .cta-inner { flex-direction: column; text-align: center; }
    .hero-btns { flex-direction: column; align-items: flex-start; }
    .hero-overlay-text { display: none; }
}

@media (max-width: 600px) {
    .container { padding: 0 20px; }
    .hero-content { padding-top: 130px; }
    .diferenciais { grid-template-columns: 1fr; }
    .areas-grid { grid-template-columns: 1fr; }
    .contato-form-wrap { padding: 32px 20px; }
    .whatsapp-float { bottom: 20px; right: 20px; width: 52px; height: 52px; }
    .footer-nav { gap: 20px; }
    .frase-divisoria p::before, .frase-divisoria p::after { display: none; }
}
