/* ============================================ */
/* VARIÁVEIS CSS - EDITÁVEL */
/* Personalize as cores, fontes e espaçamentos aqui */
/* ============================================ */
:root {
    /* CORES PRINCIPAIS - Dark Premium */
    --primary-color: #0a0f1a;
    --primary-dark: #060a12;
    --primary-light: #141c2e;

    --secondary-color: #c9a84c;
    --secondary-dark: #b08d3a;
    --secondary-light: #dbbe6a;

    --accent-color: #c9a84c;

    /* CORES NEUTRAS - Dark Theme */
    --white: #0e1420;
    --light-bg: #111827;
    --gray-100: #151c2c;
    --gray-200: #1c2538;
    --gray-300: #2a3548;
    --gray-400: #4b5563;
    --gray-500: #6b7280;
    --gray-600: #9ca3af;
    --gray-700: #d1d5db;
    --gray-800: #e5e7eb;
    --gray-900: #f3f4f6;
    --black: #000000;

    /* CORES DE ESTADO */
    --success-color: #28a745;
    --error-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #17a2b8;

    /* TIPOGRAFIA */
    --font-primary: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-secondary: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;

    --font-size-xs: 0.75rem;    /* 12px */
    --font-size-sm: 0.875rem;   /* 14px */
    --font-size-base: 1rem;     /* 16px */
    --font-size-lg: 1.125rem;   /* 18px */
    --font-size-xl: 1.25rem;    /* 20px */
    --font-size-2xl: 1.5rem;    /* 24px */
    --font-size-3xl: 2rem;      /* 32px */
    --font-size-4xl: 2.5rem;    /* 40px */
    --font-size-5xl: 3rem;      /* 48px */

    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;

    --line-height-tight: 1.25;
    --line-height-normal: 1.5;
    --line-height-relaxed: 1.75;

    /* ESPAÇAMENTOS */
    --spacing-xs: 0.25rem;   /* 4px */
    --spacing-sm: 0.5rem;    /* 8px */
    --spacing-md: 1rem;      /* 16px */
    --spacing-lg: 1.5rem;    /* 24px */
    --spacing-xl: 2rem;      /* 32px */
    --spacing-2xl: 3rem;     /* 48px */
    --spacing-3xl: 4rem;     /* 64px */
    --spacing-4xl: 6rem;     /* 96px */

    /* BORDAS E SOMBRAS */
    --border-radius-sm: 0.25rem;
    --border-radius-md: 0.5rem;
    --border-radius-lg: 1rem;
    --border-radius-full: 9999px;

    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

    /* TRANSIÇÕES */
    --transition-fast: 0.15s ease-in-out;
    --transition-base: 0.3s ease-in-out;
    --transition-slow: 0.5s ease-in-out;

    /* LARGURAS */
    --container-width: 1200px;
    --container-padding: 1rem;

    /* Z-INDEX */
    --z-fixed: 100;
    --z-modal: 1000;
    --z-tooltip: 1100;
}

/* ============================================ */
/* PAGE LOADER */
/* ============================================ */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.page-loader__content {
    text-align: center;
}

.page-loader__icon {
    font-size: 4rem;
    display: block;
    margin-bottom: 1.5rem;
    animation: loaderPulse 1.5s ease-in-out infinite;
}

@keyframes loaderPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.15); opacity: 0.7; }
}

.page-loader__bar {
    width: 200px;
    height: 3px;
    background-color: rgba(255,255,255,0.15);
    border-radius: 3px;
    overflow: hidden;
    margin: 0 auto 1rem;
}

.page-loader__progress {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--secondary-color), var(--secondary-light));
    border-radius: 3px;
    animation: loaderBar 1.8s ease-in-out forwards;
}

@keyframes loaderBar {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
}

.page-loader__text {
    color: var(--gray-300);
    font-size: var(--font-size-sm);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0;
}

/* ============================================ */
/* SCROLL PROGRESS BAR */
/* ============================================ */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--secondary-color), var(--secondary-light));
    z-index: 9998;
    transition: width 0.05s linear;
}

/* ============================================ */
/* SEÇÃO CITAÇÃO */
/* ============================================ */
.quote-section {
    padding: 6rem 0;
    background-color: var(--primary-dark);
    text-align: center;
    position: relative;
}

.quote-section__line {
    width: 60px;
    height: 1px;
    background: var(--secondary-color);
    margin: 0 auto 3rem;
}

.quote-section__line:last-child {
    margin: 3rem auto 0;
}

.quote-section__text {
    font-family: var(--font-secondary);
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    font-weight: 400;
    font-style: italic;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto var(--spacing-xl);
    border: none;
    padding: 0;
}

.quote-section__author {
    font-size: var(--font-size-sm);
    color: var(--secondary-color);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 300;
    margin: 0;
}

/* ============================================ */
/* SEÇÃO ADVOGADOS */
/* ============================================ */
.advogados {
    background-color: var(--white);
}

.advogados__container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.advogado__card {
    text-align: center;
}

.advogado__image {
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    margin-bottom: var(--spacing-xl);
    position: relative;
}

.advogado__image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, var(--white), transparent);
}

.advogado__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.1);
    transition: filter 0.6s ease;
}

.advogado__card:hover .advogado__image img {
    filter: grayscale(50%) contrast(1.05);
}

.advogado__name {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: 500;
    color: #f3f4f6;
    margin-bottom: var(--spacing-xs);
}

.advogado__oab {
    font-size: var(--font-size-xs);
    color: var(--secondary-color);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: var(--spacing-sm);
}

.advogado__specialty {
    font-size: var(--font-size-sm);
    color: var(--gray-500);
    margin: 0;
}

/* ============================================ */
/* GOLD DECORATIVE LINES */
/* ============================================ */
.section::before {
    display: none;
}


/* ============================================ */
/* SLOW REVEAL ANIMATIONS */
/* ============================================ */
[data-aos] {
    opacity: 0;
    transition: opacity 1s ease-out, transform 1s ease-out;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.95);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

