/* ============================================
   MONIQUE FREITAS ADVOCACIA
   Luxury Legal Branding - Premium Stylesheet
   ============================================ */

/* CSS Variables */
:root {
    /* Paleta */
    --navy-deep: #1A2D4A;
    --rose-gold: #C9A882;
    --off-white: #FAFAF8;
    --black-soft: #1A1A1A;
    --gray-medium: #6B6B6B;
    --white-pure: #FFFFFF;

    /* Tipografia */
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Pesos */
    --weight-light: 300;
    --weight-regular: 400;
    --weight-medium: 500;
    --weight-semibold: 600;

    /* Espaçamento */
    --section-padding: 8rem 0;
    --container-max: 1200px;
    --container-padding: 2rem;

    /* Transições */
    --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-standard: cubic-bezier(0.4, 0, 0.2, 1);

    /* Sombras */
    --shadow-soft: 0 10px 40px rgba(26, 45, 74, 0.08);
    --shadow-medium: 0 20px 60px rgba(26, 45, 74, 0.12);
}

/* Reset & Base */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

/* Âncoras limpas — evita conteúdo cortado pelo header fixo */
#hero,
#dor-solucao,
#servicos,
#sobre,
#resultados,
#depoimentos,
#faq,
#localizacao,
#contato {
    scroll-margin-top: 100px;
}

body {
    font-family: var(--font-sans);
    font-weight: var(--weight-light);
    line-height: 1.7;
    color: var(--black-soft);
    background-color: var(--off-white);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul {
    list-style: none;
}

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.3s ease;
    background: transparent;
}

.navbar.scrolled {
    background: var(--navy-deep);
    padding: 1rem 0;
    box-shadow: var(--shadow-soft);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 7px var(--container-padding) 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(2rem, 5vw, 6rem);
    background-color: rgba(30, 41, 59, 0.63);
    border-width: 0px;
    border-radius: 20px;
}

@media (max-width: 768px) {
    .nav-container {
        justify-content: space-between;
    }
}

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

.logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.logo-monogram {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: var(--weight-medium);
    color: var(--rose-gold);
    border: 1px solid var(--rose-gold);
    padding: 0.25rem 0.5rem;
    letter-spacing: 0.1em;
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: var(--weight-regular);
    color: var(--white-pure);
    letter-spacing: 0.05em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 0.875rem;
    font-weight: var(--weight-regular);
    color: var(--white-pure);
    letter-spacing: 0.02em;
    position: relative;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--rose-gold);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--rose-gold) !important;
    color: var(--navy-deep) !important;
    padding: 0.75rem 1.5rem !important;
    font-weight: var(--weight-medium) !important;
    transition: all 0.3s ease !important;
}

.nav-cta:hover {
    background: var(--white-pure) !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--white-pure);
    transition: all 0.3s ease;
}

/* ============================================
   HERO - Split Assimétrico 55/45
   ============================================ */
.hero {
    height: 800px;
    display: grid;
    grid-template-columns: 55% 45%;
    background: var(--navy-deep);
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 6rem 4rem 3rem 8rem;
    position: relative;
    z-index: 2;
}

.hero-label {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: var(--weight-regular);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--rose-gold);
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeIn 0.4s ease-out 0.2s forwards;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: var(--weight-light);
    line-height: 1.15;
    color: var(--white-pure);
    margin-bottom: 1.5rem;
}

.hero-title .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(50px);
    animation: wordReveal 0.8s var(--ease-smooth) forwards;
    margin-right: 0.3em;
}

.hero-title .word:nth-child(1) {
    animation-delay: 0.4s;
}

.hero-title .word:nth-child(2) {
    animation-delay: 0.44s;
}

.hero-title .word:nth-child(3) {
    animation-delay: 0.48s;
}

.hero-title .word:nth-child(4) {
    animation-delay: 0.52s;
}

.hero-title .word:nth-child(5) {
    animation-delay: 0.56s;
}

