/* ============================================
   Paulo Andrade Advogados — LP Furto Celular
   Tema: dark + dourado #e1b969
   Fonts: Poppins (títulos) + Inter (corpo)
   ============================================ */

:root {
    --bg: #07111F;
    --bg-alt: #091423;
    --bg-deep: #050d1a;
    --bg-card: rgba(255, 255, 255, 0.04);
    --bg-card-hover: rgba(225, 185, 105, 0.06);
    --border: rgba(255, 255, 255, 0.08);
    --border-gold: rgba(225, 185, 105, 0.4);

    --text: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.72);
    --text-dim: rgba(255, 255, 255, 0.6);
    --text-fade: rgba(255, 255, 255, 0.45);

    --gold: #e1b969;
    --gold-light: #ecd28d;
    --gold-dark: #b69244;
    --gold-deep: #8a6d2e;

    --blue-400: #60a5fa;
    --blue-500: #3b82f6;
    --blue-600: #2563eb;
    --blue-700: #1d4ed8;
    --blue-800: #1e40af;

    --red-500: #ef4444;
    --green-500: #25D366;
    --green-600: #128C7E;

    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 28px;
    --transition: .3s ease;
    --container: 1280px;

    --ff-head: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --ff-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--ff-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4, .section-title, .hero-title, .cta-title { font-family: var(--ff-head); }

.page { min-height: 100vh; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ============ ACCENT (dourado) ============ */
.accent { color: var(--gold); }

/* ============ BUTTONS ============ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 14px;
    font-family: var(--ff-body);
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: 0;
    transition: var(--transition);
    white-space: nowrap;
}
.btn-primary {
    background: var(--blue-600);
    color: #fff;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.25);
}
.btn-primary:hover {
    background: var(--blue-500);
    transform: translateY(-1px);
}
.btn-outline {
    background: transparent;
    color: var(--gold);
    border: 1.5px solid var(--gold);
}
.btn-outline:hover {
    background: rgba(225, 185, 105, 0.1);
    color: var(--gold-light);
    border-color: var(--gold-light);
}
.btn-gold {
    background: var(--gold);
    color: var(--bg);
    font-weight: 800;
    box-shadow: 0 20px 50px rgba(225, 185, 105, 0.3);
}
.btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-2px) scale(1.02);
}
.btn-lg { padding: 16px 32px; font-size: 1.05rem; border-radius: 16px; }
.btn-xl { padding: 20px 40px; font-size: 1.15rem; border-radius: 18px; }
.btn-block { width: 100%; padding: 18px 24px; font-size: 1.05rem; }

/* ============ HEADER ============ */
.header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background: rgba(7, 17, 31, 0.92);
}
.header-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.brand-logo {
    height: 46px;
    width: auto;
    object-fit: contain;
}
.nav {
    display: flex;
    align-items: center;
    gap: 28px;
}
.nav a {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.93rem;
    font-weight: 500;
    transition: var(--transition);
    font-family: var(--ff-head);
}
.nav a:hover { color: var(--gold); }
.header-cta {
    font-size: 0.88rem;
    padding: 11px 22px;
}
.mobile-toggle {
    display: none;
    background: transparent;
    border: 0;
    color: #fff;
    font-size: 1.6rem;
    cursor: pointer;
    padding: 4px 8px;
}

/* ============ HERO ============ */
.hero {
    position: relative;
    overflow: hidden;
    min-height: 720px;
    background: linear-gradient(180deg, #04101c 0%, #07111F 100%);
}
.hero-bg-image {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 60%;
    z-index: 1;
    pointer-events: none;
}
.hero-bg-image picture,
.hero-bg-image img {
    width: 100%;
    height: 100%;
    display: block;
}
.hero-bg-image img {
    object-fit: cover;
    object-position: center right;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--bg) 0%, var(--bg) 28%, rgba(7, 17, 31, 0.85) 50%, rgba(7, 17, 31, 0.2) 100%);
    z-index: 10;
    pointer-events: none;
}
.hero-inner {
    position: relative;
    z-index: 20;
    max-width: var(--container);
    margin: 0 auto;
    padding: 100px 24px 100px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}