/* ============================================ */
/* TEXT REVEAL ANIMATION */
/* ============================================ */
.text-reveal {
    position: relative;
    overflow: hidden;
}

.text-reveal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    transform: translateX(-101%);
    z-index: 1;
}

.text-reveal.revealed::before {
    animation: textRevealSlide 1s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

@keyframes textRevealSlide {
    0% { transform: translateX(-101%); }
    50% { transform: translateX(0%); }
    100% { transform: translateX(101%); }
}

/* ============================================ */
/* 3D TILT CARDS */
/* ============================================ */
.tilt-card {
    transform-style: preserve-3d;
    perspective: 1000px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* ============================================ */
/* PARALLAX SECTIONS */
/* ============================================ */
.parallax-bg {
    transition: transform 0.1s linear;
    will-change: transform;
}

/* ============================================ */
/* HERO PARTICLES CANVAS */
/* ============================================ */
.hero__particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

/* ============================================ */
/* RESET E ESTILOS BASE */
/* ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    scrollbar-width: thin;
    scrollbar-color: var(--secondary-color) #0a0f1a;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0a0f1a;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, var(--secondary-color), var(--secondary-dark));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-light);
}

body {
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-normal);
    color: #9ca3af;
    background-color: var(--white);
    overflow-x: hidden;
}

img:not(.carousel__image):not(svg) {
    filter: grayscale(100%) contrast(1.1);
    transition: filter 0.6s ease;
}

img:not(.carousel__image):not(svg):hover {
    filter: grayscale(30%) contrast(1.05);
}

/* ============================================ */
/* TIPOGRAFIA */
/* ============================================ */
h1, h2, h3 {
    font-family: var(--font-secondary);
    font-weight: 600;
    line-height: var(--line-height-tight);
    color: #e5e7eb;
    margin-bottom: var(--spacing-md);
}

h4, h5, h6 {
    font-weight: var(--font-weight-semibold);
    line-height: var(--line-height-tight);
    color: #d1d5db;
    margin-bottom: var(--spacing-md);
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: var(--font-size-2xl); }
h4 { font-size: var(--font-size-2xl); }
h5 { font-size: var(--font-size-xl); }
h6 { font-size: var(--font-size-lg); }

p {
    margin-bottom: var(--spacing-md);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition-base);
}

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ============================================ */
/* CLASSES UTILITÁRIAS */
/* ============================================ */
.container {
    max-width: var(--container-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

.section {
    padding: 8rem 0;
}

.section__header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
}

.section__header {
    text-align: center;
    margin-bottom: 5rem;
}

.section__title {
    font-family: var(--font-secondary);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 500;
    color: #f3f4f6;
    margin-bottom: var(--spacing-lg);
    position: relative;
    display: inline-block;
    letter-spacing: 1px;
}

.section__title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 1px;
    background: var(--secondary-color);
}

.section__subtitle {
    font-size: var(--font-size-sm);
    color: #9ca3af;
    max-width: 500px;
    margin: 0 auto;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.highlight {
    color: var(--secondary-color);
    position: relative;
}

/* ============================================ */
/* BOTÕES */
/* ============================================ */
.button {
    display: inline-block;
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-semibold);
    text-align: center;
    border: 2px solid transparent;
    border-radius: var(--border-radius-md);
    cursor: pointer;
    transition: var(--transition-base);
    text-decoration: none;
}

.button__primary {
    background-color: var(--secondary-color);
    color: #0a0f1a;
    border-color: var(--secondary-color);
    letter-spacing: 1px;
    font-weight: 500;
}

.button__primary:hover {
    background-color: var(--secondary-light);
    border-color: var(--secondary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.2);
}

.button__secondary {
    background-color: transparent;
    color: #e5e7eb;
    border-color: rgba(255,255,255,0.2);
}

.button__secondary:hover {
    background-color: rgba(255,255,255,0.05);
    color: #ffffff;
    border-color: rgba(255,255,255,0.4);
}

.button__full {
    width: 100%;
}

/* ============================================ */
/* BARRA DE URGÊNCIA */
/* ============================================ */
.urgency-bar {
    background: linear-gradient(90deg, #1a0a0a, #3b1010, #1a0a0a);
    color: #fca5a5;
    padding: var(--spacing-sm) 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 200;
    border-bottom: 1px solid rgba(220, 38, 38, 0.2);
}

@keyframes urgencyPulse {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.urgency-bar .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
}

.urgency-bar__text {
    margin: 0;
    font-size: var(--font-size-sm);
    text-align: center;
}

.urgency-bar__link {
    color: #fde68a;
    font-weight: var(--font-weight-bold);
    text-decoration: underline;
    margin-left: var(--spacing-sm);
}

.urgency-bar__link:hover {
    color: var(--white);
}

.urgency-bar__close {
    background: none;
    border: none;
    color: var(--white);
    font-size: var(--font-size-xl);
    cursor: pointer;
    padding: 0 var(--spacing-sm);
    opacity: 0.7;
    transition: var(--transition-fast);
    flex-shrink: 0;
}

.urgency-bar__close:hover {
    opacity: 1;
}

.urgency-bar.hidden {
    display: none;
}

/* ============================================ */
/* HEADER / NAVEGAÇÃO */
/* ============================================ */
.header {
    position: fixed;
    top: 40px;
    left: 0;
    width: 100%;
    background: rgba(10, 15, 26, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.08);
    z-index: var(--z-fixed);
    transition: all 0.3s ease;
}

.header.scroll-header {
    background: rgba(10, 15, 26, 0.97);
    border-bottom-color: rgba(201, 168, 76, 0.12);
}

.header.urgency-hidden {
    top: 0;
}

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

.nav__logo {
    display: flex;
    align-items: baseline;
    gap: var(--spacing-sm);
    color: var(--primary-color);
}

.logo-text {
    font-family: var(--font-secondary);
    font-size: 1.4rem;
    font-weight: 500;
    color: #e5e7eb;
    line-height: 1;
}

.logo-amp {
    color: var(--secondary-color);
    font-style: italic;
}

.logo-tagline {
    font-family: var(--font-primary);
    font-size: 0.6rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 300;
    padding-left: var(--spacing-sm);
    border-left: 1px solid #4b5563;
}

.nav__list {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.nav__link {
    font-size: 0.78rem;
    font-weight: 300;
    color: rgba(255,255,255,0.5);
    padding: 6px 14px;
    transition: color 0.3s ease;
    position: relative;
    letter-spacing: 0.5px;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 14px;
    right: 14px;
    height: 1.5px;
    background: var(--secondary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav__link:hover::after,
.nav__link.active-link::after {
    transform: scaleX(1);
}

.nav__link:hover,
.nav__link.active-link {
    color: rgba(255,255,255,0.9);
}

.nav__item--badge {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.online-badge {
    display: inline-flex;
    align-items: center;
    padding: 0;
    border: none;
    background: none;
}

.online-badge__dot {
    width: 7px;
    height: 7px;
    background-color: #10b981;
    border-radius: 50%;
    display: inline-block;
    animation: onlinePulse 2s ease-in-out infinite;
}

.nav__cta {
    background: transparent;
    color: var(--secondary-color) !important;
    padding: 8px 22px;
    border-radius: 0;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: 1px solid rgba(201, 168, 76, 0.4);
}

.nav__cta::after {
    display: none;
}

.nav__cta:hover {
    background: var(--secondary-color);
    color: #0a0f1a !important;
    border-color: var(--secondary-color);
    transform: none;
    box-shadow: none;
}

.nav__toggle,
.nav__close {
    font-size: var(--font-size-2xl);
    color: var(--primary-color);
    cursor: pointer;
    display: none;
}

/* ============================================ */
/* HERO SECTION - CARROSSEL */
/* ============================================ */
.hero {
    margin-top: 120px;
    position: relative;
}

.hero.urgency-hidden {
    margin-top: 80px;
}

.hero__carousel {
    position: relative;
    width: 100%;
    height: 85vh;
    min-height: 500px;
    overflow: hidden;
}

.carousel__slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 0;
}

.carousel__slide.active {
    opacity: 1;
    z-index: 1;
}

.carousel__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.carousel__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(6, 8, 18, 0.92) 0%, rgba(10, 15, 26, 0.85) 50%, rgba(6, 8, 18, 0.75) 100%);
}

.carousel__content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: var(--spacing-xl);
    padding-bottom: var(--spacing-xl);
    max-width: var(--container-width);
    margin: 0 auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
    z-index: 2;
}

.carousel__tag {
    display: inline-block;
    background-color: var(--secondary-color);
    color: #0a0f1a;
    padding: 6px var(--spacing-lg);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: var(--spacing-lg);
    width: fit-content;
}

.carousel__title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: #ffffff;
    margin-bottom: var(--spacing-lg);
    line-height: 1.15;
    max-width: 700px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.carousel__description {
    font-size: var(--font-size-lg);
    color: rgba(255,255,255,0.85);
    margin-bottom: var(--spacing-xl);
    line-height: var(--line-height-relaxed);
    max-width: 550px;
    text-shadow: 0 1px 10px rgba(0,0,0,0.4);
}

.carousel__buttons {
    display: flex;
    gap: var(--spacing-md);
}

.button__secondary-light {
    background-color: transparent;
    color: #ffffff;
    border-color: rgba(255,255,255,0.5);
}

.button__secondary-light:hover {
    background-color: rgba(255,255,255,0.1);
    color: #ffffff;
    border-color: #ffffff;
}

.carousel__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--white);
    width: 50px;
    height: 50px;
    font-size: var(--font-size-2xl);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
    border-radius: var(--border-radius-sm);
}