.hero-title .word:nth-child(6) {
    animation-delay: 0.6s;
}

.hero-title .word:nth-child(7) {
    animation-delay: 0.64s;
}

.hero-title .word:nth-child(8) {
    animation-delay: 0.68s;
}

.hero-subtitle {
    font-size: 1.125rem;
    font-weight: var(--weight-light);
    color: rgba(255, 255, 255, 0.7);
    max-width: 480px;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.6s ease-out 0.9s forwards;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: var(--weight-medium);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: var(--rose-gold);
    color: var(--navy-deep);
    border: 1px solid var(--rose-gold);
}

.btn-primary:hover {
    background: var(--white-pure);
    border-color: var(--white-pure);
}

.btn-secondary {
    background: transparent;
    color: var(--white-pure);
    border: 1px solid var(--rose-gold);
}

.btn-secondary:hover {
    background: var(--rose-gold);
    color: var(--navy-deep);
}

.btn-full {
    width: 100%;
}

/* Hero Image */
.hero-image {
    position: relative;
    overflow: hidden;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    clip-path: polygon(8% 0, 100% 0, 100% 100%, 0% 100%);
}

.hero-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%;
    transform: scale(1.05);
    animation: scaleInHero 10s ease-out forwards;
}

@keyframes scaleInHero {
    0% {
        transform: scale(1.35);
    }

    100% {
        transform: scale(1.05);
    }
}

.hero-monogram {
    position: absolute;
    top: 10%;
    right: 15%;
    font-family: var(--font-serif);
    font-size: 12rem;
    font-weight: var(--weight-light);
    color: transparent;
    -webkit-text-stroke: 1px var(--rose-gold);
    opacity: 0.08;
    pointer-events: none;
    animation: fadeIn 1s ease-out 0.5s forwards;
    opacity: 0;
}

/* ============================================
   SEÇÃO DOR E SOLUÇÃO
   ============================================ */
.pain-solution {
    padding: var(--section-padding);
    background: var(--off-white);
}

.pain-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.section-label {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: var(--weight-regular);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--rose-gold);
    margin-bottom: 1.5rem;
}

.section-label.light {
    color: var(--rose-gold);
}

.pain-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: var(--weight-regular);
    color: var(--navy-deep);
    margin-bottom: 3rem;
    line-height: 1.2;
}

.pain-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: var(--weight-medium);
    color: var(--rose-gold);
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.875rem;
    color: var(--gray-medium);
    margin-top: 0.5rem;
    max-width: 180px;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: var(--rose-gold);
    opacity: 0.3;
}

.pain-text {
    font-size: 1.125rem;
    color: var(--gray-medium);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.pain-card {
    background: var(--white-pure);
    padding: 2.5rem;
    text-align: left;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease;
    border-top: 3px solid var(--rose-gold);
}

.pain-card:hover {
    transform: translateY(-5px);
}

.pain-icon {
    margin-bottom: 1.5rem;
    display: inline-flex;
}

.pain-card h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--navy-deep);
    margin-bottom: 1rem;
    font-weight: var(--weight-medium);
}

.pain-card p {
    color: var(--gray-medium);
    font-size: 0.9375rem;
    line-height: 1.7;
}

@media (max-width: 900px) {
    .pain-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   BARRA ANIMADA (MARQUEE)
   ============================================ */
.marquee-bar {
    background: var(--navy-deep);
    padding: 1.25rem 0;
    overflow: hidden;
    border-top: 1px solid rgba(201, 168, 130, 0.2);
    border-bottom: 1px solid rgba(201, 168, 130, 0.2);
    position: relative;
    display: flex;
    /* Fade nas bordas */
    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 8%,
        black 92%,
        transparent 100%
    );
    mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 8%,
        black 92%,
        transparent 100%
    );
}

.marquee-content {
    display: flex;
    gap: 3rem;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
    flex-shrink: 0;
    min-width: 100%;
}

