/* ====================================
   Campodonico & Reckziegel â€” LIMA E ALMEIDA Design System
   Clean Luxo | Branco / Vermelho / Dourado
   Fonts: Poppins (Titles) + Cormorant Garamond (Serif Highlight) + Inter (Sans-serif)
   Zero external dependencies (inline SVG icons)
   ==================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Poppins:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* ---- Design Tokens ---- */
:root {
    --dark: #1a1014;
    --dark-alt: #140c10;
    --red: #702c2c;
    --red-light: #8a3c3c;
    --red-hover: #542020;
    --gold: #D4AF37;
    --gold-hover: #E9C46A;
    --silver: #6b5a61;
    --green-wa: #25D366;
    --font-sans: 'Inter', sans-serif;
    --font-serif: 'Cormorant Garamond', serif;
    --font-title: 'Poppins', sans-serif;
}

/* ---- Reset ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
    font-family: var(--font-sans);
    background-color: #ffffff;
    color: var(--dark);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-title);
    color: var(--dark);
    font-weight: 400;
    text-transform: none;
}

/* Highlight / Emphasized text style (Ruan Muller style) */
.section-title em,
.hero h1 em,
.text-highlight {
    font-family: var(--font-serif) !important;
    font-style: italic !important;
    font-weight: 500 !important;
    font-size: 1.25em !important;
    color: var(--red);
    text-transform: none !important;
    letter-spacing: normal !important;
}

/* Gold Highlights on dark red or black backgrounds */
.hero h1 em,
.rights-section .section-title em,
.steps-section .section-title em,
.footer .section-title em {
    color: var(--gold) !important;
}

/* Ensure Poppins text in red background sections is white for high legibility */
.rights-section .section-title,
.steps-section .section-title {
    color: #ffffff;
}

a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

.font-serif { font-family: var(--font-serif); }

.text-glow-red { text-shadow: 0 0 20px rgba(192, 57, 43, 0.3); }
.text-glow-gold { text-shadow: 0 0 20px rgba(212, 175, 55, 0.3); }

/* ---- Layout ---- */
.max-w { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.max-w-narrow { max-width: 896px; margin: 0 auto; padding: 0 24px; }

section { padding: 80px 0; }

/* ========================================
   NAVBAR
   ======================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 50;
    background: rgba(112, 44, 44, 0.90); /* Luxurious red glass backdrop */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: none;
    align-items: center;
    gap: 40px;
}

.nav-links a {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: #ffffff; /* White links for excellent contrast on red */
    opacity: 0.85;
    transition: all 0.3s ease;
}

.nav-links a:hover { color: var(--gold); opacity: 1; }

.nav-right { display: flex; align-items: center; gap: 24px; }

.mobile-toggle {
    background: none;
    border: none;
    color: #ffffff; /* White mobile menu toggle */
    cursor: pointer;
    display: block;
}

.mobile-toggle svg { width: 24px; height: 24px; }

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(112, 44, 44, 0.98);
    backdrop-filter: blur(20px);
    z-index: 49;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.mobile-menu.active { display: flex; }

.mobile-menu .close-btn {
    position: absolute;
    top: 32px;
    right: 24px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 32px;
}

.mobile-menu a {
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: white;
    transition: color 0.3s ease;
}

.mobile-menu a:hover { color: var(--gold); }

/* ========================================
   HERO (Luxury Brutalist Black Theme)
   ======================================== */
.hero {
    position: relative;
    min-height: 95vh;
    display: flex;
    align-items: center;
    padding: 160px 0 100px;
    background-color: #000000; /* Rich black canvas background */
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
    /* Default mobile background image */
    background-image: url('../imagem/backg01mobile.webp');
}

@media (min-width: 768px) {
    .hero-bg {
        /* Desktop background image */
        background-image: url('../imagem/backg01.webp');
    }
}