.carousel__arrow:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

.carousel__arrow--prev {
    left: 20px;
}

.carousel__arrow--next {
    right: 20px;
}

.carousel__dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: var(--spacing-sm);
    z-index: 3;
}

.carousel__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--white);
    background: transparent;
    cursor: pointer;
    transition: var(--transition-base);
    padding: 0;
}

.carousel__dot.active,
.carousel__dot:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

/* Barra de Estatísticas */
.hero__stats-bar {
    background-color: var(--primary-dark);
    padding: var(--spacing-2xl) 0;
    border-top: 1px solid rgba(201, 168, 76, 0.1);
}

.stats-bar__container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-3xl);
}

.stats-bar__item {
    text-align: center;
}

.stats-bar__divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(201, 168, 76, 0.3), transparent);
}

.stat__number {
    font-family: var(--font-secondary);
    font-size: var(--font-size-4xl);
    font-weight: 500;
    color: var(--secondary-color);
    margin-bottom: var(--spacing-xs);
}

.stat__text {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.4);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ============================================ */
/* SEÇÃO SOBRE - EDITÁVEL */
/* ============================================ */
.sobre {
    background-color: var(--light-bg);
}

.sobre__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
}

.sobre__text {
    color: #9ca3af;
    line-height: var(--line-height-relaxed);
    margin-bottom: var(--spacing-lg);
}

.sobre__features {
    display: grid;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.feature__item {
    display: flex;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    background-color: rgba(201, 168, 76, 0.03);
    border-radius: 2px;
    border: 1px solid rgba(201, 168, 76, 0.08);
    transition: all 0.4s ease;
}

.feature__item:hover {
    transform: translateY(-3px);
    border-color: rgba(201, 168, 76, 0.2);
}

.feature__icon {
    font-size: var(--font-size-2xl);
    color: var(--secondary-color);
    font-weight: var(--font-weight-bold);
    flex-shrink: 0;
}

.feature__content h4 {
    color: var(--secondary-color);
    margin-bottom: var(--spacing-sm);
    font-size: var(--font-size-lg);
}

.feature__content p {
    color: #9ca3af;
    margin: 0;
    font-size: var(--font-size-sm);
}

.sobre__image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.sobre__image img {
    width: 100%;
    max-width: 500px;
    height: 500px;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
}

/* ============================================ */
/* SEÇÃO GALERIA - EDITÁVEL */
/* ============================================ */
.galeria {
    background-color: var(--white);
    padding: var(--spacing-2xl) 0;
}

.galeria__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
}