.marquee-content span {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(201, 168, 130, 0.6);
    transition: color 0.3s ease;
}

.marquee-content span:not(.separator):hover {
    color: var(--rose-gold);
}

.marquee-content .separator {
    color: rgba(201, 168, 130, 0.25);
    font-size: 0.5rem;
    align-self: center;
}

.marquee-bar:hover .marquee-content {
    animation-play-state: paused;
}

/* ============================================
   SERVIÇOS - ACORDEÃO
   ============================================ */
.services {
    padding: var(--section-padding);
    background: var(--off-white);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header.light {
    color: var(--white-pure);
}

.section-header.light .section-title {
    color: var(--white-pure);
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: var(--weight-regular);
    color: var(--navy-deep);
    line-height: 1.25;
}

.section-title.light {
    color: var(--white-pure);
}

.services-neo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 0;
    margin-top: 4rem;
    border-top: 1px solid rgba(15, 23, 42, 0.15);
    border-left: 1px solid rgba(15, 23, 42, 0.15);
}

.neo-card {
    background: transparent;
    padding: 3.5rem 2.5rem;
    border-right: 1px solid rgba(15, 23, 42, 0.15);
    border-bottom: 1px solid rgba(15, 23, 42, 0.15);
    display: flex;
    flex-direction: column;
    transition: background-color 0.4s ease;
}

.neo-card:hover {
    background-color: var(--navy-deep);
}

.neo-number {
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--navy-deep);
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
    transition: color 0.4s ease;
}

.neo-card:hover .neo-number {
    color: var(--rose-gold);
}

.neo-title {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    color: var(--navy-deep);
    margin-bottom: 1.5rem;
    line-height: 1.25;
    transition: color 0.4s ease;
}

.neo-card:hover .neo-title {
    color: var(--white-pure);
}

.neo-desc {
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    flex-grow: 1;
    transition: color 0.4s ease;
}

.neo-card:hover .neo-desc {
    color: rgba(255, 255, 255, 0.8);
}

.neo-tag {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--navy-deep);
    font-weight: 600;
    padding-top: 1rem;
    border-top: 1px solid rgba(15, 23, 42, 0.1);
    align-self: flex-start;
    transition: color 0.4s ease, border-color 0.4s ease;
}

.neo-card:hover .neo-tag {
    color: var(--rose-gold);
    border-color: rgba(255, 255, 255, 0.1);
}

.neo-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1.25rem;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: var(--weight-medium);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--rose-gold);
    border-bottom: 1px solid var(--rose-gold);
    padding-bottom: 0.2rem;
    transition: opacity 0.2s ease;
}

.neo-btn::after {
    content: '→';
    font-size: 0.9rem;
}

.neo-btn:hover {
    opacity: 0.7;
}

/* ============================================
   SEÇÃO ENCANTAMENTO
   ============================================ */
.enchantment {
    padding: 0;
}

.enchantment-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 80vh;
}

.enchantment-image {
    position: relative;
    z-index: 2;
    box-shadow: 0 0 50px rgba(201, 168, 130, 0.35); /* Glow na cor de destaque */
}

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

.enchantment-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 6rem;
    background: var(--white-pure);
}

.enchantment-content h2 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: var(--weight-regular);
    color: var(--navy-deep);
    margin: 1.5rem 0;
    line-height: 1.25;
}

.enchantment-content p {
    font-size: 1.125rem;
    color: var(--gray-medium);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.decorative-line {
    width: 80px;
    height: 2px;
    background: var(--rose-gold);
    transform-origin: left;
    transform: scaleX(0);
    transition: transform 0.6s ease-out;
}

.decorative-line.visible {
    transform: scaleX(1);
}

/* ============================================
   SOBRE / CREDENCIAIS
   ============================================ */
/* ============================================
   SOBRE / CREDENCIAIS - PREMIUM
   ============================================ */
.about-premium {
    padding: 6rem 0;
    background: var(--white-pure);
}

.about-premium-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-premium-text {
    display: flex;
    flex-direction: column;
}

.about-premium-name {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--navy-deep);
    margin: 1rem 0;
}

