/* ===== VARIÁVEIS MODERNAS - TEMA ESCURO ELEGANTE ===== */
:root {
    --gold-primary: #d4af37;
    --gold-dark: #b8860b;
    --gold-light: #f4e4a6;
    --dark-bg: #0a0a0f;
    --dark-card: #121218;
    --dark-border: #1e1e28;
    --dark-text: #e2e2e9;
    --dark-text-light: #a0a0b0;
    --darker-blue: #111827;
    --light-blue: #2d4a72;
    --gradient-gold: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
    --gradient-dark: linear-gradient(135deg, #121218 0%, #0a0a0f 100%);
    --gradient-card: linear-gradient(145deg, #121218 0%, #1a1a24 100%);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.2);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.25);
    --shadow-lg: 0 10px 20px rgba(0,0,0,0.3);
    --shadow-xl: 0 20px 30px rgba(0,0,0,0.35);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark-text);
    line-height: 1.6;
    background: var(--dark-bg);
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(29, 29, 44, 0.8) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(184, 134, 11, 0.1) 0%, transparent 20%);
    background-attachment: fixed;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark-text);
}

/* ===== TYPOGRAPHY ===== */
.section-subtitle {
    display: inline-block;
    color: var(--gold-primary);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 3rem;
}

.section-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 2rem;
    height: 2px;
    background: var(--gradient-gold);
    transform: translateY(-50%);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    background: linear-gradient(135deg, var(--dark-text) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    color: var(--dark-text-light);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===== TOP BAR ===== */
.top-bar {
    background: rgba(10, 10, 15, 0.9);
    color: var(--dark-text);
    padding: 0.75rem 0;
    font-size: 0.875rem;
    border-bottom: 1px solid var(--dark-border);
    backdrop-filter: blur(10px);
}

.top-bar .contact-info span {
    display: inline-block;
    opacity: 0.8;
}

.top-bar .social-links a {
    color: var(--dark-text-light);
    margin-left: 1rem;
    font-size: 1rem;
    transition: var(--transition);
    opacity: 0.7;
}

.top-bar .social-links a:hover {
    color: var(--gold-primary);
    transform: translateY(-2px);
    opacity: 1;
}

/* ===== NAVBAR MODERNA ESCURA ===== */
.navbar {
    background: rgba(18, 18, 24, 0.95);
    padding: 1rem 0;
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--dark-border);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background: rgba(18, 18, 24, 0.98);
    box-shadow: var(--shadow-lg);
}

.brand-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    height: 100px;
    filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(0deg);
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gold-primary);
    letter-spacing: 1px;
}

.brand-tagline {
    font-size: 0.75rem;
    color: var(--dark-text-light);
    letter-spacing: 1px;
    opacity: 0.8;
}

.navbar-toggler {
    border: 1px solid var(--dark-border);
    color: var(--dark-text);
    font-size: 1.5rem;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    background: transparent;
}

.navbar-nav .nav-link {
    color: var(--dark-text) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    margin: 0 0.25rem;
    position: relative;
    transition: var(--transition);
    opacity: 0.9;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: var(--transition);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--gold-primary) !important;
    opacity: 1;
}

.btn-whatsapp-nav {
    background: var(--gradient-gold);
    color: var(--dark-bg) !important;
    padding: 0.75rem 1.75rem !important;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    margin-left: 1rem;
    transition: var(--transition);
    border: none;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.5px;
}

.btn-whatsapp-nav:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--dark-bg) !important;
}

/* ===== HERO MODERNO ESCURO ===== */
.hero-modern {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #151522 100%);
    color: var(--dark-text);
    padding-top: 5rem;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--dark-border);
}

.hero-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(18, 18, 24, 0.8) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 5rem 0;
}

.hero-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold-primary);
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--dark-text) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.hero-text .lead {
    font-size: 1.25rem;
    color: var(--dark-text-light);
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-image {
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--dark-border);
}

.image-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
    z-index: 1;
}