.galeria__item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-md);
    height: 300px;
    cursor: pointer;
}

.galeria__item--large {
    grid-column: span 2;
    grid-row: span 2;
    height: auto;
}

.galeria__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.galeria__item:hover img {
    transform: scale(1.1);
}

.galeria__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(13, 27, 42, 0.9), transparent);
    padding: var(--spacing-lg);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.galeria__item:hover .galeria__overlay {
    opacity: 1;
}

.galeria__overlay h3 {
    color: var(--white);
    font-size: var(--font-size-xl);
    margin: 0;
}

/* ============================================ */
/* SEÇÃO SERVIÇOS - EDITÁVEL */
/* ============================================ */
.servicos {
    background-color: var(--light-bg);
}

.servicos__container {
    display: flex;
    gap: var(--spacing-xl);
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
    cursor: grab;
    padding-bottom: var(--spacing-md);
    user-select: none;
    -webkit-user-select: none;
}

.servicos__container::-webkit-scrollbar { display: none; }
.servicos__container:active { cursor: grabbing; }

.servico__card {
    background-color: var(--light-bg);
    border-radius: 2px;
    overflow: hidden;
    box-shadow: none;
    border: 1px solid rgba(201, 168, 76, 0.06);
    transition: all 0.5s ease;
    min-width: 340px;
    max-width: 340px;
    flex-shrink: 0;
    scroll-snap-align: start;
}

.servico__card:hover {
    border-color: rgba(201, 168, 76, 0.3);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.servico__image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.servico__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.servico__card:hover .servico__image img {
    transform: scale(1.1);
}

.servico__card > h3,
.servico__card > p,
.servico__card > ul {
    padding: 0 var(--spacing-xl);
}

.servico__title {
    font-size: var(--font-size-2xl);
    color: #e5e7eb;
    margin-bottom: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.servico__description {
    color: #9ca3af;
    line-height: var(--line-height-relaxed);
    margin-bottom: var(--spacing-lg);
}

.servico__list {
    list-style: none;
    padding-left: 0;
    padding-bottom: var(--spacing-xl);
}

.servico__list li {
    padding: var(--spacing-sm) 0;
    padding-left: var(--spacing-lg);
    color: #9ca3af;
    position: relative;
}

.servico__list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: var(--font-weight-bold);
}

.servicos__cta {
    text-align: center;
    margin-top: var(--spacing-3xl);
    padding: var(--spacing-xl);
    background-color: transparent;
    border-radius: 0;
}

.servicos__cta p {
    font-size: var(--font-size-lg);
    color: #9ca3af;
    margin-bottom: var(--spacing-md);
}

/* ============================================ */
/* SEÇÃO DESTAQUES / CASOS DE SUCESSO - EDITÁVEL */
/* ============================================ */
.destaques {
    background: var(--primary-dark);
}

.destaques__container {
    display: flex;
    gap: var(--spacing-xl);
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
    cursor: grab;
    padding-bottom: var(--spacing-md);
    user-select: none;
    -webkit-user-select: none;
}

.destaques__container::-webkit-scrollbar { display: none; }
.destaques__container:active { cursor: grabbing; }

.destaque__card {
    background-color: var(--light-bg);
    border-radius: 2px;
    overflow: hidden;
    box-shadow: none;
    border: 1px solid rgba(201, 168, 76, 0.06);
    transition: all 0.5s ease;
    min-width: 300px;
    max-width: 300px;
    flex-shrink: 0;
    scroll-snap-align: start;
}

.destaque__card:hover {
    border-color: rgba(201, 168, 76, 0.3);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.destaque__image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.destaque__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.destaque__card:hover .destaque__image img {
    transform: scale(1.1);
}

.destaque__content {
    padding: var(--spacing-xl);
    text-align: center;
}

.destaque__icon {
    font-size: var(--font-size-4xl);
    margin-bottom: var(--spacing-md);
}

.destaque__title {
    font-size: var(--font-size-xl);
    color: var(--secondary-color);
    margin-bottom: var(--spacing-md);
}

.destaque__description {
    color: #9ca3af;
    line-height: var(--line-height-relaxed);
    margin: 0;
}

/* ============================================ */
/* SEÇÃO BENEFÍCIOS */
/* ============================================ */
.beneficios {
    background-color: var(--light-bg);
}

.beneficios__container {
    display: grid;
    gap: var(--spacing-xl);
}

.beneficio__item {
    display: flex;
    gap: var(--spacing-xl);
    padding: var(--spacing-xl);
    background-color: transparent;
    border-radius: 0;
    border-left: 2px solid rgba(201, 168, 76, 0.2);
    box-shadow: none;
    transition: all 0.4s ease;
}

.beneficio__item:hover {
    transform: translateX(10px);
    border-left-color: var(--secondary-color);
}

.beneficio__number {
    font-size: var(--font-size-4xl);
    font-weight: var(--font-weight-bold);
    color: var(--secondary-color);
    opacity: 0.3;
    flex-shrink: 0;
}

.beneficio__content h3 {
    color: #e5e7eb;
    margin-bottom: var(--spacing-sm);
}

.beneficio__description {
    color: #9ca3af;
    line-height: var(--line-height-relaxed);
    margin: 0;
}

/* ============================================ */
/* SEÇÃO DEPOIMENTOS - EDITÁVEL */
/* ============================================ */
.depoimentos {
    background-color: var(--white);
}

.depoimentos__container {
    display: flex;
    gap: var(--spacing-xl);
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
    cursor: grab;
    padding-bottom: var(--spacing-md);
    user-select: none;
    -webkit-user-select: none;
}

.depoimentos__container::-webkit-scrollbar { display: none; }
.depoimentos__container:active { cursor: grabbing; }

.depoimento__card {
    background-color: var(--light-bg);
    border-radius: 2px;
    padding: var(--spacing-xl);
    box-shadow: none;
    border: 1px solid rgba(201, 168, 76, 0.06);
    transition: all 0.5s ease;
    display: flex;
    flex-direction: column;
    min-width: 350px;
    max-width: 350px;
    flex-shrink: 0;
    scroll-snap-align: start;
    overflow: visible;
    height: auto;
}

.depoimento__card:hover {
    border-color: rgba(201, 168, 76, 0.25);
}

.depoimento__rating {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-md);
}

.depoimento__text {
    color: #d1d5db;
    line-height: var(--line-height-relaxed);
    font-style: italic;
    margin-bottom: var(--spacing-lg);
    flex-grow: 1;
}

.depoimento__author {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(201, 168, 76, 0.15);
}

.depoimento__avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--secondary-color);
    flex-shrink: 0;
}