.about-premium-divider {
    width: 60px;
    height: 3px;
    background: var(--rose-gold);
    margin: 2rem 0;
}

.about-premium-lead {
    font-size: 1.25rem;
    color: var(--navy-deep);
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.about-premium-body {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 3rem;
}

.about-premium-body p {
    font-size: 1rem;
    color: var(--gray-medium);
    line-height: 1.8;
}

.about-premium-stats {
    display: flex;
    gap: 3rem;
    border-top: 1px solid rgba(15, 23, 42, 0.1);
    padding-top: 2rem;
}

.stat-box {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-num {
    font-family: var(--font-sans);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--rose-gold);
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--navy-light);
    font-weight: 600;
    line-height: 1.4;
}

.about-premium-img-wrapper {
    position: relative;
    height: 750px;
    overflow: hidden;
    box-shadow: -20px 20px 60px rgba(15, 23, 42, 0.08);
}

.about-premium-portrait {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

/* ============================================
   CARROSSEL MOBILE EXCLUSIVO 
   (Oculto no Desktop)
   ============================================ */
.mobile-carousel {
    display: none;
}

/* ============================================
   GALERIA DO ENSAIO / ESCRITÓRIO
   ============================================ */
.about-gallery {
    padding: 0 0 6rem 0;
    background: var(--white-pure);
}

.gallery-container {
    max-width: var(--container-max);
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    background: var(--navy-deep);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: saturate(0.9);
}

.gallery-item:hover img {
    transform: scale(1.05);
    filter: saturate(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.8) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    padding: 2rem;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay p {
    color: var(--white-pure);
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    margin: 0;
}

/* Bento-like Grid Sizing */
.item-main {
    grid-column: span 2;
    grid-row: span 2;
}

.item-tall {
    grid-column: span 1;
    grid-row: span 2;
}

.item-wide {
    grid-column: span 1;
    grid-row: span 1;
}

.item-normal {
    grid-column: span 1;
    grid-row: span 1;
}

/* ============================================
   DEPOIMENTOS - MARQUEE
   ============================================ */
.testimonials {
    padding: var(--section-padding);
    background: var(--navy-deep);
    overflow: hidden;
}

.testimonials-marquee {
    overflow: hidden;
    margin-top: 3rem;
    cursor: grab;
}

.testimonials-marquee:active {
    cursor: grabbing;
}

.marquee-track {
    display: flex;
    /* Usando margin-right nos cards em vez de gap para garantir exatidão nos 50% de scroll */
    animation: marqueeTestimonials 35s linear infinite;
    width: max-content;
}

.testimonials-marquee:hover .marquee-track {
    animation-play-state: paused;
}

.testimonial-card {
    flex-shrink: 0;
    width: 400px;
    margin-right: 2rem; /* Substitui o gap no flex container */
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(201, 168, 130, 0.2);
    border-radius: 0;
    
    /* Animação horizontal de entrada */
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out, background-color 0.3s ease;
}

.testimonial-card.animated {
    opacity: 1;
    transform: translateX(0);
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.1);
}

.testimonial-stars {
    color: var(--rose-gold);
    font-size: 1rem;
    letter-spacing: 0.2em;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 1rem;
    font-weight: var(--weight-light);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: var(--weight-medium);
    color: var(--rose-gold);
}

.testimonial-role {
    display: block;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.25rem;
}

/* ============================================
   FAQ
   ============================================ */
.faq {
    padding: var(--section-padding);
    background: var(--off-white);
}

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

.faq-item {
    border-bottom: 1px solid rgba(201, 168, 130, 0.2);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
    text-align: left;
    font-family: var(--font-sans);
    font-size: 1.0625rem;
    font-weight: var(--weight-regular);
    color: var(--navy-deep);
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--rose-gold);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: var(--weight-light);
    color: var(--rose-gold);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.42s var(--ease-standard);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding-bottom: 1.5rem;
    color: var(--gray-medium);
    line-height: 1.8;
}