.image-frame img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    filter: grayscale(20%) contrast(1.1);
    transition: var(--transition);
}

.image-frame:hover img {
    transform: scale(1.03);
    filter: grayscale(0%) contrast(1.2);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: 30px;
    background: var(--gradient-gold);
    color: var(--dark-bg);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    z-index: 2;
    box-shadow: var(--shadow-lg);
    font-weight: 700;
    border: 2px solid var(--dark-bg);
}

.experience-badge .years {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.875rem;
    opacity: 0.9;
    letter-spacing: 1px;
}

.hero-stats {
    background: rgba(18, 18, 24, 0.7);
    backdrop-filter: blur(10px);
    padding: 2.5rem 0;
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--dark-border);
    border-bottom: 1px solid var(--dark-border);
}

.stat-item {
    text-align: center;
    padding: 1rem;
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 50px;
    background: var(--dark-border);
}

.stat-item:last-child::after {
    display: none;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--gold-primary);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.stat-item p {
    color: var(--dark-text-light);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

/* ===== BUTTONS ===== */
.btn-primary {
    background: var(--gradient-gold);
    color: var(--dark-bg);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: var(--dark-bg);
}

.btn-outline {
    background: transparent;
    color: var(--gold-primary);
    border: 2px solid var(--gold-primary);
    padding: calc(1rem - 2px) 2.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.5px;
}

.btn-outline:hover {
    background: var(--gradient-gold);
    color: var(--dark-bg);
    transform: translateY(-3px);
    border-color: transparent;
}

/* ===== SERVICES MODERN ESCURO ===== */
.services-modern {
    padding: 6rem 0;
    background: var(--dark-bg);
    position: relative;
}

.services-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

.service-modern-card {
    background: var(--gradient-card);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    height: 100%;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--dark-border);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.service-modern-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), transparent);
    opacity: 0;
    transition: var(--transition);
}

.service-modern-card:hover::before {
    opacity: 1;
}

.service-modern-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(212, 175, 55, 0.3);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(18, 18, 24, 0.8), rgba(26, 26, 36, 0.8));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    transition: var(--transition);
    border: 1px solid var(--dark-border);
    position: relative;
    z-index: 1;
}

.service-modern-card:hover .service-icon {
    background: var(--gradient-gold);
    color: var(--dark-bg);
    transform: translateY(-5px) rotate(5deg);
    border-color: transparent;
}

.service-modern-card h3 {
    color: var(--dark-text);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    position: relative;
    z-index: 1;
}

.service-modern-card p {
    color: var(--dark-text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.service-features {
    list-style: none;
    padding: 0;
    position: relative;
    z-index: 1;
}

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: var(--dark-text-light);
    font-size: 0.95rem;
}

.service-features li i {
    color: var(--gold-primary);
    margin-right: 0.75rem;
    font-size: 0.9rem;
    min-width: 20px;
}

/* ===== ABOUT MODERN ESCURO ===== */
.about-modern {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0f0f14 0%, var(--dark-bg) 100%);
    position: relative;
    border-top: 1px solid var(--dark-border);
    border-bottom: 1px solid var(--dark-border);
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--dark-border);
    filter: contrast(1.1);
    transition: var(--transition);
}

.about-image:hover img {
    transform: scale(1.02);
}

.floating-card {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--gradient-card);
    padding: 1.75rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    text-align: center;
    width: 160px;
    border: 1px solid var(--dark-border);
    backdrop-filter: blur(10px);
}

.floating-card i {
    font-size: 2.5rem;
    color: var(--gold-primary);
    margin-bottom: 0.75rem;
}

.floating-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: var(--dark-text);
}

.floating-card p {
    font-size: 0.8rem;
    color: var(--dark-text-light);
}

.features-list {
    margin: 2.5rem 0;
}