.depoimento__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.depoimento__name {
    font-size: var(--font-size-base);
    color: #e5e7eb;
    margin-bottom: var(--spacing-xs);
}

.depoimento__role {
    font-size: var(--font-size-sm);
    color: var(--secondary-color);
    margin: 0;
}

/* ============================================ */
/* SEÇÃO FAQ */
/* ============================================ */
.faq {
    background-color: var(--light-bg);
}

.faq__container {
    max-width: 800px;
    margin: 0 auto;
}

.faq__item {
    background-color: transparent;
    border-radius: 0;
    margin-bottom: 0;
    box-shadow: none;
    overflow: hidden;
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

.faq__question {
    padding: var(--spacing-lg);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-base);
}

.faq__question:hover {
    background-color: rgba(201, 168, 76, 0.03);
}

.faq__question h3 {
    font-size: var(--font-size-lg);
    color: #e5e7eb;
    margin: 0;
    flex: 1;
}

.faq__icon {
    font-size: var(--font-size-3xl);
    color: var(--secondary-color);
    font-weight: var(--font-weight-bold);
    transition: var(--transition-base);
    flex-shrink: 0;
    margin-left: var(--spacing-md);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow);
}

.faq__answer p {
    padding: 0 var(--spacing-lg) var(--spacing-lg);
    color: #9ca3af;
    line-height: var(--line-height-relaxed);
    margin: 0;
}

.faq__item.active .faq__icon {
    transform: rotate(45deg);
}

.faq__item.active .faq__answer {
    max-height: 500px;
}

/* ============================================ */
/* SEÇÃO CONTATO */
/* ============================================ */
.contato {
    background-color: var(--white);
}

.contato__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: start;
}

.contato__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

.contato__card {
    padding: var(--spacing-xl);
    background-color: var(--light-bg);
    border: 1px solid rgba(201, 168, 76, 0.06);
    text-align: center;
    text-decoration: none;
    transition: all 0.4s ease;
    display: block;
}

.contato__card:hover {
    border-color: rgba(201, 168, 76, 0.3);
    transform: translateY(-3px);
}

.contato__card-icon {
    font-size: 1.8rem;
    display: block;
    margin-bottom: var(--spacing-sm);
}

.contato__card h4 {
    color: #e5e7eb;
    font-size: var(--font-size-sm);
    margin-bottom: 4px;
}

.contato__card p {
    color: var(--secondary-color);
    font-size: var(--font-size-xs);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0;
}

.contato__map {
    position: relative;
    height: 100%;
    min-height: 350px;
    overflow: hidden;
}

.contato__map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    filter: grayscale(100%) invert(90%) contrast(0.9);
}

.contato__map-address {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(10, 15, 26, 0.95), transparent);
    padding: var(--spacing-xl) var(--spacing-lg) var(--spacing-md);
}

.contato__map-address p {
    color: #d1d5db;
    font-size: var(--font-size-sm);
    margin: 0;
}


/* ============================================ */
/* FOOTER */
/* ============================================ */
.footer {
    background-color: #060810;
    color: #6b7280;
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(201, 168, 76, 0.08);
}

.footer__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer__brand {
    display: flex;
    align-items: baseline;
    gap: var(--spacing-sm);
}

.footer__logo-text {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: 500;
    color: #e5e7eb;
}

.footer__logo-tagline {
    font-size: 0.6rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 3px;
    padding-left: var(--spacing-sm);
    border-left: 1px solid #4b5563;
}

.footer__social {
    display: flex;
    gap: var(--spacing-md);
}

.footer__social-link {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    transition: all 0.3s ease;
}

.footer__social-link:hover {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
    transform: translateY(-2px);
}

.footer__divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.15), transparent);
    margin: 1.5rem 0;
}

.footer__links-row {
    display: flex;
    justify-content: center;
    gap: var(--spacing-xl);
    flex-wrap: wrap;
}

.footer__link {
    color: #6b7280;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    padding: var(--spacing-xs) 0;
}

.footer__link:hover {
    color: var(--secondary-color);
}

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

.footer__copy {
    color: #4b5563;
    font-size: 0.75rem;
    margin: 0;
}

.footer__legal {
    display: flex;
    gap: var(--spacing-lg);
}

.footer__legal-link {
    color: #4b5563;
    font-size: 0.75rem;
    transition: color 0.3s ease;
}

.footer__legal-link:hover {
    color: var(--secondary-color);
}