/* ============================================
   LOCALIZAÇÃO
   ============================================ */
.location {
    padding: var(--section-padding);
    background: var(--white-pure);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: stretch;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.location-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.location-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.location-item strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: var(--weight-medium);
    color: var(--navy-deep);
    margin-bottom: 0.25rem;
}

.location-item p {
    color: var(--gray-medium);
    font-size: 0.9375rem;
    line-height: 1.7;
}

.location-item a {
    color: var(--gray-medium);
    transition: color 0.3s ease;
}

.location-item a:hover {
    color: var(--rose-gold);
}

.location-link {
    display: inline-block;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: var(--rose-gold) !important;
    font-weight: var(--weight-medium);
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

 .social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--navy-deep);
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--rose-gold);
}

.location-map {
    min-height: 400px;
    border-radius: 0;
    overflow: hidden;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    filter: grayscale(30%);
}

/* ============================================
   CTA COM FORMULÁRIO
   ============================================ */
.cta-section {
    padding: 6rem 0;
    background: var(--navy-deep);
    position: relative;
    overflow: hidden;
}

/* Foto de fundo no lado esquerdo */
.cta-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 53%;
    height: 100%;
    z-index: 0;
}

.cta-image-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    opacity: 0.5;
}

/* Gradiente dos dois lados cobrindo a foto */
.cta-gradient-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right,
            var(--navy-deep) 0%,
            rgba(10, 15, 28, 0.4) 35%,
            transparent 55%),
        linear-gradient(to left,
            var(--navy-deep) 0%,
            rgba(10, 15, 28, 0.4) 25%,
            transparent 50%);
}

.cta-section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
    position: relative;
    z-index: 2;
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

/* Bloco de texto à esquerda */
.cta-text-block {
    color: var(--white-pure);
}

.cta-heading {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: var(--weight-light);
    line-height: 1.2;
    color: var(--white-pure);
    margin: 1.5rem 0;
}

.cta-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.cta-benefits-list {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.cta-benefit {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.85);
}

.benefit-check {
    color: var(--rose-gold);
    font-weight: var(--weight-bold);
    font-size: 1.1rem;
}

/* Caixa do formulário — glassmorphism */
.cta-form-box {
    background: rgba(10, 15, 28, 0.55);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(201, 168, 130, 0.15);
    padding: 2.5rem 2.5rem 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: var(--weight-light);
    color: var(--white-pure);
    margin-bottom: 0.25rem;
}

.form-header p {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.05em;
    margin: 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1.25rem;
}

.form-row .form-group {
    margin-bottom: 0;
}

.form-group label {
    font-size: 0.75rem;
    font-weight: var(--weight-medium);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 0;
    border: none;
    border-bottom: 1px solid rgba(201, 168, 130, 0.3);
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    color: var(--white-pure);
    background: transparent;
    transition: border-color 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.form-group select option {
    background: var(--navy-deep);
    color: var(--white-pure);
}

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

.form-group textarea {
    resize: vertical;
    min-height: 60px;
    max-height: 120px;
}

.form-note {
    text-align: center;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 1rem;
    margin-bottom: 0;
}

.btn-full svg {
    margin-left: 0.5rem;
}

/* ============================================
   LOCALIZAÇÃO
   ============================================ */
.location {
    padding: var(--section-padding);
    background: var(--off-white);
}

.location-header {
    text-align: center;
    margin-bottom: 3rem;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: stretch;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: center;
}

.location-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.location-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border: 1px solid var(--rose-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rose-gold);
}

.location-item h4 {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: var(--weight-medium);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--rose-gold);
    margin-bottom: 0.35rem;
}

.location-item p {
    font-size: 0.9375rem;
    color: var(--navy-deep);
    line-height: 1.6;
    margin: 0;
}

