/* ══════════════════════════════════════════
   SOLUCIONA CONSUMIDOR — PREMIUM LANDING PAGE
   ══════════════════════════════════════════ */

:root {
    /* Cores Principais */
    --orange-primary: #F85316;
    --orange-dark: #E04006;
    --orange-glow: rgba(248, 83, 22, 0.4);
    
    --green-accent: #00E676;
    --green-glow: rgba(0, 230, 118, 0.3);
    
    /* Base Claras */
    --light-bg: #FFFFFF;
    --light-bg-2: #F8F9FA;
    --light-surface: #FFFFFF;
    
    /* Base Escuras (Híbrido) */
    --dark-bg: #1A1B22;
    --dark-surface: #242631;
    
    /* Texto */
    --text-dark: #121212;
    --text-gray: #555555;
    --text-light: #FFFFFF;
    --text-gray-light: #B0B0B0;
    
    /* Fontes */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Efeitos */
    --shadow-sm: 0 4px 12px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 30px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 50px rgba(0,0,0,0.15);
    
    --glass-bg-light: rgba(255, 255, 255, 0.85);
    --glass-border-light: rgba(255, 255, 255, 0.4);
    
    --glass-bg-dark: rgba(36, 38, 49, 0.7);
    --glass-border-dark: rgba(255, 255, 255, 0.08);
    
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--light-bg);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    line-height: 1.2;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-half {
    max-width: 600px;
}

.text-center { text-align: center; }
.text-white { color: var(--text-light) !important; }
.text-gray { color: var(--text-gray-light) !important; }
.mt-4 { margin-top: 32px; }

.section-padding {
    padding: 100px 0;
}

/* ── BOTÕES ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: var(--font-heading);
}

.btn-primary {
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-dark));
    color: var(--text-light);
    box-shadow: 0 8px 24px var(--orange-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px var(--orange-glow);
    background: linear-gradient(135deg, #FF6B35, var(--orange-primary));
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--orange-primary);
    color: var(--orange-primary);
}

.btn-outline:hover {
    background: var(--orange-primary);
    color: var(--text-light);
}

.btn-large {
    font-size: 1.1rem;
    padding: 18px 48px;
}

.pulse-effect {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 var(--orange-glow); }
    70% { box-shadow: 0 0 0 15px rgba(248, 83, 22, 0); }
    100% { box-shadow: 0 0 0 0 rgba(248, 83, 22, 0); }
}

/* ── TAGS / CHIPS ── */
.tag {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(248, 83, 22, 0.1);
    color: var(--orange-primary);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 24px;
    border: 1px solid rgba(248, 83, 22, 0.2);
}

.green-tag {
    background: rgba(0, 230, 118, 0.15);
    color: #00B25A;
}

.orange-tag {
    background: rgba(248, 83, 22, 0.15);
    color: var(--orange-primary);
}

/* ── BLOBS / DECORATIONS ── */
.blob {
    position: absolute;
    filter: blur(80px);
    z-index: -1;
    border-radius: 50%;
    opacity: 0.5;
    animation: float 10s ease-in-out infinite alternate;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: var(--orange-glow);
    top: -100px;
    right: -100px;
}

.blob-2 {
    width: 300px;
    height: 300px;
    background: var(--green-glow);
    top: 60%;
    left: -100px;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(30px, 50px) scale(1.1); }
}

/* ── HEADER & NAV ── */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background: transparent;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    padding: 12px 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--orange-primary);
    letter-spacing: -0.5px;
    z-index: 1001;
}

/* Nav Menu Desktop */
.nav-menu {
    display: flex;
    gap: 24px;
    list-style: none;
    align-items: center;
}

.nav-link {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--orange-primary);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
    background: none;
    border: none;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--orange-primary);
    border-radius: 5px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* ── HERO SECTION ── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 80px; /* Adicionado para não colar na próxima seção */
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 20px;
    color: var(--text-dark);
}

.hero h1 span {
    color: var(--orange-primary);
    position: relative;
}

.hero h1 span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 12px;
    background: var(--orange-glow);
    z-index: -1;
    border-radius: 10px;
}

.subtitle {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 16px;
}

.hero p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 40px;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}

.hero-trust {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid var(--light-bg);
    margin-left: -12px;
    object-fit: cover;
    flex-shrink: 0;
}

.avatar:first-child { margin-left: 0; }

.hero-trust span {
    margin-left: 16px;
    font-size: 0.85rem;
    color: var(--text-gray);
    font-weight: 500;
    white-space: nowrap;
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
}