.hero-overlay-1,
.hero-overlay-2 {
    display: none; /* Removed overlays as requested: 'sem filtro' */
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.hero-text { max-width: 720px; }

/* Hero Mobile Persona & Padding adjustment */
.hero-mobile-persona {
    display: none; /* Hidden on desktop */
}

@media (max-width: 767px) {
    .hero-text {
        padding-bottom: 240px; /* Space so text and CTA do not cover the attorney's head */
    }
    
    .hero-mobile-persona {
        display: block;
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: auto;
        z-index: 2; /* Renders above background, below floating nav header */
        pointer-events: none; /* Ensures CTA buttons are clickable through the image wrapper */
        object-fit: cover;
    }
}

.hero h1 {
    font-family: var(--font-title);
    font-size: clamp(1.8rem, 4.5vw, 3rem);
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 32px;
    color: #ffffff; /* Highly legible white text */
    text-transform: none;
    letter-spacing: -0.02em;
}

.hero-desc {
    color: rgba(255, 255, 255, 0.85); /* High-contrast light descriptions */
    font-size: 18px;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 80%;
}

.hero-notice {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
}

.hero-notice .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--red);
    box-shadow: 0 0 10px rgba(192, 57, 43, 0.5);
}

.hero-notice span {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--red);
    font-weight: 700;
}

/* ---- Buttons ---- */
.btn-green {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #059669, #10b981);
    color: white;
    font-weight: 300;
    font-family: var(--font-sans);
    font-size: 14px;
    padding: 16px 48px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.btn-green:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(5, 150, 105, 0.3);
}

.btn-green svg {
    width: 18px;
    height: 18px;
    fill: white;
    flex-shrink: 0;
}

.btn-green.full-mobile {
    width: 100%;
}

/* ========================================
   LEAD QUALIFICATION SECTION
   ======================================== */
.lead-qual {
    background: #ffffff;
    border-top: 1px solid rgba(112, 44, 44, 0.06);
    border-bottom: 1px solid rgba(112, 44, 44, 0.06);
    position: relative;
    overflow: hidden;
}

.lead-qual .bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 800px;
    height: 800px;
    background: rgba(112, 44, 44, 0.03);
    filter: blur(120px);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.lead-qual .content { position: relative; z-index: 1; text-align: center; }

.section-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    color: var(--red);
    display: block;
    margin-bottom: 24px;
}

.section-label-gold { color: var(--gold); }

.section-title {
    font-family: var(--font-title);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 40px;
    text-transform: none;
}

.section-subtitle {
    color: #5c4e53;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.7;
    max-width: 640px;
    margin: 0 auto 64px;
}

.checklist-box {
    background: #fcfafb;
    border: 1px solid #ebdada;
    padding: 32px;
    border-radius: 10px;
    box-shadow: 0 20px 40px -15px rgba(112, 44, 44, 0.08);
    margin-bottom: 64px;
    text-align: left;
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 12px 0;
}

.checklist-item + .checklist-item {
    border-top: 1px solid rgba(112, 44, 44, 0.08);
}

.check-icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.check-icon svg { width: 14px; height: 14px; fill: #10b981; }

.checklist-item p {
    color: #4a3e42;
    font-size: 16px;
    font-weight: 300;
    transition: color 0.3s ease;
}

.checklist-item:hover p { color: var(--red); }

/* ========================================
   SERVICES CAROUSEL
   ======================================== */
.services { background: #ffffff; }

.services-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 64px;
    flex-wrap: wrap;
    gap: 24px;
}

.services-header-left { flex: 1; min-width: 200px; }

.carousel-arrows {
    display: none;
    align-items: center;
    gap: 12px;
}

.carousel-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(112, 44, 44, 0.15);
    background: #ffffff;
    color: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-arrow:hover {
    border-color: var(--red);
    background: var(--red);
    color: #ffffff;
}

.carousel-arrow svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; }

.carousel-viewport { overflow: hidden; }

.carousel-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s ease-in-out;
}