.feature-item {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.feature-item i {
    color: var(--gold-primary);
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
    background: rgba(212, 175, 55, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.feature-item h5 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--dark-text);
}

.feature-item p {
    color: var(--dark-text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== LAWYER SECTION ESCURO ===== */
.lawyer-section {
    padding: 6rem 0;
    background: var(--dark-bg);
    position: relative;
}

.lawyer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

.lawyer-card {
    background: var(--gradient-card);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--dark-border);
    backdrop-filter: blur(10px);
}

.lawyer-image {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.lawyer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    filter: contrast(1.1) grayscale(20%);
}

.lawyer-card:hover .lawyer-image img {
    transform: scale(1.05);
    filter: contrast(1.2) grayscale(0%);
}

.lawyer-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: var(--gradient-gold);
    color: var(--dark-bg);
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--dark-bg);
}

.lawyer-info {
    padding: 3.5rem;
}

.lawyer-name {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
    color: var(--dark-text);
    background: linear-gradient(135deg, var(--dark-text) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lawyer-description {
    font-size: 1.2rem;
    color: var(--dark-text-light);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.lawyer-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.lawyer-stats .stat {
    text-align: center;
    flex: 1;
    min-width: 120px;
}

.lawyer-stats .stat h4 {
    font-size: 2.5rem;
    color: var(--gold-primary);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.lawyer-stats .stat p {
    font-size: 0.9rem;
    color: var(--dark-text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lawyer-social {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* ===== PROCESS SECTION ESCURO ===== */
.process-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0f0f14 0%, var(--dark-bg) 100%);
    position: relative;
    border-top: 1px solid var(--dark-border);
    border-bottom: 1px solid var(--dark-border);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.process-step {
    text-align: center;
    padding: 2.5rem;
    position: relative;
    background: var(--gradient-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--dark-border);
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(212, 175, 55, 0.3);
}

.process-step::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -1.5rem;
    width: 3rem;
    height: 1px;
    background: var(--dark-border);
    opacity: 0.5;
}

.process-step:last-child::before {
    display: none;
}

.step-number {
    font-size: 4rem;
    font-weight: 700;
    color: rgba(212, 175, 55, 0.1);
    margin-bottom: 1.5rem;
    line-height: 1;
    position: relative;
    display: inline-block;
}

.step-number::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: var(--gradient-gold);
}

.step-content h4 {
    color: var(--dark-text);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.step-content p {
    color: var(--dark-text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== CTA MODERN ESCURO ===== */
.cta-modern {
    padding: 6rem 0;
    background: linear-gradient(135deg, #151522 0%, #0a0a0f 100%);
    color: var(--dark-text);
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--dark-border);
}

.cta-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(18, 18, 24, 0.8) 0%, transparent 50%);
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--dark-text) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-description {
    font-size: 1.25rem;
    color: var(--dark-text-light);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    opacity: 0.9;
}

/* ===== CONTACT MODERN ESCURO ===== */
.contact-modern {
    padding: 6rem 0;
    background: var(--dark-bg);
    position: relative;
}

.contact-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

.contact-form-modern {
    background: var(--gradient-card);
    padding: 3rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--dark-border);
    backdrop-filter: blur(10px);
    height: 100%;
}

.contact-form-modern h3 {
    color: var(--dark-text);
    margin-bottom: 2rem;
    font-size: 1.75rem;
    position: relative;
    padding-bottom: 1rem;
}

.contact-form-modern h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gradient-gold);
}

.form-group {
    margin-bottom: 1.75rem;
}

.form-control,
.form-select {
    background: rgba(18, 18, 24, 0.7);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-md);
    padding: 1.125rem;
    font-size: 1rem;
    transition: var(--transition);
    width: 100%;
    color: var(--dark-text);
    font-family: 'Inter', sans-serif;
}

.form-control::placeholder,
.form-select::placeholder {
    color: var(--dark-text-light);
    opacity: 0.7;
}

.form-control:focus,
.form-select:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
    background: rgba(18, 18, 24, 0.9);
}

.contact-info-modern {
    background: var(--gradient-card);
    padding: 3rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--dark-border);
    height: 100%;
    width: 500px;
    backdrop-filter: blur(10px);
}