.image-backdrop {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
    background: linear-gradient(135deg, var(--orange-primary), var(--green-accent));
    border-radius: var(--radius-xl);
    z-index: -1;
    opacity: 0.15;
    filter: blur(40px);
}

.hero-img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255,255,255,0.5);
}

.floating-card {
    position: absolute;
    bottom: -30px;
    left: -40px;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    border-radius: var(--radius-lg);
    animation: float 6s ease-in-out infinite alternate;
}

.glass {
    background: var(--glass-bg-light);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border-light);
    box-shadow: var(--shadow-md);
}

.icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.icon.green {
    background: var(--green-accent);
    color: #000;
    box-shadow: 0 4px 12px var(--green-glow);
}

.floating-card strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.floating-card span {
    font-size: 0.8rem;
    color: var(--text-gray);
}

/* ── SECTIONS (LIGHT & DARK) ── */
.light-section {
    background-color: var(--light-bg);
}

.light-bg {
    background-color: var(--light-bg);
}

.light-bg-2 {
    background-color: var(--light-bg-2);
}

.dark-section {
    background-color: var(--dark-bg);
    color: var(--text-light);
}

.dark-bg {
    background-color: var(--dark-bg);
}

.section-title h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 16px;
}

.section-title h2 span {
    color: var(--orange-primary);
}

.dark-section .section-title h2 span {
    color: var(--orange-primary);
}

/* ── IMPACT SECTION ── */
.impact {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, var(--dark-bg) 0%, #15161A 100%);
    overflow: hidden;
}

.impact::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--orange-glow) 0%, transparent 60%);
    opacity: 0.15;
    pointer-events: none;
}

.impact-content {
    max-width: 800px;
    margin: 0 auto;
}

.impact h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 24px;
}

.impact .lead {
    font-size: 1.2rem;
    color: var(--orange-primary);
    font-weight: 500;
    margin-bottom: 24px;
}

.impact p {
    font-size: 1.05rem;
    color: #CCCCCC;
}

/* ── CASES (GRID CARDS) ── */
.grid {
    display: grid;
    gap: 30px;
    margin-top: 50px;
}

.cards-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.card {
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.glass-light {
    background: var(--light-surface);
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: var(--shadow-sm);
}

.card-hover:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(248, 83, 22, 0.2);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: inline-block;
    padding: 16px;
    background: var(--light-bg-2);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.card-hover:hover .card-icon {
    transform: scale(1.1);
    background: rgba(248, 83, 22, 0.1);
}

.card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.card p {
    font-size: 0.95rem;
    color: var(--text-gray);
}

/* ── SPLIT SECTION (EMOTIONAL) ── */
.split-section {
    display: flex;
    flex-wrap: wrap;
}

.split-left, .split-right {
    flex: 1 1 50%;
    min-width: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 40px;
}

.split-left h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 20px;
}

.split-left h2 span {
    color: var(--orange-primary);
}

.split-left p {
    color: var(--text-gray);
    margin-bottom: 16px;
    font-size: 1.05rem;
}

.split-right h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 20px;
}

.split-right p {
    color: #333;
    font-size: 1.05rem;
    line-height: 1.7;
}

.check-list {
    list-style: none;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 1.05rem;
}

.check-icon {
    color: var(--green-accent);
    font-weight: bold;
    font-size: 1.2rem;
}

/* ── BENEFITS ── */
.box-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.benefit-box {
    text-align: center;
    padding: 30px;
    border-radius: var(--radius-lg);
    background: var(--light-surface);
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.benefit-box:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.b-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.benefit-box h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.benefit-box p {
    font-size: 0.95rem;
    color: var(--text-gray);
}

/* ── HOW IT WORKS ── */
.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 50px;
}