.location-map {
    min-height: 420px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.location-map iframe {
    width: 100%;
    height: 100%;
    min-height: 420px;
    display: block;
    border: 0;
}

.location-link {
    font-size: 0.9375rem;
    color: var(--rose-gold);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.location-link:hover {
    opacity: 0.75;
}

/* ============================================
   RODAPÉ
   ============================================ */
.footer {
    background: var(--navy-deep);
    color: var(--white-pure);
}

.footer-main {
    height: 342px;
    padding-top: 70px;
}

footer > div:nth-of-type(1) > div {
    padding-top: 0px;
    margin-top: -30px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    align-items: start;
    padding-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    text-decoration: none;
    cursor: default;
}

.footer-logo .logo-icon {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: var(--weight-medium);
    color: var(--rose-gold);
    border: 1px solid var(--rose-gold);
    padding: 0.4rem 0.6rem;
    letter-spacing: 0.1em;
    background: transparent;
}

.footer-logo .logo-text {
    display: flex;
    flex-direction: column;
}

.footer-logo .logo-name {
    font-family: var(--font-serif);
    font-weight: var(--weight-medium);
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    line-height: 1.2;
    color: var(--white-pure);
}

.footer-logo .logo-sub {
    font-size: 0.75rem;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.7);
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
    max-width: 400px;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white-pure);
    transition: all 0.3s ease;
    font-size: 20px;
}

.footer-social a:hover {
    color: var(--rose-gold);
    transform: translateY(-2px);
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: var(--weight-medium);
    color: var(--rose-gold);
    margin-bottom: 1.5rem;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 0.75rem;
}

.footer-links a,
.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--rose-gold);
}

.footer-bottom {
    padding-top: 2rem;
    padding-bottom: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom .footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 0;
}

.footer-credits-left,
.footer-credits-right {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin: 0;
}

.footer-credits-left p,
.footer-credits-right p {
    margin: 0;
}

.footer-credits-right a {
    color: var(--rose-gold);
    font-weight: var(--weight-medium);
    text-decoration: none;
}

.footer-credits-right a:hover {
    color: #ffdcb5;
}

/* ========================================
   WHATSAPP FLUTUANTE 
   ======================================== */
.btn-flutuante-whatsapp {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: transform 0.3s ease;
}

.btn-flutuante-whatsapp:hover {
    transform: scale(1.05);
    color: #FFF;
}

/* ============================================
   NEO CARDS — ANIMAÇÃO DE ENTRADA
   ============================================ */
.neo-card {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out, background-color 0.4s ease;
}

.neo-card.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile: 1 coluna, padding reduzido, sem borda dupla */
@media (max-width: 768px) {
    .services-neo-grid {
        grid-template-columns: 1fr;
        border-left: none;
        border-top: none;
        gap: 0;
    }

    .neo-card {
        border-right: none;
        border-bottom: 1px solid rgba(15, 23, 42, 0.12);
        border-left: 3px solid var(--rose-gold);
        padding: 2rem 1.5rem;
        transform: translateX(-30px);
        opacity: 0;
    }

    .neo-card.animated {
        transform: translateX(0);
        opacity: 1;
    }

    .neo-number {
        font-size: 0.875rem;
        margin-bottom: 1rem;
    }

    .neo-title {
        font-size: 1.375rem;
        margin-bottom: 1rem;
    }

    .neo-desc {
        font-size: 0.9375rem;
        margin-bottom: 1.5rem;
    }

    .neo-tag {
        font-size: 0.7rem;
        padding-top: 0.75rem;
    }

    .neo-btn {
        margin-top: 1rem;
    }
}

