/* ============================================================
   ALMEIDA & ROCHA ADVOCACIA — DESIGN SYSTEM
============================================================ */

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    /* Cores */
    --bg-primary: #0A0A0A;
    --bg-secondary: #111111;
    --bg-card: #161616;
    --bg-card-hover: #1E1E1E;
    --bg-cream: #F5F1E8;
    
    --gold: #C9A961;
    --gold-light: #E0C285;
    --gold-dark: #A8894C;
    
    --ink: #0A0A0A;
    --off-white: #F5F1E8;
    --text-primary: #F5F1E8;
    --text-secondary: #B8B2A5;
    --text-muted: #6B6659;
    
    --border: rgba(245, 241, 232, 0.08);
    --border-gold: rgba(201, 169, 97, 0.25);
    --border-hover: rgba(201, 169, 97, 0.5);
    
    --success: #22C55E;
    --danger: #EF4444;
    
    --font-display: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
    
    --t: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 20px 60px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 40px 100px rgba(0, 0, 0, 0.7);
    --shadow-gold: 0 20px 60px rgba(201, 169, 97, 0.25);
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
    font-family: var(--font-sans);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    font-weight: 400;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; }

::selection { background: var(--gold); color: var(--bg-primary); }

/* ============================================================
   PRELOADER
============================================================ */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--bg-primary);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

#preloader.hidden { opacity: 0; visibility: hidden; }

.preloader-content { text-align: center; }

.preloader-logo {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 6px;
    margin-bottom: 12px;
}

.preloader-sub {
    font-size: 0.7rem;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.preloader-bar {
    width: 180px;
    height: 1px;
    background: rgba(201, 169, 97, 0.15);
    margin: 0 auto;
    overflow: hidden;
}

.preloader-fill {
    width: 0;
    height: 100%;
    background: var(--gold);
    animation: preloadFill 1.4s ease-in-out forwards;
}

@keyframes preloadFill { to { width: 100%; } }

/* ============================================================
   SCROLL PROGRESS
============================================================ */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    width: 0;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
    z-index: 9999;
    transition: width 0.1s ease;
}

/* ============================================================
   HEADER
============================================================ */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 24px 0;
    transition: var(--t);
    background: transparent;
}

#header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 32px;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo-mark {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
    color: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 2px;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: 3px;
    color: var(--text-primary);
    display: flex;
    flex-direction: column;
    line-height: 1;
    font-weight: 500;
}

.logo-text small {
    font-family: var(--font-sans);
    font-size: 0.55rem;
    letter-spacing: 5px;
    color: var(--gold);
    margin-top: 5px;
    font-weight: 500;
}

.nav { display: flex; gap: 36px; }

.nav a {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    transition: var(--t);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: var(--t);
}

.nav a:hover { color: var(--gold); }
.nav a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 16px; }

.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
    color: var(--bg-primary);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 2px;
    transition: var(--t);
}

.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.header-cta i { font-size: 0.75rem; }

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 8px;
}

.menu-toggle span {
    width: 26px;
    height: 1.5px;
    background: var(--text-primary);
    transition: var(--t);
}

.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -6px); }

/* ============================================================
   HERO
============================================================ */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 160px 0 100px;
}

.hero-bg { position: absolute; inset: 0; z-index: 0; }

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    animation: heroZoom 30s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    from { transform: scale(1.05); }
    to { transform: scale(1.15); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(10, 10, 10, 0.97) 0%,
        rgba(10, 10, 10, 0.88) 45%,
        rgba(10, 10, 10, 0.6) 100%);
    z-index: 1;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(201, 169, 97, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 169, 97, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
    z-index: 2;
}

.hero-content { position: relative; z-index: 3; }
.hero-left { max-width: 780px; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 10px 0;
    font-size: 0.7rem;
    letter-spacing: 4px;
    color: var(--gold);
    margin-bottom: 40px;
    text-transform: uppercase;
    font-weight: 500;
}

.badge-line { width: 40px; height: 1px; background: var(--gold); }

#hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 6vw, 5.2rem);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.5px;
    margin-bottom: 32px;
    color: var(--text-primary);
}

#hero h1 em { font-style: italic; color: var(--gold); font-weight: 400; }

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 620px;
    margin-bottom: 48px;
    line-height: 1.75;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 42px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
    color: var(--bg-primary);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    border-radius: 2px;
    border: none;
    transition: var(--t);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 42px;
    background: transparent;
    color: var(--text-primary);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    border: 1px solid rgba(245, 241, 232, 0.25);
    border-radius: 2px;
    transition: var(--t);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 60px;
    padding-top: 36px;
    border-top: 1px solid var(--border-gold);
    flex-wrap: wrap;
}

.hero-stat strong {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 500;
    color: var(--gold);
    display: block;
    line-height: 1;
    margin-bottom: 8px;
}

.hero-stat span {
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 500;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    font-size: 0.65rem;
    letter-spacing: 4px;
    color: var(--text-muted);
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollLine 2.5s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% { transform: scaleY(0.3); }
    50% { transform: scaleY(1); }
}

/* ============================================================
   SEÇÕES GENÉRICAS
============================================================ */
section { position: relative; }

.section-header {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 80px;
}

.section-label {
    display: inline-block;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 6px;
    color: var(--gold);
    margin-bottom: 24px;
    font-weight: 500;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4.2vw, 3.6rem);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.section-header h2 em { font-style: italic; color: var(--gold); font-weight: 400; }

.section-header p {
    color: var(--text-muted);
    font-size: 1.05rem;
    font-weight: 300;
    max-width: 620px;
    margin: 0 auto;
}

/* ============================================================
   TRUST BAR
============================================================ */
.section-trust {
    padding: 60px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 0 20px;
    border-right: 1px solid var(--border);
}

.trust-item:last-child { border-right: none; }

.trust-item i {
    font-size: 1.6rem;
    color: var(--gold);
    flex-shrink: 0;
}

.trust-item strong {
    display: block;
    color: var(--text-primary);
    font-size: 0.92rem;
    margin-bottom: 2px;
    font-weight: 600;
}

.trust-item span {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 300;
}

/* ============================================================
   ÁREAS DE ATUAÇÃO
============================================================ */
.section-practice {
    padding: 140px 0;
    background: var(--bg-primary);
}

.practice-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.practice-card {
    padding: 48px 36px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 3px;
    transition: var(--t);
    position: relative;
    display: flex;
    flex-direction: column;
}

.practice-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--t);
}

.practice-card:hover::before { transform: scaleX(1); }

.practice-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-8px);
    background: var(--bg-card-hover);
    box-shadow: var(--shadow-md);
}

.practice-icon {
    width: 64px;
    height: 64px;
    background: rgba(201, 169, 97, 0.08);
    border: 1px solid var(--border-gold);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 28px;
    transition: var(--t);
}

.practice-card:hover .practice-icon {
    background: var(--gold);
    color: var(--bg-primary);
    transform: rotate(-5deg) scale(1.05);
}

.practice-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 14px;
    color: var(--text-primary);
    letter-spacing: -0.3px;
}

.practice-card > p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 24px;
    line-height: 1.7;
    font-weight: 300;
    flex-grow: 1;
}

.practice-list {
    list-style: none;
    padding-top: 22px;
    border-top: 1px solid var(--border);
}

.practice-list li {
    padding: 6px 0 6px 20px;
    position: relative;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 300;
}

.practice-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 15px;
    width: 10px;
    height: 1px;
    background: var(--gold);
}