.service-card {
    flex: 0 0 280px;
    min-height: 240px;
    background: #fcfafb;
    border: 1px solid #ebdada;
    padding: 32px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(112, 44, 44, 0.04);
}

.service-card:hover {
    border-color: var(--red);
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(112, 44, 44, 0.08);
}

.service-card .icon { color: var(--red); }
.service-card .icon svg { width: 32px; height: 32px; fill: currentColor; }

.service-card h3 {
    color: var(--dark);
    font-family: var(--font-title);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
}

.service-card p {
    color: #5c4e53;
    font-size: 12px;
    font-weight: 300;
    line-height: 1.6;
    flex: 1;
}

.service-card .card-link {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 700;
    color: var(--red);
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: auto;
    transition: gap 0.3s ease;
}

.service-card .card-link:hover { gap: 12px; }
.service-card .card-link svg { width: 12px; height: 12px; fill: none; stroke: currentColor; stroke-width: 2; }

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.carousel-dots button {
    width: 8px;
    height: 8px;
    border-radius: 9999px;
    border: none;
    background: rgba(112, 44, 44, 0.15);
    cursor: pointer;
    transition: all 0.4s ease;
    padding: 0;
}

.carousel-dots button.active {
    background: var(--red);
    width: 16px;
}

/* ========================================
   RIGHTS CHECKLIST (RescisÃ£o Indireta Focus)
   ======================================== */
.rights-section {
    background: var(--red);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.rights-section .bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.03);
    filter: blur(100px);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.rights-section .section-label {
    color: var(--gold);
}

.rights-section .section-title {
    color: #ffffff;
}

.rights-box {
    background: rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 32px;
    border-radius: 10px;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.15);
    max-width: 640px;
    margin: 0 auto 64px;
    text-align: left;
}

.rights-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.85);
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.rights-item:last-child { border-bottom: none; }
.rights-item:last-child span { color: #ffffff; font-weight: 600; }
.rights-item span { font-size: 18px; }

.rights-item .check-circle svg {
    width: 24px;
    height: 24px;
    fill: var(--gold);
}

/* ========================================
   NEWS / RESULTS SECTION
   ======================================== */
.news-section {
    background: #ffffff;
    border-top: 1px solid rgba(112, 44, 44, 0.06);
    border-bottom: 1px solid rgba(112, 44, 44, 0.06);
    overflow: hidden;
}

.news-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 80px;
    align-items: center;
}

.news-text-side { order: 2; }
.news-visual-side { order: 1; }

.news-text-side .quote {
    font-size: 20px;
    font-weight: 500;
    color: var(--dark);
    line-height: 1.6;
    font-style: italic;
    border-left: 3px solid var(--red);
    padding-left: 24px;
    margin-bottom: 24px;
}

.news-text-side .body-text {
    color: #5c4e53;
    font-weight: 300;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
}

.news-text-side .body-text strong { color: var(--dark); }

/* News Image Carousel */
.news-carousel-wrapper {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(112, 44, 44, 0.15);
}

.news-carousel-wrapper .carousel-container {
    background: #ffffff;
    border: 1px solid #ebdada;
    overflow: hidden;
}

.news-carousel {
    display: flex;
    transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

.news-carousel .slide { min-width: 100%; }
.news-carousel .slide img { width: 100%; height: auto; }

.news-carousel-nav {
    position: absolute;
    top: 50%;
    left: 12px;
    right: 12px;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.news-nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #ebdada;
    color: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto;
    box-shadow: 0 10px 25px -5px rgba(112, 44, 44, 0.1);
    transition: all 0.3s ease;
}

.news-nav-btn:hover {
    background: var(--red);
    color: #ffffff;
    border-color: var(--red);
}

.news-nav-btn svg { width: 20px; height: 20px; fill: currentColor; }

.news-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}