.eyebrow {
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    margin-bottom: 20px;
    font-family: var(--ff-head);
}
.hero-title {
    font-size: clamp(2.4rem, 5vw, 4.4rem);
    font-weight: 800;
    line-height: 1.05;
    color: #fff;
    margin-bottom: 28px;
    letter-spacing: -0.02em;
}
.hero-lead {
    font-size: 1.15rem;
    line-height: 1.65;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 580px;
}
.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 44px;
}
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 22px 20px;
    backdrop-filter: blur(6px);
    transition: var(--transition);
}
.stat-card:hover {
    border-color: var(--border-gold);
    background: var(--bg-card-hover);
}
.stat-icon {
    width: 30px;
    height: 30px;
    color: var(--gold);
    margin-bottom: 12px;
    display: block;
}
.stat-title {
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 4px;
    font-family: var(--ff-head);
}
.stat-text {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ============ SECTION HEAD ============ */
.section-head { text-align: center; margin-bottom: 56px; }
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

/* ============ ÁREAS (3 por linha no desktop) ============ */
.areas {
    background: var(--bg-alt);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding: 96px 0;
}
.areas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    max-width: 1040px;
    margin: 0 auto;
}
.area-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 32px 28px;
    transition: var(--transition);
    text-align: left;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 200px;
}
.area-card:hover {
    border-color: var(--border-gold);
    background: var(--bg-card-hover);
    transform: translateY(-4px);
}
.area-icon {
    width: 44px;
    height: 44px;
    display: block;
    margin-bottom: 20px;
    padding: 12px;
    box-sizing: content-box;
    background: rgba(225, 185, 105, 0.1);
    border: 1px solid rgba(225, 185, 105, 0.25);
    border-radius: 14px;
    object-fit: contain;
}
.area-card h4 {
    font-family: var(--ff-head);
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 10px;
    color: #fff;
}
.area-card p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.92rem;
    margin-top: auto;
}

/* ============ DUTY (Bancos têm dever de segurança) ============ */
.duty {
    position: relative;
    background: linear-gradient(135deg, #050d1a 0%, #0a1a35 50%, #07111F 100%);
    padding: 110px 0;
    overflow: hidden;
}
.duty-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.9;
}
.duty-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 85% 50%, rgba(225, 185, 105, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 15% 100%, rgba(37, 99, 235, 0.15) 0%, transparent 50%);
}
.duty-pillars {
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.7;
}
.duty-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 56px;
    align-items: center;
}
.duty-content h3.section-title { text-align: left; margin-bottom: 20px; }
.duty-lead {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 16px;
    max-width: 540px;
}
.duty-lead strong { color: var(--gold-light); font-weight: 600; }
.duty-sub {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 28px;
}
.duty-list {
    list-style: none;
    display: grid;
    gap: 18px;
}
.duty-list li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.duty-bullet {
    width: 28px;
    height: 28px;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}
.duty-list strong {
    color: #fff;
    display: block;
    font-size: 1.05rem;
    margin-bottom: 4px;
    font-family: var(--ff-head);
    font-weight: 600;
}
.duty-list p {
    color: var(--text-muted);
    font-size: 0.92rem;
}
.duty-shield {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.duty-shield::before {
    content: '';
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(225, 185, 105, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}
.duty-shield svg {
    width: 100%;
    max-width: 280px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(225, 185, 105, 0.25));
}

/* ============ HOW ============ */
.how { padding: 96px 0; background: var(--bg); }
.how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.how-card {
    position: relative;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 44px 36px 36px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.how-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-4px);
}
.how-num {
    font-family: var(--ff-head);
    font-size: 3.4rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 4px;
    opacity: 0.95;
}
.how-content h4 {
    font-size: 1.55rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
    font-family: var(--ff-head);
}
.how-content p {
    color: var(--text-dim);
    font-size: 1.02rem;
    line-height: 1.65;
}