/* ============================================================
   O ESCRITÓRIO
============================================================ */
.section-about {
    padding: 140px 0;
    background: var(--bg-secondary);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.about-image-wrapper { position: relative; }

.about-decoration-1 {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    border: 1px solid var(--gold);
    border-right: none;
    border-bottom: none;
    z-index: 1;
    opacity: 0.5;
}

.about-decoration-2 {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    border: 1px solid var(--gold);
    border-left: none;
    border-top: none;
    z-index: 1;
    opacity: 0.5;
}

.about-image {
    position: relative;
    border-radius: 3px;
    overflow: hidden;
    z-index: 2;
}

.about-image img {
    width: 100%;
    height: 620px;
    object-fit: cover;
    transition: transform 0.8s ease;
    filter: grayscale(15%);
}

.about-image:hover img {
    transform: scale(1.03);
    filter: grayscale(0%);
}

.about-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: var(--gold);
    color: var(--bg-primary);
    padding: 24px 28px;
    display: flex;
    align-items: center;
    gap: 16px;
    border-radius: 2px;
    box-shadow: var(--shadow-gold);
    z-index: 3;
}

.badge-number {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 600;
    line-height: 1;
}

.badge-text strong {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 2px;
    font-weight: 700;
}

.badge-text span {
    font-size: 0.72rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.about-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 3.8vw, 3.2rem);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin: 20px 0 28px;
    color: var(--text-primary);
}

.about-content h2 em { font-style: italic; color: var(--gold); font-weight: 400; }

.about-content .lead {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.7;
    font-weight: 300;
}

.about-content .lead strong { color: var(--gold); font-weight: 500; }

.about-content p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.8;
    font-weight: 300;
}

.about-pillars {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 40px;
}

.pillar {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 3px;
    transition: var(--t);
}

.pillar:hover {
    border-color: var(--border-hover);
    transform: translateX(6px);
}

.pillar-icon {
    width: 50px;
    height: 50px;
    background: rgba(201, 169, 97, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.pillar strong {
    display: block;
    color: var(--text-primary);
    font-size: 0.98rem;
    margin-bottom: 2px;
    font-weight: 600;
}

.pillar span {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 300;
}

/* ============================================================
   SÓCIOS
============================================================ */
.section-team {
    padding: 140px 0;
    background: var(--bg-primary);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.team-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 3px;
    overflow: hidden;
    transition: var(--t);
}

.team-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.team-photo {
    height: 400px;
    overflow: hidden;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
    filter: grayscale(20%);
}

.team-card:hover .team-photo img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.team-info { padding: 36px; }

.team-info h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-primary);
    letter-spacing: -0.3px;
}

.team-role {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 600;
}

.team-info p {
    font-size: 0.92rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.7;
    font-weight: 300;
}

.team-social {
    display: flex;
    gap: 12px;
}

.team-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(201, 169, 97, 0.08);
    border: 1px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 0.9rem;
    transition: var(--t);
}

.team-social a:hover {
    background: var(--gold);
    color: var(--bg-primary);
    transform: translateY(-3px);
}