.contact-info-modern h3 {
    color: var(--dark-text);
    margin-bottom: 2rem;
    font-size: 1.75rem;
    position: relative;
    padding-bottom: 1rem;
}

.contact-info-modern h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gradient-gold);
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.contact-item i {
    color: var(--gold-primary);
    font-size: 1.5rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
    background: rgba(212, 175, 55, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.contact-item h5 {
    color: var(--dark-text);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-item p {
    color: var(--dark-text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-social {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
}

.social-icon {
    width: 50px;
    height: 50px;
    background: rgba(18, 18, 24, 0.7);
    color: var(--gold-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid var(--dark-border);
}

.social-icon:hover {
    background: var(--gradient-gold);
    color: var(--dark-bg);
    transform: translateY(-5px) rotate(5deg);
    border-color: transparent;
}

/* ===== FOOTER MODERN ESCURO ===== */
.footer-modern {
    background: linear-gradient(135deg, #0a0a0f 0%, #07070b 100%);
    color: var(--dark-text);
    padding: 5rem 0 2rem;
    position: relative;
    border-top: 1px solid var(--dark-border);
}

.footer-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

.footer-brand {
    margin-bottom: 2rem;
}

.footer-brand img {
    height: 70px;
    filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(0deg);
    margin-bottom: 1rem;
}

.footer-brand h3 {
    color: var(--gold-primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.footer-brand p {
    color: var(--dark-text-light);
    opacity: 0.8;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--dark-text-light);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
    position: relative;
    padding-left: 1.5rem;
    opacity: 0.8;
}

.footer-links a::before {
    content: '›';
    position: absolute;
    left: 0;
    color: var(--gold-primary);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold-primary);
    padding-left: 2rem;
    opacity: 1;
}

.btn-whatsapp-footer {
    background: var(--gradient-gold);
    color: var(--dark-bg);
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.5px;
    border: none;
}

.btn-whatsapp-footer:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: var(--dark-bg);
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--gradient-gold);
    color: var(--dark-bg);
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    transition: var(--transition);
    animation: float 3s ease-in-out infinite;
    border: 2px solid var(--dark-bg);
    font-weight: bold;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(5deg);
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .section-title {
        font-size: 2.25rem;
    }
    
    .hero-text h1 {
        font-size: 3rem;
    }
    
    .cta-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .lawyer-name {
        font-size: 2.25rem;
    }
    
    .lawyer-stats {
        gap: 2rem;
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .process-step::before {
        display: none;
    }
    
    .stat-item::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .top-bar .contact-info {
        text-align: center;
        margin-bottom: 0.5rem;
    }
    
    .top-bar .social-links {
        justify-content: center;
    }
    
    .hero-modern {
        padding-top: 3rem;
    }
    
    .hero-content {
        padding: 3rem 0;
    }
    
    .hero-text h1 {
        font-size: 2.25rem;
    }
    
    .experience-badge {
        position: relative;
        bottom: auto;
        right: auto;
        margin: 2rem auto 0;
        display: inline-block;
    }
    
    .floating-card {
        position: relative;
        bottom: auto;
        right: auto;
        margin: 2rem auto 0;
        width: 100%;
        max-width: 300px;
    }
    
    .lawyer-info {
        padding: 2rem;
    }
    
    .contact-form-modern,
    .contact-info-modern {
        padding: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .whatsapp-float {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .lawyer-name {
        font-size: 2rem;
    }
    
    .stat-item h3 {
        font-size: 2rem;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeInUp 0.8s ease forwards;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-gold);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
}

/* Selection color */
::selection {
    background: rgba(212, 175, 55, 0.3);
    color: var(--dark-text);
}

.hero-modern{
    width: 100%;
    overflow: hidden;
}

.hero-slide-img{
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.carousel-item{
    position: relative;
}

.carousel-item::before{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
    z-index: 1;
}

.carousel-item img{
    position: relative;
    z-index: 0;
}

.carousel-control-prev,
.carousel-control-next,
.carousel-indicators{
    z-index: 3;
}