/* ============ ABOUT (Dr Paulo) ============ */
.about {
    background: var(--bg-alt);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.about::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(225, 185, 105, 0.08) 0%, transparent 60%);
    pointer-events: none;
}
.about-inner {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 64px;
    align-items: center;
    position: relative;
}
.about-photo-wrap {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 4 / 5;
    max-width: 420px;
    margin: 0 auto;
}
.about-photo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-photo-accent {
    position: absolute;
    inset: 0;
    border: 2px solid var(--gold);
    border-radius: var(--radius-xl);
    transform: translate(14px, 14px);
    z-index: -1;
}
.about-photo {
    position: relative;
    padding: 14px 14px 14px 0;
}
.about-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-top: 22px;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}
.about-badges span {
    background: rgba(225, 185, 105, 0.1);
    border: 1px solid var(--border-gold);
    color: var(--gold);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    font-family: var(--ff-head);
    letter-spacing: 0.04em;
}
.about-content .section-title { text-align: left; margin-bottom: 22px; }
.about-text {
    color: var(--text-muted);
    font-size: 1.02rem;
    line-height: 1.7;
    margin-bottom: 16px;
}
.about-text strong { color: var(--gold-light); font-weight: 600; }
.about-features {
    list-style: none;
    display: grid;
    gap: 12px;
    margin: 28px 0 32px;
}
.about-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text);
    font-size: 0.98rem;
}
.about-features li svg {
    width: 24px;
    height: 24px;
    color: var(--gold);
    flex-shrink: 0;
}
.about-features strong { color: var(--gold-light); font-weight: 600; }

/* ============ CTA ============ */
.cta {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #04101c 0%, #0a1a35 100%);
    padding: 96px 0;
    border-top: 1px solid var(--border-gold);
    border-bottom: 1px solid var(--border-gold);
}
.cta-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(225, 185, 105, 0.1) 0%, transparent 60%);
    pointer-events: none;
}
.cta-inner {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 880px;
}
.cta-title {
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}
.cta-text {
    color: var(--text-muted);
    font-size: 1.15rem;
    max-width: 680px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

/* ============ FAQ ============ */
.faq {
    background: var(--bg);
    padding: 96px 0;
}
.faq-list {
    max-width: 880px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}
.faq-item:hover { border-color: var(--border-gold); }
.faq-item.active { border-color: var(--gold); }
.faq-q {
    width: 100%;
    background: transparent;
    border: 0;
    cursor: pointer;
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    text-align: left;
    color: #fff;
    font-family: var(--ff-head);
    font-size: 1.1rem;
    font-weight: 600;
}
.faq-toggle {
    color: var(--gold);
    font-size: 1.7rem;
    line-height: 1;
    transition: var(--transition);
    flex-shrink: 0;
}
.faq-item.active .faq-toggle { transform: rotate(45deg); }
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.faq-item.active .faq-a { max-height: 400px; }
.faq-a-inner {
    padding: 0 32px 26px;
    color: var(--text-dim);
    font-size: 1rem;
    line-height: 1.7;
}

/* ============ FORM ============ */
.form-section { padding: 96px 0; background: var(--bg-alt); }
.form-container { max-width: 760px; }
.form-head { text-align: center; margin-bottom: 36px; }
.form-sub {
    color: var(--text-muted);
    font-size: 1.02rem;
    margin-top: 12px;
}
#contactForm {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 40px;
    backdrop-filter: blur(8px);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
    display: block;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
    font-family: var(--ff-head);
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    font-family: var(--ff-body);
    font-size: 0.96rem;
    transition: var(--transition);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255, 255, 255, 0.32); }
.form-group select option { background: var(--bg); color: #fff; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: 0;
    border-color: var(--gold);
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 0 4px rgba(225, 185, 105, 0.15);
}
.form-privacy {
    text-align: center;
    color: var(--text-fade);
    font-size: 0.83rem;
    margin-top: 18px;
    line-height: 1.55;
}

/* ============ FOOTER ============ */
.footer {
    background: var(--bg-deep);
    border-top: 1px solid var(--border);
    padding: 64px 0 32px;
    color: var(--text-fade);
}
.footer-top {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border);
}
.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 18px;
    object-fit: contain;
}
.footer-text {
    color: var(--text-muted);
    font-size: 0.94rem;
    line-height: 1.65;
    max-width: 480px;
}
.footer-contact p {
    color: var(--text-muted);
    font-size: 0.92rem;
    margin-bottom: 14px;
    line-height: 1.5;
}
.footer-contact strong {
    color: #fff;
    display: block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2px;
    font-family: var(--ff-head);
}
.footer-contact a {
    color: var(--gold);
    transition: var(--transition);
}
.footer-contact a:hover { color: var(--gold-light); }
.footer-bottom {
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.85rem;
    color: var(--text-fade);
}
.footer-oab { font-size: 0.76rem; color: rgba(255, 255, 255, 0.4); }