/* ============================================================
   DEPOIMENTOS
============================================================ */
.section-testimonials {
    padding: 140px 0;
    background: var(--bg-secondary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    padding: 44px 36px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 3px;
    transition: var(--t);
    display: flex;
    flex-direction: column;
    position: relative;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: var(--t);
}

.testimonial-card:hover::before { opacity: 1; }

.testimonial-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.quote-mark {
    font-family: var(--font-display);
    font-size: 6rem;
    color: var(--gold);
    line-height: 0.5;
    margin-bottom: 24px;
    opacity: 0.3;
}

.testimonial-text {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 32px;
    flex-grow: 1;
    font-weight: 400;
}

.testimonial-author {
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.testimonial-author strong {
    display: block;
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 4px;
    letter-spacing: 0.3px;
}

.testimonial-author span {
    font-size: 0.78rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    font-weight: 300;
}

/* ============================================================
   ARTIGOS
============================================================ */
.section-articles {
    padding: 140px 0;
    background: var(--bg-primary);
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.article-card {
    display: flex;
    flex-direction: column;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 3px;
    overflow: hidden;
    transition: var(--t);
}

.article-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.article-image {
    height: 240px;
    overflow: hidden;
    background: var(--bg-secondary);
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
    filter: grayscale(30%);
}

.article-card:hover .article-image img {
    transform: scale(1.06);
    filter: grayscale(0%);
}

.article-content { padding: 32px 28px; }

.article-category {
    display: inline-block;
    font-size: 0.68rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
    font-weight: 600;
}

.article-content h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.3;
    margin-bottom: 18px;
    letter-spacing: -0.3px;
}

.article-date {
    font-size: 0.78rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    font-weight: 300;
}

/* ============================================================
   CONTATO
============================================================ */
.section-contact {
    padding: 140px 0;
    background: var(--bg-secondary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: start;
}

.contact-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 3.8vw, 3rem);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin: 20px 0 24px;
    color: var(--text-primary);
}

.contact-content h2 em { font-style: italic; color: var(--gold); font-weight: 400; }

.contact-content > p {
    color: var(--text-secondary);
    font-size: 1.02rem;
    line-height: 1.8;
    margin-bottom: 44px;
    font-weight: 300;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 22px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 3px;
    transition: var(--t);
}

.contact-item:hover {
    border-color: var(--border-hover);
    transform: translateX(6px);
}

.contact-icon {
    width: 52px;
    height: 52px;
    background: rgba(201, 169, 97, 0.08);
    border: 1px solid var(--border-gold);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    color: var(--text-primary);
    font-size: 0.95rem;
    margin-bottom: 3px;
    font-weight: 600;
}

.contact-item span {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 300;
}

.contact-form-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: 3px;
    padding: 48px;
    box-shadow: var(--shadow-md);
}

.contact-form-wrapper h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-primary);
    letter-spacing: -0.3px;
}

.form-subtitle {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    font-weight: 300;
}

.form-group { margin-bottom: 22px; }

.form-group label {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 18px;
    background: rgba(10, 10, 10, 0.5);
    border: 1px solid var(--border);
    border-radius: 2px;
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    transition: var(--t);
    font-weight: 300;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(10, 10, 10, 0.8);
    box-shadow: 0 0 0 4px rgba(201, 169, 97, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group select option { background: var(--bg-card); color: var(--text-primary); }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.full-width { width: 100%; justify-content: center; }

.form-note {
    text-align: center;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 20px;
    font-weight: 300;
}

.form-note i { color: var(--gold); margin-right: 6px; }

/* ============================================================
   CTA FINAL
============================================================ */
.section-cta {
    padding: 140px 0;
    background: var(--bg-primary);
}

.cta-box {
    padding: 100px 60px;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.08), rgba(10, 10, 10, 0.9));
    border: 1px solid var(--border-gold);
    border-radius: 3px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.1), transparent 70%);
    pointer-events: none;
}

.cta-box h2 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.5px;
    color: var(--text-primary);
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.cta-box h2 em { font-style: italic; color: var(--gold); font-weight: 400; }

.cta-box > p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 44px;
    position: relative;
    z-index: 1;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* ============================================================
   FOOTER
============================================================ */
footer {
    padding: 100px 0 40px;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 70px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 26px;
}

.footer-logo .logo-mark {
    width: 42px;
    height: 42px;
    font-size: 1rem;
}

.footer-logo > span:last-child {
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: 3px;
    color: var(--text-primary);
    display: flex;
    flex-direction: column;
    line-height: 1;
    font-weight: 500;
}

.footer-logo small {
    font-family: var(--font-sans);
    font-size: 0.55rem;
    letter-spacing: 5px;
    color: var(--gold);
    margin-top: 5px;
    font-weight: 500;
}

.footer-col p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.75;
    margin-bottom: 12px;
    font-weight: 300;
}

.footer-col p i {
    color: var(--gold);
    margin-right: 10px;
    width: 16px;
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 500;
    margin-bottom: 24px;
    color: var(--text-primary);
    letter-spacing: 0.3px;
}

.footer-col a {
    display: block;
    color: var(--text-muted);
    font-size: 0.9rem;
    padding: 7px 0;
    transition: var(--t);
    font-weight: 300;
}