/* ============================================ */
/* BANNER DE COOKIES */
/* ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(6, 8, 16, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(201, 168, 76, 0.1);
    z-index: 9000;
    padding: 1.5rem 0;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner__content {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-banner__text h4 {
    color: #e5e7eb;
    font-family: var(--font-secondary);
    font-size: 1rem;
    margin-bottom: 6px;
}

.cookie-banner__text p {
    color: #9ca3af;
    font-size: 0.8rem;
    line-height: 1.5;
    margin: 0;
}

.cookie-banner__link {
    color: var(--secondary-color);
    text-decoration: underline;
}

.cookie-banner__link:hover {
    color: var(--secondary-light);
}

.cookie-banner__actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-banner__btn {
    padding: 10px 20px;
    font-size: 0.78rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.cookie-banner__btn--accept {
    background: var(--secondary-color);
    color: #0a0f1a;
}

.cookie-banner__btn--accept:hover {
    background: var(--secondary-light);
}

.cookie-banner__btn--essential {
    background: transparent;
    color: #d1d5db;
    border: 1px solid rgba(255,255,255,0.15);
}

.cookie-banner__btn--essential:hover {
    border-color: rgba(255,255,255,0.4);
    color: #ffffff;
}

.cookie-banner__btn--reject {
    background: transparent;
    color: #6b7280;
    border: none;
}

.cookie-banner__btn--reject:hover {
    color: #d1d5db;
}

/* ============================================ */
/* BOTÃO SCROLL TO TOP */
/* ============================================ */
.scroll-top {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background-color: transparent;
    color: var(--secondary-color);
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 0;
    font-size: var(--font-size-lg);
    cursor: pointer;
    box-shadow: none;
    z-index: var(--z-fixed);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background-color: var(--secondary-color);
    color: #0a0f1a;
    border-color: var(--secondary-color);
}

/* ============================================ */
/* ANIMAÇÕES */
/* ============================================ */
[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(50px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-50px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.8);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

/* ============================================ */
/* RESPONSIVIDADE - TABLET (max 968px) */
/* ============================================ */
@media screen and (max-width: 968px) {
    .sobre__container,
    .contato__container {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }

    .contato__map {
        min-height: 300px;
    }

    .contato__grid {
        grid-template-columns: 1fr 1fr;
    }

    .sobre__image {
        order: -1;
    }

    .hero__carousel {
        height: 70vh;
    }

    .advogados__container {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }

    .galeria__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .galeria__item--large {
        grid-column: span 1;
        grid-row: span 1;
    }

    .footer__top {
        flex-direction: column;
        gap: var(--spacing-md);
        text-align: center;
    }

    .footer__links-row {
        gap: var(--spacing-md);
    }
}

/* ============================================ */
/* RESPONSIVIDADE - MOBILE (max 768px) */
/* ============================================ */
@media screen and (max-width: 768px) {
    /* Base */
    .section {
        padding: 4rem 0;
    }

    /* Urgency bar */
    .urgency-bar {
        top: 0;
    }

    .urgency-bar__text {
        font-size: 0.65rem;
    }

    /* Header */
    .header {
        top: 35px;
        height: auto;
    }

    .header.urgency-hidden {
        top: 0;
    }

    .nav {
        height: 60px;
    }

    .logo-text {
        font-size: 1.1rem;
    }

    .logo-tagline,
    .online-badge {
        display: none;
    }

    .nav__toggle,
    .nav__close {
        display: block;
        color: #e5e7eb;
    }

    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        height: 100vh;
        background-color: #0e1420;
        border-left: 1px solid rgba(201, 168, 76, 0.1);
        padding: 5rem var(--spacing-xl) var(--spacing-xl);
        transition: right 0.4s ease;
        z-index: var(--z-modal);
    }

    .nav__menu.show-menu {
        right: 0;
    }

    .nav__list {
        flex-direction: column;
        gap: var(--spacing-lg);
    }

    .nav__link {
        font-size: 1rem;
        color: #d1d5db;
    }

    .nav__cta {
        text-align: center;
        display: block;
    }

    .nav__close {
        position: absolute;
        top: var(--spacing-lg);
        right: var(--spacing-lg);
        font-size: 1.5rem;
    }

    /* Hero */
    .hero {
        margin-top: 95px;
    }

    .hero.urgency-hidden {
        margin-top: 60px;
    }

    .hero__carousel {
        height: 65vh;
        min-height: 400px;
    }

    .carousel__tag {
        font-size: 0.6rem;
        padding: 4px 12px;
    }

    .carousel__title {
        font-size: 1.6rem;
        max-width: 100%;
    }

    .carousel__description {
        font-size: 0.9rem;
        max-width: 100%;
    }

    .carousel__buttons {
        flex-direction: column;
        gap: var(--spacing-sm);
    }

    .carousel__buttons .button {
        text-align: center;
        font-size: 0.85rem;
    }

    /* Stats bar */
    .stats-bar__container {
        flex-wrap: wrap;
        gap: var(--spacing-md);
    }

    .stats-bar__divider {
        display: none;
    }

    .stats-bar__item {
        flex: 1 1 40%;
    }

    .stat__number {
        font-size: 1.8rem;
    }

    .stat__text {
        font-size: 0.6rem;
    }

    /* Quote */
    .quote-section {
        padding: 3rem 0;
    }

    .quote-section__text {
        font-size: 1.1rem;
    }

    /* Advogados */
    .advogados__container {
        grid-template-columns: 1fr;
        max-width: 350px;
    }

    /* Sobre */
    .sobre__image img {
        height: 350px;
    }

    /* Galeria */
    .galeria__grid {
        grid-template-columns: 1fr;
    }

    .galeria__item {
        height: 220px;
    }

    /* Carrosséis */
    .servico__card {
        min-width: 290px;
        max-width: 290px;
    }

    .depoimento__card {
        min-width: 300px;
        max-width: 300px;
    }

    .destaque__card {
        min-width: 270px;
        max-width: 270px;
    }

    /* Benefícios */
    .beneficio__item {
        flex-direction: column;
        text-align: center;
        padding: var(--spacing-lg);
    }

    .beneficio__number {
        font-size: var(--font-size-3xl);
    }

    /* Contato */
    .contato__container {
        grid-template-columns: 1fr;
    }

    .contato__grid {
        grid-template-columns: 1fr 1fr;
    }

    .contato__map {
        min-height: 280px;
    }

    /* Footer */
    .footer__bottom {
        flex-direction: column;
        gap: var(--spacing-md);
        text-align: center;
    }

    .footer__links-row {
        flex-wrap: wrap;
        justify-content: center;
        gap: var(--spacing-sm);
    }

    /* Elementos flutuantes */
    .whatsapp-float {
        bottom: 20px;
        right: 15px;
    }

    .whatsapp-float__icon {
        width: 50px;
        height: 50px;
    }

    .whatsapp-float__icon svg {
        width: 26px;
        height: 26px;
    }

    .whatsapp-float__label {
        display: none;
    }

    .mobile-cta-bar {
        display: none;
    }

    .social-proof {
        left: 10px;
        right: 10px;
        bottom: 70px;
        max-width: none;
    }

    .chatbot {
        left: 10px;
        right: 10px;
        bottom: 70px;
        width: auto;
    }

    .chatbot__trigger {
        bottom: 70px;
        left: 15px;
        width: 52px;
        height: 52px;
    }

    .chatbot__trigger-icon {
        width: 22px;
        height: 22px;
    }

    .chatbot__trigger-label {
        display: none;
    }

    /* Cookie banner */
    .cookie-banner__content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-banner__actions {
        flex-direction: column;
        width: 100%;
    }

    .cookie-banner__btn {
        width: 100%;
    }
}