@media (max-width: 1024px) {
    div.footer-main {
        height: auto;
        padding: 3rem 0;
    }
    
    footer > div:nth-of-type(1) > div {
        margin-top: 0;
        padding-top: 1rem;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: left;
        padding-left: 25px;
        padding-right: 25px;
    }

    .footer-logo {
        justify-content: flex-start;
    }

    .footer-logo .logo-text {
        text-align: left;
    }

    .footer-links a,
    .footer-contact a,
    .footer-social {
        justify-content: flex-start;
    }

    .footer-description {
        margin: 0 0 1.5rem 0;
    }

    .footer-bottom .footer-container {
        flex-direction: column;
        gap: 0.75rem;
        text-align: left;
        align-items: flex-start;
        padding-left: 25px;
        padding-right: 25px;
    }

    .footer-credits-left,
    .footer-credits-right {
        justify-content: flex-start;
    }
}

/* ============================================
   ANIMAÇÕES KEYFRAMES
   ============================================ */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes wordReveal {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        transform: scale(1.05);
    }

    to {
        transform: scale(1);
    }
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes marqueeTestimonials {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* Animação de entrada para seções */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s ease-out;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVIDADE
   ============================================ */
@media (max-width: 1024px) {
    :root {
        --section-padding: 6rem 0;
    }

    .hero {
        grid-template-columns: 1fr;
        background-image: linear-gradient(to bottom, rgba(26, 45, 74, 0.4) 0%, rgba(26, 45, 74, 1) 100%), url("imagens/hero-monique-freitas-advocacia-tributaria-campo-grande-rj (4).webp");
        background-size: cover;
        background-position: center top;
        background-repeat: no-repeat;
    }

    .hero-content {
        padding: 8rem 2rem 4rem;
        text-align: center;
        min-height: 100vh;
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        display: none;
    }

    .hero-image-wrapper {
        clip-path: none;
    }

    .hero-monogram {
        display: none;
    }

    .about-premium-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-premium-img-wrapper {
        display: none !important;
    }
    
    .about-gallery {
        display: none !important;
    }

    /* === CARROSSEL SOBRE — MOBILE === */
    .mobile-carousel {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        gap: 1rem;
        margin: 2.5rem -2rem 0;
        padding: 0 2rem 1rem;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
    }

    .mobile-carousel::-webkit-scrollbar {
        display: none;
    }

    .mobile-carousel-item {
        position: relative;
        min-width: 82%;
        height: 420px;
        scroll-snap-align: center;
        flex-shrink: 0;
        overflow: hidden;
        transition: transform 0.4s ease, opacity 0.4s ease;
    }

    .mobile-carousel-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

    /* Dots de paginação */
    .carousel-dots {
        display: flex;
        justify-content: center;
        gap: 0.5rem;
        margin-top: 1rem;
    }

    .carousel-dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: rgba(201, 168, 130, 0.3);
        transition: background 0.3s ease, transform 0.3s ease;
    }

    .carousel-dot.active {
        background: var(--rose-gold);
        transform: scale(1.4);
    }

    /* === GALERIA — SCROLL HORIZONTAL MOBILE === */
    .gallery-grid {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        gap: 1rem;
        margin: 0 -2rem;
        padding: 0 2rem 1rem;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
    }

    .gallery-grid::-webkit-scrollbar {
        display: none;
    }

    .gallery-item {
        min-width: 75vw;
        height: 300px;
        flex-shrink: 0;
        scroll-snap-align: center;
        grid-column: unset !important;
        grid-row: unset !important;
    }

    .item-main,
    .item-tall,
    .item-wide,
    .item-normal {
        grid-column: unset;
        grid-row: unset;
    }

    /* === DEPOIMENTOS — TOUCH DRAG MELHORADO === */
    .testimonials-marquee {
        cursor: grab;
        user-select: none;
    }

    .testimonials-marquee.is-dragging {
        cursor: grabbing;
    }

    .testimonial-card {
        width: 300px;
    }

    .enchantment-split {
        grid-template-columns: 1fr;
    }

    .enchantment-image {
        min-height: 40vh;
    }

    .enchantment-content {
        padding: 3rem 2rem;
    }

    .cta-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .cta-image-bg {
        width: 100%;
    }

    .cta-gradient-overlay {
        background: linear-gradient(to top,
                var(--navy-deep) 0%,
                rgba(10, 15, 28, 0.5) 50%,
                rgba(10, 15, 28, 0.1) 100%);
    }

    .cta-section-container {
        padding: 0 2rem;
    }

    .location-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}