/* ============ WHATSAPP FLOAT ============ */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--green-500);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
    z-index: 99;
    transition: var(--transition);
}
.whatsapp-float:hover { background: var(--green-600); transform: scale(1.08); }
.whatsapp-float svg { width: 30px; height: 30px; position: relative; z-index: 2; }
.wa-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--green-500);
    animation: wa-pulse 2s infinite;
    z-index: 1;
}
@keyframes wa-pulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.6); opacity: 0; }
}

/* ============ ANIMAÇÕES ============ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* ============ VISIBILIDADE (mobile/desktop) ============ */
.mobile-only { display: none; }
.desktop-only { display: block; }

/* ============ SUB-HERO (só mobile) ============ */
.sub-hero {
    background: linear-gradient(180deg, var(--bg) 0%, #050d1a 100%);
    padding: 50px 0 40px;
    text-align: center;
    border-bottom: 1px solid rgba(225, 185, 105, 0.1);
}
.sub-hero-divider {
    display: block;
    width: 48px;
    height: 3px;
    background: var(--gold);
    margin: 0 auto 24px;
    border-radius: 2px;
}
.sub-hero h2 {
    font-family: var(--ff-head);
    font-size: 1.55rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin-bottom: 16px;
    text-transform: uppercase;
}
.sub-hero p {
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.6;
    max-width: 460px;
    margin: 0 auto;
}

/* ============ EMPATHY (só mobile) ============ */
.empathy {
    background: #f7f4ea;
    padding: 56px 0 48px;
}
.empathy-divider {
    display: block;
    width: 48px;
    height: 3px;
    background: var(--gold);
    margin: 0 auto 22px;
    border-radius: 2px;
}
.empathy h2 {
    font-family: var(--ff-head);
    font-size: 1.75rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.15;
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}
.empathy-lead {
    text-align: center;
    color: #4a4a4a;
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 460px;
    margin: 0 auto 32px;
}
.empathy-list {
    list-style: none;
    display: grid;
    gap: 18px;
    max-width: 460px;
    margin: 0 auto;
}
.empathy-list li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.empathy-icon {
    width: 38px;
    height: 38px;
    color: var(--gold-dark);
    flex-shrink: 0;
    margin-top: 2px;
}
.empathy-list strong {
    display: block;
    color: #1a1a1a;
    font-family: var(--ff-head);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 4px;
}
.empathy-list p {
    color: #4a4a4a;
    font-size: 0.88rem;
    line-height: 1.5;
}

/* ============ WHATSAPP BAR (só mobile, fixa rodapé) ============ */
.whatsapp-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: var(--green-500);
    color: #fff;
    text-align: center;
    padding: 16px 20px;
    font-family: var(--ff-head);
    font-weight: 700;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.3);
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-top: 2px solid var(--gold);
}
.whatsapp-bar svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}
.whatsapp-bar:active { background: var(--green-600); }