/* ============================================ */
/* RESPONSIVIDADE - MOBILE PEQUENO (max 480px) */
/* ============================================ */
@media screen and (max-width: 480px) {
    :root {
        --container-padding: 0.75rem;
    }

    .hero__carousel {
        height: 55vh;
        min-height: 350px;
    }

    .carousel__title {
        font-size: 1.3rem;
    }

    .carousel__description {
        font-size: 0.8rem;
    }

    .section__title {
        font-size: 1.5rem;
    }

    .stat__number {
        font-size: 1.5rem;
    }

    .servico__card {
        min-width: 260px;
        max-width: 260px;
    }

    .depoimento__card {
        min-width: 270px;
        max-width: 270px;
    }

    .destaque__card {
        min-width: 250px;
        max-width: 250px;
    }

    .advogados__container {
        max-width: 100%;
    }

    .contato__grid {
        grid-template-columns: 1fr;
    }

    .contato__card {
        padding: var(--spacing-md);
    }

    .whatsapp-float {
        bottom: 15px;
        right: 12px;
    }

    .whatsapp-float__icon {
        width: 45px;
        height: 45px;
    }

    .quote-section__text {
        font-size: 1rem;
    }

    .mobile-cta-bar__btn {
        font-size: 0.85rem;
        padding: 12px;
    }
}

/* ============================================ */
/* BOTÃO FLUTUANTE WHATSAPP */
/* ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 150;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    transition: bottom 0.3s ease;
}

.whatsapp-float.cookie-visible {
    bottom: 110px;
}

.whatsapp-float__icon {
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: var(--transition-base);
    position: relative;
}

.whatsapp-float__icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #25D366;
    animation: whatsappPulse 2s ease-out infinite;
    z-index: -1;
}

.whatsapp-float:hover .whatsapp-float__icon {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

@keyframes whatsappPulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.8); opacity: 0; }
}

.whatsapp-float__label {
    background-color: rgba(14, 20, 32, 0.9);
    color: #d1d5db;
    padding: 4px 10px;
    border-radius: 3px;
    font-size: 0.65rem;
    font-weight: 400;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(5px);
    transition: var(--transition-base);
    pointer-events: none;
    letter-spacing: 0.5px;
}

.whatsapp-float:hover .whatsapp-float__label {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================ */
/* NOTIFICAÇÕES DE PROVA SOCIAL */
/* ============================================ */
.social-proof {
    position: fixed;
    bottom: 30px;
    left: 25px;
    background-color: rgba(14, 20, 32, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 2px;
    padding: var(--spacing-md) var(--spacing-lg);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    z-index: 140;
    max-width: 340px;
    transform: translateX(-120%);
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-left: 2px solid var(--secondary-color);
}

.social-proof.show {
    transform: translateX(0);
}

.social-proof__avatar {
    width: 45px;
    height: 45px;
    background-color: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.social-proof__text {
    font-size: var(--font-size-sm);
    color: var(--gray-800);
    margin: 0;
    line-height: 1.4;
}

.social-proof__text strong {
    color: var(--primary-color);
}

.social-proof__time {
    font-size: var(--font-size-xs);
    color: var(--gray-500);
    display: block;
    margin-top: 2px;
}

.social-proof__close {
    position: absolute;
    top: 4px;
    right: 8px;
    background: none;
    border: none;
    font-size: var(--font-size-lg);
    color: var(--gray-400);
    cursor: pointer;
    line-height: 1;
}

/* ============================================ */
/* POP-UP EXIT INTENT */
/* ============================================ */
.exit-popup__overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
    backdrop-filter: blur(4px);
}

.exit-popup__overlay.show {
    opacity: 1;
    visibility: visible;
}

.exit-popup {
    background-color: #111827;
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: 2px;
    padding: var(--spacing-3xl);
    max-width: 480px;
    width: 90%;
    text-align: center;
    position: relative;
    transform: scale(0.8) translateY(30px);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

.exit-popup__overlay.show .exit-popup {
    transform: scale(1) translateY(0);
}

.exit-popup__close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: var(--font-size-3xl);
    color: var(--gray-400);
    cursor: pointer;
    transition: var(--transition-fast);
    line-height: 1;
}

.exit-popup__close:hover {
    color: var(--gray-800);
}

.exit-popup__icon {
    font-size: 4rem;
    margin-bottom: var(--spacing-md);
}

.exit-popup__title {
    font-size: var(--font-size-3xl);
    color: #f3f4f6;
    margin-bottom: var(--spacing-md);
}

.exit-popup__text {
    font-size: var(--font-size-base);
    color: #9ca3af;
    line-height: var(--line-height-relaxed);
    margin-bottom: var(--spacing-xl);
}

.exit-popup__cta {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: var(--font-size-lg);
    padding: var(--spacing-md) var(--spacing-2xl);
    animation: ctaPulse 2s ease-in-out infinite;
}

@keyframes ctaPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(201, 162, 39, 0.4); }
    50% { box-shadow: 0 0 0 12px rgba(201, 162, 39, 0); }
}