.news-dot {
    width: 32px;
    height: 4px;
    border-radius: 9999px;
    background: rgba(112, 44, 44, 0.15);
    cursor: pointer;
    transition: all 0.4s ease;
    border: none;
    padding: 0;
}

.news-dot.active { background: var(--red); width: 32px; }

/* ========================================
   WHY SECTION (Security vs Risk)
   ======================================== */
.why-section { background: #ffffff; }

.why-section .header { text-align: center; margin-bottom: 64px; }

.why-section .header p {
    color: #5c4e53;
    font-weight: 300;
    max-width: 640px;
    margin: 0 auto;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

.why-card {
    background: #fcfafb;
    border: 1px solid #ebdada;
    padding: 48px;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 35px rgba(112, 44, 44, 0.03);
}

.why-card:hover { 
    border-color: var(--red);
    box-shadow: 0 15px 45px rgba(112, 44, 44, 0.08);
}
.why-card.risk:hover { 
    border-color: #ef4444; 
    box-shadow: 0 15px 45px rgba(239, 68, 68, 0.08);
}

.why-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
}

.why-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-card-icon.gold { background: rgba(112, 44, 44, 0.06); color: var(--red); }
.why-card-icon.danger { background: rgba(239, 68, 68, 0.06); color: #ef4444; }
.why-card-icon svg { width: 28px; height: 28px; fill: currentColor; }

.why-card h3 { font-family: var(--font-title); font-weight: 400; font-size: 24px; color: var(--dark); }

.why-list { display: flex; flex-direction: column; gap: 24px; }

.why-list-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    color: #5c4e53;
    font-size: 14px;
    font-weight: 300;
}

.why-list-item .icon {
    min-width: 18px;
    margin-top: 3px;
}

.why-list-item .icon svg { width: 18px; height: 18px; }
.why-list-item .icon.green svg { fill: var(--gold); }
.why-list-item .icon.red svg { fill: #ef4444; }

/* ========================================
   STEPS SECTION
   ======================================== */
.steps-section { background: var(--red); color: #ffffff; }

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.step-card {
    background: rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px;
    border-radius: 10px;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.step-card:hover { border-color: var(--gold); }

.step-number {
    font-family: var(--font-serif);
    font-size: 4rem;
    line-height: 1;
    opacity: 0.25;
    color: var(--gold);
    transition: all 0.3s ease;
}

.step-card:hover .step-number {
    opacity: 1;
    transform: scale(1.05);
}

.step-card h4 {
    font-family: var(--font-title);
    font-weight: 400;
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 16px;
}

.step-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    line-height: 1.6;
    font-weight: 300;
}

/* Step Footer Bar */
.steps-bar {
    margin-top: 64px;
    background: rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 32px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.steps-bar-info {
    display: flex;
    align-items: center;
    gap: 24px;
}

.steps-bar-avatars { display: flex; }

.steps-bar-avatars .avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--dark);
    overflow: hidden;
    background: #27272a;
}

.steps-bar-avatars .avatar + .avatar { margin-left: -16px; }
.steps-bar-avatars .avatar img { width: 100%; height: 100%; object-fit: cover; }

.steps-bar-text p:first-child { font-size: 14px; font-weight: 600; color: white; }
.steps-bar-text p:last-child { font-size: 10px; text-transform: uppercase; letter-spacing: 0.2em; color: var(--silver); }

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials-section { background: #ffffff; }

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.testimonial-card {
    background: #fcfafb;
    border: 1px solid #ebdada;
    padding: 32px;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(112, 44, 44, 0.03);
}

.testimonial-card:hover { 
    border-color: var(--red);
    box-shadow: 0 15px 40px rgba(112, 44, 44, 0.08);
}

.testimonial-stars {
    display: flex;
    gap: 2px;
    color: #f59e0b;
    margin-bottom: 16px;
}

.testimonial-stars svg { width: 14px; height: 14px; fill: currentColor; }

.testimonial-card blockquote {
    color: #4a3e42;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ebdada;
    color: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    border: 1px solid #ebdada;
}

.testimonial-author .name { font-size: 12px; font-weight: 600; color: var(--dark); display: block; }
.testimonial-author .source { font-size: 10px; color: #7d7075; text-transform: uppercase; letter-spacing: 0.15em; }

/* ========================================
   ABOUT SECTION
   ======================================== */
.about-section {
    background: #ffffff;
    overflow: hidden;
}

.about-grid {
    display: flex;
    flex-direction: column;
    gap: 80px;
    align-items: center;
}

.about-visual {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
}

/* About Section Carousel */
.about-carousel-wrapper {
    background: #ffffff;
    border: 1px solid #ebdada;
    padding: 16px;
    border-radius: 10px;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 25px 50px -12px rgba(112, 44, 44, 0.1);
    position: relative;
    overflow: hidden;
}

.about-carousel-wrapper .carousel-container {
    overflow: hidden;
    border-radius: 8px;
}

.about-carousel {
    display: flex;
    transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

.about-carousel .slide {
    min-width: 100%;
}

.about-carousel .slide img {
    width: 100%;
    height: 480px; /* Elegant, fixed portrait crop for the lawyer photos! */
    object-fit: cover;
    border-radius: 8px;
}

.about-carousel-nav {
    position: absolute;
    top: 50%;
    left: 28px;
    right: 28px;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.about-nav-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #ebdada;
    color: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.about-nav-btn:hover {
    background: var(--red);
    color: #ffffff;
    border-color: var(--red);
    transform: scale(1.1);
}

.about-nav-btn svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
}

.about-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
}

.about-dot {
    width: 16px;
    height: 4px;
    border-radius: 9999px;
    background: rgba(112, 44, 44, 0.15);
    cursor: pointer;
    transition: all 0.4s ease;
    border: none;
    padding: 0;
}

.about-dot.active {
    background: var(--red);
    width: 24px;
}

.about-image-glow {
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 256px;
    height: 256px;
    background: rgba(112, 44, 44, 0.03);
    filter: blur(100px);
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
}

.about-text { width: 100%; }

.about-text h2 {
    font-family: var(--font-title);
    font-weight: 400;
    font-size: clamp(2rem, 5vw, 3.75rem);
    line-height: 1.2;
    margin-bottom: 40px;
    color: var(--dark);
    text-transform: none;
}

.about-text .body { display: flex; flex-direction: column; gap: 24px; }

.about-text .body p {
    color: #5c4e53;
    font-weight: 300;
    line-height: 1.7;
}

/* ========================================
   LOCATION SECTION
   ======================================== */
.location-section { background: #ffffff; }

.location-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

.location-info { display: flex; flex-direction: column; gap: 16px; }
.location-info p { color: #5c4e53; margin-bottom: 32px; }

.location-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #5c4e53;
    font-size: 14px;
}

.location-item svg {
    width: 20px;
    height: 20px;
    fill: var(--red);
    flex-shrink: 0;
}

.location-map {
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #ebdada;
    box-shadow: 0 25px 50px -12px rgba(112, 44, 44, 0.1);
}

.location-map iframe { width: 100%; height: 100%; border: none; }

/* ========================================
   FAQ SECTION
   ======================================== */
.faq-section { background: #ffffff; }

.faq-header { text-align: center; margin-bottom: 64px; }

.faq-header p { color: #5c4e53; font-weight: 300; }

.faq-list { display: flex; flex-direction: column; gap: 16px; }

.faq-item {
    background: #fcfafb;
    border: 1px solid #ebdada;
    border-radius: 10px;
    overflow: hidden;
}

.faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px;
    cursor: pointer;
    list-style: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary span {
    font-family: var(--font-title);
    font-weight: 400;
    font-size: 18px;
    color: var(--dark);
    transition: color 0.3s ease;
}

.faq-item[open] summary span { color: var(--red); }

.faq-item summary .chevron {
    transition: transform 0.3s ease;
    color: #5c4e53;
}

.faq-item summary .chevron svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; }

.faq-item[open] summary .chevron { transform: rotate(180deg); }

.faq-item .faq-answer {
    padding: 0 32px 32px;
    border-top: 1px solid #ebdada;
    padding-top: 16px;
}

.faq-item .faq-answer p {
    color: #5c4e53;
    font-weight: 300;
    font-size: 14px;
    line-height: 1.7;
}

/* ========================================
   FOOTER (Luxurious Red Multi-column)
   ======================================== */
.footer {
    padding: 96px 0 48px;
    border-top: 3px solid var(--gold);
    background: radial-gradient(circle at 85% 15%, rgba(212, 175, 55, 0.05) 0%, transparent 60%), linear-gradient(185deg, #702c2c 0%, #401717 100%);
    color: #ffffff;
    font-family: var(--font-sans);
    position: relative;
    overflow: hidden;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    margin-bottom: 64px;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }
}

@media (min-width: 992px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1.2fr 1.5fr;
        gap: 64px;
    }
}

/* Coluna 1: Sobre */
.footer-col-about {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-logo img {
    width: 160px;
    height: auto;
    object-fit: contain;
}

.footer-desc-text {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.8;
    max-width: 320px;
}

.footer-socials {
    display: flex;
    gap: 16px;
}

/* Colunas Comuns */
.footer-title {
    font-family: var(--font-title);
    font-size: 15px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 28px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
}

.footer-links-list,
.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 0;
}

.footer-links-list a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    font-weight: 300;
    display: inline-flex;
    align-items: center;
    gap: 0;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.footer-links-list a::before {
    content: 'â†’';
    opacity: 0;
    width: 0;
    color: var(--gold);
    transition: all 0.3s ease;
    font-size: 12px;
}

.footer-links-list a:hover {
    color: var(--gold);
    transform: translateX(6px);
}

.footer-links-list a:hover::before {
    opacity: 1;
    width: 14px;
    margin-right: 6px;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6;
}

.footer-contact-list li a {
    transition: color 0.3s ease;
}

.footer-contact-list li a:hover {
    color: var(--gold);
}

.footer-contact-list li svg {
    width: 16px;
    height: 16px;
    fill: var(--gold);
    flex-shrink: 0;
    margin-top: 3px;
    transition: transform 0.3s ease;
}

.footer-contact-list li:hover svg {
    transform: scale(1.2);
}

/* OAB Badge & Card */
.footer-oab-card {
    margin-top: 24px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.footer-oab-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(212, 175, 55, 0.35);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.footer-oab-icon {
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.footer-oab-card:hover .footer-oab-icon {
    transform: scale(1.1) rotate(-5deg);
}

.footer-oab-icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.footer-oab-text h5 {
    font-family: var(--font-title);
    font-size: 13px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 2px;
    letter-spacing: 0.05em;
}

.footer-oab-text p {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

/* RodapÃ© Inferior */
.footer-bottom {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        gap: 0;
    }
}

.copyright-text {
    color: rgba(255, 255, 255, 0.55);
    font-size: 12px;
    font-weight: 300;
    text-align: center;
}

.footer-dev {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-dev span {
    color: rgba(255, 255, 255, 0.45);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.footer-dev .dev-name {
    display: inline-flex;
    align-items: center;
    opacity: 0.65;
    transition: all 0.3s ease;
}

.footer-dev .dev-name:hover {
    opacity: 1;
    transform: translateY(-1px);
}

.footer-dev .dev-name img {
    height: 20px;
    width: auto;
    display: block;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.footer-dev .dev-name:hover img {
    transform: scale(1.05);
}


/* ========================================
   FLOATING WHATSAPP (With Mini Balloon)
   ======================================== */
.wa-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 99;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.wa-balloon {
    background: #ffffff;
    border: 1px solid #ebdada;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 10px 30px rgba(112, 44, 44, 0.12);
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 280px;
    width: max-content;
    position: relative;
    transform: translateY(20px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.wa-balloon.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.wa-balloon-close {
    position: absolute;
    top: 6px;
    right: 8px;
    background: none;
    border: none;
    color: var(--silver);
    font-size: 11px;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 2px;
    line-height: 1;
}

.wa-balloon-close:hover {
    color: var(--red);
}

.wa-balloon-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--gold);
    background: #ffffff;
    flex-shrink: 0;
}

.wa-balloon-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wa-balloon-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    text-align: left;
}

.wa-balloon-name {
    font-family: var(--font-title);
    font-size: 12px;
    font-weight: 600;
    color: var(--dark);
}

.wa-balloon-msg {
    font-size: 11px;
    color: #5c4e53;
    line-height: 1.3;
}

.wa-float-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--green-wa);
    color: white;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.39);
    transition: transform 0.3s ease;
}

.wa-float-btn:hover { transform: scale(1.1); }
.wa-float-btn svg { width: 32px; height: 32px; fill: white; }

/* ========================================
   REVEAL ANIMATION
   ======================================== */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.2, 1, 0.3, 1);
}

.reveal-on-scroll.active {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (min-width: 768px) {
    .nav-links { display: flex; }
    .mobile-toggle { display: none; }
    .btn-green.full-mobile { width: auto; }
    .checklist-box { padding: 48px; }

    .why-grid { grid-template-columns: 1fr 1fr; }
    .steps-grid { grid-template-columns: 1fr 1fr; }
    .testimonials-grid { grid-template-columns: 1fr 1fr; }
    .location-grid { grid-template-columns: 1fr 1fr; }
    .carousel-arrows { display: flex; }

    .steps-bar {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-top { flex-direction: row; align-items: center; }

    .news-grid { grid-template-columns: 1fr 1fr; }
    .news-text-side { order: 1; }
    .news-visual-side { order: 2; }
}

@media (min-width: 1024px) {
    .steps-grid { grid-template-columns: repeat(4, 1fr); }

    .about-grid {
        flex-direction: row;
        gap: 80px;
    }
    .about-visual { width: 50%; }
    .about-text { width: 50%; }

    section { padding: 96px 0; }
}

/* Reviews Carousel */
.reviews-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 24px;
    margin-top: 40px;
    padding-bottom: 24px;
    -webkit-overflow-scrolling: touch;
}
.reviews-grid::-webkit-scrollbar {
    height: 8px;
}
.reviews-grid::-webkit-scrollbar-track {
    background: #f1f1f1; 
    border-radius: 4px;
}
.reviews-grid::-webkit-scrollbar-thumb {
    background: #c39a67;
    border-radius: 4px;
}
.custom-review-card {
    min-width: 320px;
    max-width: 350px;
    flex: 0 0 auto;
    scroll-snap-align: start;
    background: #ffffff;
    border: 1px solid #ebdada;
    padding: 24px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(112, 44, 44, 0.04);
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.custom-review-header {
    display: flex;
    align-items: center;
    gap: 16px;
}
.custom-review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
}
.custom-review-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 2px;
    font-family: var(--font-title);
}
.custom-review-info span {
    font-size: 12px;
    color: var(--silver);
}
.custom-review-stars {
    color: #fbbc04;
    font-size: 18px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.custom-review-stars .date {
    font-size: 12px;
    color: var(--silver);
}
.custom-review-text {
    font-size: 14px;
    color: #4a3e42;
    line-height: 1.6;
}

/* Reviews Carousel Navigation Buttons */
.about-carousel-nav {
    display: flex;
    gap: 16px;
    align-items: center;
}
.about-nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid #ebdada;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--dark);
}
.about-nav-btn:hover {
    background: var(--red, #c39a67);
    color: #ffffff;
    border-color: var(--red, #c39a67);
}
.about-nav-btn svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