.footer-col a:hover {
    color: var(--gold);
    transform: translateX(6px);
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 26px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(201, 169, 97, 0.08);
    border: 1px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: var(--t);
    padding: 0;
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--bg-primary);
    transform: translateY(-4px);
    padding: 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 36px;
    border-top: 1px solid var(--border);
    font-size: 0.82rem;
    color: var(--text-muted);
    flex-wrap: wrap;
    gap: 16px;
    font-weight: 300;
}

.footer-bottom a {
    color: var(--gold);
    transition: var(--t);
    font-weight: 500;
}

.footer-bottom a:hover { color: var(--gold-light); }

/* ============================================================
   WHATSAPP FLOAT
============================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 62px;
    height: 62px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.6rem;
    z-index: 999;
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
    transition: var(--t);
    animation: pulseWhats 2s infinite;
}

@keyframes pulseWhats {
    0%, 100% { box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4), 0 0 0 20px rgba(37, 211, 102, 0); }
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 20px 60px rgba(37, 211, 102, 0.6);
    animation: none;
}

.whatsapp-tooltip {
    position: absolute;
    right: 78px;
    background: var(--bg-card);
    color: var(--text-primary);
    padding: 11px 18px;
    border-radius: 3px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--t);
    border: 1px solid var(--border-gold);
    font-weight: 500;
}

.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; visibility: visible; }

/* ============================================================
   BACK TO TOP
============================================================ */
.back-to-top {
    position: fixed;
    bottom: 32px;
    left: 32px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--t);
    opacity: 0;
    visibility: hidden;
    z-index: 998;
}

.back-to-top.visible { opacity: 1; visibility: visible; }

.back-to-top:hover {
    background: var(--gold);
    color: var(--bg-primary);
    transform: translateY(-4px);
    border-color: var(--gold);
}

/* ============================================================
   RESPONSIVO
============================================================ */
@media (max-width: 1100px) {
    .practice-grid,
    .testimonials-grid,
    .articles-grid,
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .trust-item { border-right: none; border-bottom: 1px solid var(--border); padding: 20px 0; }
    .trust-item:nth-child(3), .trust-item:last-child { border-bottom: none; }
    
    .about-grid,
    .contact-grid { grid-template-columns: 1fr; gap: 60px; }
    
    .about-image img { height: 500px; }
    
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 50px; }
}

@media (max-width: 968px) {
    .container { padding: 0 24px; }
    
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: var(--bg-primary);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transition: 0.5s ease;
        z-index: 999;
        border-left: 1px solid var(--border);
    }
    
    .nav.active { right: 0; }
    .nav a { font-size: 1rem; }
    
    .menu-toggle { display: flex; z-index: 1001; }
    .header-cta span { display: none; }
    .header-cta { padding: 12px 16px; }
    
    .hero-scroll { display: none; }
    
    .section-practice,
    .section-about,
    .section-team,
    .section-testimonials,
    .section-articles,
    .section-contact,
    .section-cta { padding: 80px 0; }
}

@media (max-width: 640px) {
    .practice-grid,
    .testimonials-grid,
    .articles-grid,
    .team-grid,
    .trust-grid,
    .footer-grid { grid-template-columns: 1fr; }
    
    .form-row { grid-template-columns: 1fr; gap: 0; }
    
    .contact-form-wrapper { padding: 32px 24px; }
    
    .cta-box { padding: 60px 30px; }
    
    .cta-actions { flex-direction: column; }
    .cta-actions .btn-primary,
    .cta-actions .btn-outline { width: 100%; justify-content: center; }
    
    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-actions .btn-primary,
    .hero-actions .btn-outline { width: 100%; justify-content: center; }
    
    .hero-stats { gap: 30px; }
    .hero-stat strong { font-size: 2rem; }
    
    .footer-bottom { flex-direction: column; text-align: center; }
    
    .back-to-top { display: none; }
    
    .about-image img { height: 400px; }
    
    .about-badge { bottom: 16px; left: 16px; padding: 18px 22px; }
    .badge-number { font-size: 2.2rem; }
}