@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
    }

    .pain-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .stat-divider {
        width: 60px;
        height: 1px;
    }

    .about-premium-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .gallery-grid {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scroll-padding: 0 1.5rem;
        gap: 1rem;
        padding-bottom: 2rem;
        margin-left: -1.5rem;
        margin-right: -1.5rem;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
        -webkit-overflow-scrolling: touch;
    }

    .gallery-grid::-webkit-scrollbar {
        display: none;
    }

    .gallery-item {
        min-width: 85vw;
        height: 60vh;
        scroll-snap-align: center;
        flex-shrink: 0;
        border-radius: 8px;
    }

    .item-main, .item-tall, .item-wide, .item-normal {
        grid-column: auto;
        grid-row: auto;
    }

    .testimonial-card {
        width: 320px;
        padding: 1.5rem;
    }

    .cta-form-box {
        padding: 2rem 1.5rem 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .logo-img {
        height: 36px;
    }
}

@media (max-width: 480px) {
    :root {
        --container-padding: 1.25rem;
    }

    .hero-content {
        padding: 6rem 1.25rem 2rem;
    }

    .hero-title .word {
        margin-right: 0.15em;
    }

    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.8125rem;
    }

    .accordion-header {
        padding: 1.25rem;
        gap: 1rem;
    }

    .accordion-number {
        font-size: 1rem;
        min-width: 30px;
    }

    .accordion-title {
        font-size: 1.125rem;
    }

    .accordion-body {
        padding: 0 1.25rem 1.25rem 3rem;
    }
}

/* ============================================
   DRAWER MOBILE PREMIUM
   ============================================ */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1100;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-overlay.active {
    display: block;
    opacity: 1;
}

.nav-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--navy-deep);
    z-index: 1200;
    display: flex;
    flex-direction: column;
    padding: 0;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.4);
}

.nav-drawer.active {
    right: 0;
}

.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 1.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.drawer-logo img {
    height: 40px;
    width: auto;
    transform: scale(1.8);
    transform-origin: left center;
}

.drawer-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
    border-radius: 6px;
}

.drawer-close:hover {
    color: var(--rose-gold);
}

.drawer-links {
    display: flex;
    flex-direction: column;
    padding: 2rem 1.75rem;
    gap: 0;
}

.drawer-links a {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: var(--weight-regular);
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    letter-spacing: 0.04em;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.drawer-links a:last-child {
    border-bottom: none;
}

.drawer-links a:hover {
    color: var(--rose-gold);
    padding-left: 0.5rem;
}

/* ============================================
   HEADER — SCROLL INTELIGENTE
   ============================================ */
.navbar.hide-nav {
    transform: translateY(-100%);
}

.navbar {
    transition: transform 0.35s ease, background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}

/* ============================================
   TOQUE TÁTIL — ÁREA MÍNIMA 44×44px (WCAG 2.5.5)
   ============================================ */
@media (max-width: 768px) {
    .btn,
    .nav-toggle,
    .drawer-close,
    .drawer-links a,
    .footer-social a,
    .accordion-header,
    .neo-btn,
    .btn-flutuante-whatsapp {
        min-height: 44px;
        min-width: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .btn {
        padding: 0.875rem 1.5rem;
    }
}

/* ============================================
   FOOTER — LEGAL LINKS EM LINHA
   ============================================ */
.footer-legal-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
    margin-top: 6px;
    font-size: 11px;
    opacity: 0.65;
}

.footer-legal-links a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.footer-legal-links a:hover {
    opacity: 1;
    color: var(--rose-gold);
}

.footer-legal-sep {
    opacity: 0.5;
    margin: 0 4px;
}