.exit-popup__sub {
    font-size: var(--font-size-sm);
    color: var(--gray-500);
    margin-top: var(--spacing-md);
    margin-bottom: 0;
}

/* ============================================ */
/* BARRA FIXA MOBILE CTA */
/* ============================================ */
.mobile-cta-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 160;
    padding: var(--spacing-sm);
    background: linear-gradient(to top, rgba(0,0,0,0.1), transparent);
}

.mobile-cta-bar__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    width: 100%;
    padding: var(--spacing-md);
    background-color: #25D366;
    color: var(--white);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-bold);
    border-radius: var(--border-radius-md);
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: var(--transition-base);
}

.mobile-cta-bar__btn:hover {
    background-color: #20bd5a;
    color: var(--white);
}



.online-badge__dot {
    width: 8px;
    height: 8px;
    background-color: #10b981;
    border-radius: 50%;
    display: inline-block;
    animation: onlinePulse 1.5s ease-in-out infinite;
}

@keyframes onlinePulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
    50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
}

/* ============================================ */
/* CHATBOT SIMULADO */
/* ============================================ */
.chatbot {
    position: fixed;
    bottom: 100px;
    left: 25px;
    width: 360px;
    max-height: 480px;
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 170;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: translateY(20px) scale(0.95);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.68, -0.3, 0.265, 1.2);
}

.chatbot.show {
    transform: translateY(0) scale(1);
    opacity: 1;
    visibility: visible;
}

.chatbot__header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: var(--spacing-md) var(--spacing-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chatbot__header-info {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.chatbot__avatar {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.chatbot__name {
    font-size: var(--font-size-sm);
    margin: 0;
    color: var(--white);
}

.chatbot__status {
    font-size: var(--font-size-xs);
    color: #a7f3d0;
    display: flex;
    align-items: center;
    gap: 4px;
}

.online-dot {
    width: 6px;
    height: 6px;
    background-color: #10b981;
    border-radius: 50%;
    display: inline-block;
    animation: onlinePulse 1.5s ease-in-out infinite;
}

.online-dot.offline-dot {
    background-color: #f59e0b;
    animation: none;
}

.chatbot__close {
    background: none;
    border: none;
    color: var(--white);
    font-size: var(--font-size-2xl);
    cursor: pointer;
    opacity: 0.7;
    transition: var(--transition-fast);
    line-height: 1;
}

.chatbot__close:hover {
    opacity: 1;
}

.chatbot__body {
    flex: 1;
    padding: var(--spacing-md);
    overflow-y: auto;
    background-color: #0e1420;
    min-height: 200px;
    max-height: 280px;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.chatbot__msg {
    max-width: 85%;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: 12px;
    font-size: var(--font-size-sm);
    line-height: 1.5;
    animation: msgAppear 0.3s ease-out;
}

@keyframes msgAppear {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.chatbot__msg--bot {
    background-color: #1c2538;
    color: #d1d5db;
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.chatbot__msg--user {
    background-color: var(--primary-color);
    color: var(--white);
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.chatbot__msg--typing {
    background-color: #1c2538;
    align-self: flex-start;
    border-bottom-left-radius: 4px;
    display: flex;
    gap: 4px;
    padding: 12px 18px;
}

.typing-dot {
    width: 8px;
    height: 8px;
    background-color: var(--gray-400);
    border-radius: 50%;
    animation: typingBounce 1.4s ease-in-out infinite;
}

.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingBounce {
    0%, 60%, 100% { transform: translateY(0); }
    30% { transform: translateY(-6px); }
}

.chatbot__options {
    padding: var(--spacing-sm) var(--spacing-md) var(--spacing-md);
    background-color: #0e1420;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.chatbot__option-btn {
    width: 100%;
    padding: 10px var(--spacing-md);
    background-color: transparent;
    color: #d1d5db;
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 2px;
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    cursor: pointer;
    transition: var(--transition-fast);
    text-align: left;
}

.chatbot__option-btn:hover {
    background-color: var(--secondary-color);
    color: #0a0f1a;
    border-color: var(--secondary-color);
}

.chatbot__whatsapp-btn {
    width: 100%;
    padding: 10px var(--spacing-md);
    background-color: #25D366;
    color: var(--white);
    border: none;
    border-radius: var(--border-radius-full);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-bold);
    cursor: pointer;
    transition: var(--transition-fast);
    text-align: center;
    text-decoration: none;
    display: block;
}

.chatbot__whatsapp-btn:hover {
    background-color: #20bd5a;
    color: var(--white);
}

/* Botão trigger do chatbot */
.chatbot__trigger {
    position: fixed;
    bottom: 100px;
    left: 25px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
    color: var(--primary-color);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.35);
    z-index: 170;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.chatbot__trigger::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
    animation: chatPulse 2.5s ease-out infinite;
    z-index: -1;
}

@keyframes chatPulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.7); opacity: 0; }
}

.chatbot__trigger:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(201, 168, 76, 0.5);
}

.chatbot__trigger-icon {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
}

.chatbot__trigger-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 22px;
    height: 22px;
    background-color: #ef4444;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary-color);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

.chatbot__trigger-label {
    position: absolute;
    left: calc(100% + 10px);
    top: 50%;
    transform: translateY(-50%) translateX(5px);
    background-color: rgba(14, 20, 32, 0.95);
    color: var(--secondary-light);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.72rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.chatbot__trigger-label::before {
    content: '';
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-right-color: rgba(14, 20, 32, 0.95);
}

.chatbot__trigger:hover .chatbot__trigger-label {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}