/* ============ RESPONSIVO ============ */
@media (max-width: 1024px) {
    .areas-grid { grid-template-columns: repeat(2, 1fr); max-width: 640px; }
    .hero { min-height: auto; }
    .hero-bg-image {
        width: 100%;
        opacity: 0.18;
    }
    .hero-overlay {
        background: linear-gradient(180deg, rgba(7, 17, 31, 0.85) 0%, var(--bg) 80%);
    }
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 0;
        padding: 70px 24px 90px;
    }
    .hero-lead { margin-left: auto; margin-right: auto; }
    .hero-ctas { justify-content: center; }
    .hero-stats { max-width: 720px; margin: 0 auto; }
    .duty-inner { grid-template-columns: 1fr; gap: 50px; }
    .duty-shield svg { max-width: 240px; }
    .duty-pillars { opacity: 0.4; }
    .how-grid { grid-template-columns: 1fr; }
    .about-inner { grid-template-columns: 1fr; gap: 50px; text-align: center; }
    .about-content .section-title { text-align: center; }
    .about-features { max-width: 480px; margin-left: auto; margin-right: auto; }
    .about-features li { justify-content: center; }
    .footer-top { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 768px) {
    /* === VISIBILIDADE === */
    .mobile-only { display: block; }
    .desktop-only { display: none !important; }
    .mobile-hide { display: none !important; }

    /* === HEADER === */
    .mobile-toggle { display: block; }
    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--bg);
        flex-direction: column;
        align-items: stretch;
        padding: 0 24px;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
        border-bottom: 1px solid var(--border);
    }
    .nav.active {
        max-height: 520px;
        padding: 18px 24px;
        gap: 6px;
    }
    .nav a {
        padding: 12px 0;
        font-size: 1rem;
        border-bottom: 1px solid var(--border);
    }
    .nav a:last-child { border-bottom: 0; }
    .header-cta { display: none; }
    .header-inner { padding: 12px 20px; }
    .brand-logo { height: 36px; }

    /* === BODY: espaço para barra fixa === */
    body { padding-bottom: 70px; }

    /* === HERO: left-aligned + imagem direita === */
    .hero {
        min-height: auto;
        padding: 0;
    }
    .hero-bg-image {
        width: 65%;
        opacity: 0.95;
    }
    .hero-bg-image img {
        object-position: top center;
        object-fit: cover;
    }
    .hero-overlay {
        background: linear-gradient(to right, var(--bg) 0%, rgba(7, 17, 31, 0.85) 40%, rgba(7, 17, 31, 0.2) 75%, transparent 100%);
    }
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: left;
        gap: 0;
        padding: 60px 20px 50px;
        min-height: 560px;
        align-items: center;
    }
    .hero-left { text-align: left; }
    .eyebrow {
        font-size: 0.72rem;
        letter-spacing: 0.22em;
        margin-bottom: 16px;
    }
    .hero-title {
        font-size: 2.1rem;
        margin-bottom: 22px;
        max-width: 88%;
        text-align: left;
    }
    .hero-lead {
        font-size: 0.95rem;
        margin: 0 0 28px 0;
        max-width: 75%;
    }
    .hero-ctas {
        justify-content: flex-start;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        margin-bottom: 32px;
    }
    .hero-ctas .btn {
        max-width: 60%;
        min-width: 220px;
        padding: 14px 22px;
        font-size: 0.95rem;
    }
    .hero-stats { grid-template-columns: 1fr; gap: 10px; }
    .stat-card { padding: 14px 16px; display: flex; align-items: center; gap: 12px; }
    .stat-icon { width: 26px; height: 26px; margin-bottom: 0; }
    .stat-card > div, .stat-card .stat-title, .stat-card .stat-text { display: inline; }
    .stat-title { font-size: 0.9rem; margin-bottom: 0; }
    .stat-text { font-size: 0.78rem; display: block; margin-top: 2px; }

    /* === SUB-HERO === */
    .sub-hero { padding: 44px 20px 36px; }

    /* === EMPATHY === */
    .empathy { padding: 50px 20px 44px; }

    /* === ÁREAS (6 cards, 2 colunas) === */
    .areas { padding: 60px 0 50px; }
    .areas .section-head { margin-bottom: 36px; }
    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 0 6px;
        max-width: none;
    }
    .area-card { padding: 18px 14px; min-height: 0; }
    .area-icon { width: 32px; height: 32px; margin-bottom: 12px; padding: 9px; border-radius: 12px; }
    .area-card h4 { font-size: 0.9rem; margin-bottom: 8px; line-height: 1.25; }
    .area-card p { font-size: 0.76rem; line-height: 1.45; }

    /* === DUTY === */
    .duty { padding: 60px 0 50px; }
    .duty-content h3.section-title { text-align: left; font-size: 1.8rem; }
    .duty-lead { font-size: 1rem; }
    .duty-shield svg { max-width: 180px; }
    .duty-list { gap: 14px; }
    .duty-list strong { font-size: 1rem; }
    .duty-list p { font-size: 0.88rem; }

    /* === HOW === */
    .how { padding: 60px 0 50px; }
    .how-grid { gap: 16px; }
    .how-card { padding: 26px 22px 22px; }
    .how-num { font-size: 2.2rem; }
    .how-content h4 { font-size: 1.2rem; margin-bottom: 10px; }
    .how-content p { font-size: 0.95rem; }

    /* === ABOUT === */
    .about { padding: 60px 0 50px; }
    .about-photo-wrap { max-width: 260px; }
    .about-badges { max-width: 260px; gap: 6px; }
    .about-badges span { padding: 5px 12px; font-size: 0.7rem; }
    .about-content .section-title { font-size: 1.7rem; }
    .about-text { font-size: 0.95rem; }
    .about-features { gap: 10px; margin: 22px 0 26px; }
    .about-features li { font-size: 0.92rem; }

    /* === CTA === */
    .cta { padding: 60px 0 50px; }
    .cta-title { font-size: 1.7rem; margin-bottom: 18px; }
    .cta-text { font-size: 1rem; margin-bottom: 28px; }
    .btn-xl { padding: 16px 28px; font-size: 1rem; width: 100%; max-width: 360px; }

    /* === FAQ === */
    .faq { padding: 60px 0 50px; }
    .faq-list { gap: 10px; }
    .faq-q { padding: 18px 22px; font-size: 0.98rem; }
    .faq-toggle { font-size: 1.5rem; }
    .faq-a-inner { padding: 0 22px 20px; font-size: 0.92rem; }

    /* === FORM === */
    .form-section { padding: 60px 0 50px; }
    .form-head { margin-bottom: 26px; }
    .form-head .section-title { font-size: 1.7rem; }
    .form-sub { font-size: 0.95rem; }
    #contactForm { padding: 24px 20px; border-radius: 18px; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .form-group { margin-bottom: 14px; }
    .form-group input,
    .form-group select,
    .form-group textarea { padding: 12px 14px; font-size: 0.93rem; }

    /* === FOOTER === */
    .footer { padding: 40px 0 24px; }
    .footer-top { padding-bottom: 28px; gap: 24px; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }
    .footer-logo { height: 42px; margin-bottom: 14px; }
    .footer-text { font-size: 0.88rem; }
    .footer-contact p { font-size: 0.88rem; }

    /* === SECTION TITLES === */
    .section-title { font-size: 1.7rem; }
    .section-head { margin-bottom: 32px; }

    /* === BARRA WHATSAPP (substitui flutuante) === */
    .whatsapp-float { display: none; }
    .whatsapp-bar { display: flex; }
}