.glass-dark {
    background: var(--glass-bg-dark);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border-dark);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.glass-dark:hover {
    transform: translateY(-5px);
    border-color: rgba(248, 83, 22, 0.3);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.step-num {
    font-size: 4rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: rgba(248, 83, 22, 0.15);
    position: absolute;
    top: 10px;
    right: 20px;
    line-height: 1;
    transition: var(--transition);
}

.glass-dark:hover .step-num {
    color: rgba(248, 83, 22, 0.3);
}

.glass-dark h4 {
    font-size: 1.2rem;
    margin-bottom: 16px;
    color: var(--text-light);
    position: relative;
    z-index: 1;
}

.glass-dark p {
    font-size: 0.95rem;
    color: var(--text-gray-light);
    position: relative;
    z-index: 1;
}

/* ── DOCUMENTS ── */
.docs-grid {
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
}

.docs-content h2 {
    font-size: clamp(2rem, 3.5vw, 2.5rem);
    margin-bottom: 16px;
}

.docs-content h2 span { color: var(--orange-primary); }

.docs-checklist {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.chip {
    padding: 8px 16px;
    background: var(--light-bg-2);
    border: 1px solid #E0E0E0;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-dark);
    display: flex;
    align-items: center;
}

.chip::before {
    content: '✓';
    color: var(--green-accent);
    font-weight: bold;
    margin-right: 8px;
}

.docs-image {
    position: relative;
}

.rounded-img {
    border-radius: var(--radius-lg);
}

/* ── FAQ ACCORDION ── */
.faq-accordion {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    background: var(--light-surface);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(248, 83, 22, 0.3);
    box-shadow: var(--shadow-sm);
}

.faq-btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: var(--transition);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--orange-primary);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(248, 83, 22, 0.1);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: var(--orange-primary);
    color: var(--text-light);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.faq-content p {
    padding: 0 24px 24px;
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* ── FINAL CTA ── */
.final-cta {
    background-color: #631b00;
    background-image: 
        radial-gradient(circle at 10% 20%, #F85316 0%, transparent 60%),
        radial-gradient(circle at 90% 80%, #bd390b 0%, transparent 60%),
        radial-gradient(circle at 50% 50%, #902600 0%, transparent 80%);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(105deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.08) 45%, rgba(255,255,255,0) 50%);
    pointer-events: none;
}

.final-cta h2 {
    font-size: clamp(2.2rem, 4vw, 3rem);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.final-cta h2 span {
    color: #FFD166; /* Yellow accent */
}

.final-cta p {
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    opacity: 0.9;
}

.final-cta .btn-primary {
    background: var(--light-bg);
    color: var(--orange-dark);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.final-cta .btn-primary:hover {
    background: #FFF5F0;
    transform: translateY(-3px);
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
    font-weight: 500;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* ── FOOTER ── */
.footer {
    padding: 60px 0 30px;
    border-top: 1px solid rgba(0,0,0,0.05);
    background-color: var(--light-surface) !important;
    color: var(--text-dark) !important;
}

.footer-top {
    text-align: center;
    margin-bottom: 40px;
}

.footer-top .logo {
    font-size: 2rem;
    margin-bottom: 16px;
}

.footer-top p {
    color: var(--text-gray);
}

.footer-bottom {
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 30px;
    text-align: center;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 24px;
    list-style: none;
}

.footer-nav a {
    color: var(--text-gray);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-nav a:hover {
    color: var(--orange-primary);
}

.disclaimer {
    font-size: 0.75rem;
    color: var(--text-gray-light);
    margin-bottom: 20px;
    line-height: 1.5;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.copyright {
    font-size: 0.85rem;
    color: var(--text-gray-light);
}

/* ── SEÇÃO SERVIÇOS GLOBAL ── */
.services-section {
    background: var(--light-bg-2);
}

.service-card {
    background: var(--light-surface);
    border-radius: var(--radius-lg);
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: rgba(248, 83, 22, 0.2);
}

.s-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: var(--orange-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: rgba(248, 83, 22, 0.1);
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-bottom: 24px;
    flex-grow: 1;
}

.service-link {
    font-weight: 700;
    color: var(--orange-primary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.service-link::after {
    content: '→';
    transition: transform 0.3s;
}

.service-card:hover .service-link::after {
    transform: translateX(5px);
}

/* ── ADVOGADO PARALLAX SPLIT ── */
.lawyer-parallax-section {
    display: flex;
    flex-direction: column;
    background: var(--light-surface);
    border-top: 1px solid rgba(0,0,0,0.05);
}

@media (min-width: 992px) {
    .lawyer-parallax-section {
        flex-direction: row;
        min-height: 600px;
    }
}

.lawyer-parallax-image {
    width: 100%;
    min-height: 400px;
    background-image: url('drraphael.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    position: relative;
}

@media (min-width: 992px) {
    .lawyer-parallax-image {
        width: 50%;
        min-height: auto;
        /* O parallax (background-attachment: fixed) foi removido pois causa um "super zoom" 
           quando a imagem precisa cobrir a altura total da tela. Agora ela vai se ajustar 
           perfeitamente ao tamanho da coluna. */
    }
}

.lawyer-parallax-content {
    width: 100%;
    padding: 60px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-surface);
}

@media (min-width: 992px) {
    .lawyer-parallax-content {
        width: 50%;
        padding: 80px;
    }
}

.lawyer-parallax-content .content-inner {
    max-width: 500px;
}

.lawyer-parallax-content h2 {
    font-size: 2.5rem;
    margin-top: 16px;
    margin-bottom: 8px;
}

.oab-chip {
    display: inline-block;
    padding: 8px 16px;
    background: var(--light-bg-2);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    border: 1px solid rgba(0,0,0,0.1);
    margin-bottom: 24px;
}

.lawyer-features {
    list-style: none;
    margin-top: 24px;
}

.lawyer-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
}

.lawyer-features .icon {
    background: rgba(248, 83, 22, 0.1);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

/* ── RESPONSIVE ── */
@media (max-width: 992px) {

    /* ESCONDE o nav completamente — zero interferência no flex */
    .header-inner > nav {
        display: none !important;
    }

    /* Quando ativo, mostra como painel fixo lateral */
    .header-inner > nav.active {
        display: block !important;
        position: fixed;
        top: 0;
        left: 0;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        z-index: 1000;
    }

    .header-inner > nav.active .nav-menu {
        width: 100%;
        height: 100%;
        background: var(--dark-bg);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        box-shadow: 2px 0 20px rgba(0,0,0,0.5);
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .nav-menu .nav-link {
        color: var(--text-light) !important;
        font-size: 1.2rem;
    }

    /* Mostra o hamburger */
    .hamburger {
        display: flex !important;
    }

    /* Overlay escuro */
    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 999;
        display: none;
        opacity: 0;
        transition: opacity 0.3s;
    }

    .menu-overlay.active {
        display: block;
        opacity: 1;
    }

    /* Header: LOGO - HAMBURGUER - CTA */
    .header .header-inner {
        padding: 0 16px !important;
    }

    .logo {
        font-size: 1.2rem;
    }

    .header-actions {
        display: flex !important;
        align-items: center;
        gap: 12px;
    }

    .header-actions .header-cta {
        padding: 6px 14px !important;
        font-size: 0.7rem !important;
        border-radius: 50px !important;
        border-width: 1.5px !important;
        white-space: nowrap;
    }

    /* Restante do layout */
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-cta {
        align-items: center;
    }
    
    .floating-card {
        bottom: -20px;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        animation: none;
    }
    
    .docs-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .section-padding { padding: 60px 0; }
    
    .split-left, .split-right {
        padding: 60px 24px;
    }
    
    .hero-trust {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-trust span { margin-left: 0; }
    
    .cta-features {
        flex-direction: column;
        gap: 10px;
    }
    
    .floating-card {
        flex-direction: column;
        text-align: center;
    }

    .lawyer-card {
        padding: 30px 20px;
    }
}

/* =========================================================
   NOVO HEADER GLOBAL — SOLUCIONA CONSUMIDOR
   Header reconstruído do zero para desktop e mobile
   ========================================================= */

:root {
    --sol-header-orange: var(--orange-primary, #F85316);
    --sol-header-dark: var(--dark-bg, #101820);
    --sol-header-text: var(--text-dark, #121212);
    --sol-header-light: var(--text-light, #ffffff);
    --sol-header-border: rgba(248, 83, 22, 0.22);
    --sol-header-shadow: 0 18px 55px rgba(16, 24, 32, 0.10);
}

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    width: 100%;
    z-index: 9999;
    padding: 18px 0;
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(248, 83, 22, 0.08);
    transition: background 0.25s ease, box-shadow 0.25s ease, padding 0.25s ease;
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--sol-header-shadow);
    padding: 12px 0;
}

.site-header__inner {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 24px;
}

.site-header__logo {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    color: var(--sol-header-orange);
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: clamp(1.15rem, 1.8vw, 1.55rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.055em;
    text-decoration: none;
    white-space: nowrap;
    min-width: 0;
}

.site-header__nav {
    justify-self: center;
    min-width: 0;
}

.site-header__menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(16px, 2vw, 28px);
    padding: 0;
    margin: 0;
    list-style: none;
}

.site-header__menu a {
    display: inline-flex;
    align-items: center;
    color: var(--sol-header-text);
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s ease, transform 0.2s ease;
}

.site-header__menu a:hover {
    color: var(--sol-header-orange);
    transform: translateY(-1px);
}

.site-header__actions {
    justify-self: end;
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    min-width: 0;
}

.site-header__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 9px 18px;
    border-radius: 999px;
    border: 1.5px solid var(--sol-header-orange);
    background: rgba(255, 255, 255, 0.78);
    color: var(--sol-header-orange);
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 0.82rem;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: 0 10px 28px rgba(248, 83, 22, 0.12);
    transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease, box-shadow 0.22s ease;
}

.site-header__cta:hover {
    background: var(--sol-header-orange);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 16px 38px rgba(248, 83, 22, 0.25);
}

.site-header__toggle {
    display: none;
    width: 38px;
    height: 38px;
    min-width: 38px;
    padding: 0;
    margin: 0;
    border: 0;
    border-radius: 999px;
    background: transparent;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    flex-shrink: 0;
}

.site-header__toggle span {
    display: block;
    width: 23px;
    height: 2px;
    border-radius: 999px;
    background: var(--sol-header-orange);
    transition: transform 0.24s ease, opacity 0.24s ease;
}

.site-header__toggle.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.site-header__toggle.is-active span:nth-child(2) {
    opacity: 0;
}

.site-header__toggle.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Overlay do menu mobile */
.site-menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 9997;
    background: rgba(8, 12, 18, 0.58);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.24s ease;
}

.site-menu-overlay.is-active {
    opacity: 1;
    pointer-events: auto;
}

body.site-menu-open {
    overflow: hidden;
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) {
    .site-header__inner {
        width: min(100%, calc(100% - 32px));
        gap: 16px;
    }

    .site-header__menu {
        gap: 16px;
    }

    .site-header__menu a {
        font-size: 0.85rem;
    }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 900px) {
    .site-header {
        padding: 16px 0;
    }

    .site-header.scrolled {
        padding: 12px 0;
    }

    .site-header__inner {
        width: 100%;
        padding: 0 16px;
        margin: 0;
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
        gap: 12px;
    }

    .site-header__logo {
        overflow: hidden;
        text-overflow: clip;
        font-size: clamp(1rem, 4.4vw, 1.28rem);
        max-width: 100%;
    }

    .site-header__actions {
        display: inline-flex;
        align-items: center;
        justify-content: flex-end;
        gap: 8px;
        min-width: max-content;
        flex-shrink: 0;
    }

    .site-header__toggle {
        display: inline-flex;
        order: 1;
    }

    .site-header__cta {
        order: 2;
        min-height: 34px;
        padding: 7px 13px;
        font-size: 0.72rem;
        box-shadow: none;
    }

    .site-header__nav {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: min(84vw, 320px);
        height: 100vh;
        z-index: 9998;
        background:
            radial-gradient(circle at top left, rgba(248, 83, 22, 0.22), transparent 42%),
            linear-gradient(145deg, #121923 0%, #0b1017 100%);
        box-shadow: 22px 0 70px rgba(0, 0, 0, 0.30);
        transform: translateX(-105%);
        transition: transform 0.28s ease;
        overflow-y: auto;
        justify-self: auto;
    }

    .site-header__nav.is-active {
        transform: translateX(0);
    }

    .site-header__menu {
        width: 100%;
        min-height: 100%;
        padding: 96px 28px 42px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 22px;
    }

    .site-header__menu a {
        color: #fff;
        font-size: 1.05rem;
        font-weight: 800;
    }

    .site-header__menu a:hover {
        color: var(--sol-header-orange);
    }
}

/* =========================================================
   MOBILE PEQUENO
   ========================================================= */

@media (max-width: 380px) {
    .site-header__inner {
        padding: 0 13px;
        gap: 8px;
    }

    .site-header__logo {
        font-size: 1rem;
        letter-spacing: -0.06em;
    }

    .site-header__actions {
        gap: 6px;
    }

    .site-header__toggle {
        width: 34px;
        height: 34px;
        min-width: 34px;
    }

    .site-header__toggle span {
        width: 21px;
    }

    .site-header__cta {
        min-height: 31px;
        padding: 6px 10px;
        font-size: 0.68rem;
    }
}

@media (max-width: 320px) {
    .site-header__inner {
        padding: 0 10px;
        gap: 5px;
    }

    .site-header__logo {
        font-size: 0.92rem;
    }

    .site-header__toggle {
        width: 31px;
        height: 31px;
        min-width: 31px;
    }

    .site-header__toggle span {
        width: 19px;
    }

    .site-header__cta {
        min-height: 29px;
        padding: 6px 8px;
        font-size: 0.63rem;
    }
}