@media (max-width: 480px) {
    .hero-bg-image { width: 70%; opacity: 0.9; }
    .hero-overlay {
        background: linear-gradient(to right, var(--bg) 0%, rgba(7, 17, 31, 0.92) 35%, rgba(7, 17, 31, 0.35) 70%, transparent 100%);
    }
    .hero-inner { min-height: 520px; padding: 50px 18px 40px; }
    .hero-title { font-size: 1.85rem; max-width: 92%; }
    .hero-lead { font-size: 0.92rem; max-width: 72%; }
    .hero-ctas .btn { min-width: 200px; max-width: 70%; font-size: 0.92rem; }

    .sub-hero h2 { font-size: 1.4rem; }
    .sub-hero p { font-size: 0.92rem; }
    .empathy h2 { font-size: 1.55rem; }
    .empathy-lead { font-size: 0.9rem; }
    .empathy-list strong { font-size: 0.95rem; }
    .empathy-list p { font-size: 0.85rem; }

    .areas-grid { grid-template-columns: 1fr; gap: 10px; padding: 0 4px; }
    .area-card {
        display: grid;
        grid-template-columns: auto 1fr;
        column-gap: 14px;
        align-items: center;
        padding: 14px 16px;
        min-height: 0;
    }
    .area-icon { width: 26px; height: 26px; margin-bottom: 0; padding: 8px; border-radius: 10px; grid-row: 1 / 3; align-self: center; }
    .area-card h4 { margin-bottom: 2px; font-size: 0.92rem; align-self: end; }
    .area-card p { font-size: 0.78rem; line-height: 1.4; margin-top: 0; align-self: start; }

    .section-title { font-size: 1.55rem; }
    .cta-title { font-size: 1.5rem; }

    .whatsapp-bar { padding: 14px 18px; font-size: 0.98rem; }
}
