@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Montserrat:wght@300;400;500;600&family=Lora:ital,wght@0,400;0,500;0,600;1,400&display=swap');

:root {
    --bg-main: #0f172a; /* Slate 900 - Dark Petroleum / Navy */
    --bg-secondary: #0b1120; /* Darker Slate */
    --accent-gold: #b38b22; /* Darker Gold for elegant, professional accents */
    --silver: #e2e8f0; /* Silver / Platinum text */
    --text-muted: #94a3b8;
    --card-bg: rgba(255, 255, 255, 0.03);
    --border-light: rgba(255, 255, 255, 0.08);
    --transition-fast: all 0.3s ease;
    --transition-smooth: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-main);
    color: var(--silver);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Subtle background texture */
body::before {
    content: "";
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background-image: radial-gradient(circle at 15% 50%, rgba(179, 139, 34, 0.05) 0%, transparent 50%),
                      radial-gradient(circle at 85% 30%, rgba(179, 139, 34, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Lora', serif; /* Authoritative Serif */
    color: #ffffff;
    font-weight: 500;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

/* Navbar */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 5%;
    border-bottom: 1px solid transparent;
    transition: var(--transition-smooth);
}

header.scrolled {
    background: rgba(11, 17, 32, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-light);
    padding: 15px 5%;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-left: 2px solid var(--accent-gold);
    padding-left: 15px;
}

.logo-name {
    font-family: 'Cinzel', serif; /* Classic Roman font for logo */
    font-size: 1.8rem;
    color: #ffffff;
    font-weight: 600;
    letter-spacing: 2px;
    line-height: 1;
}

.logo-sub {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 4px;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-top: 5px;
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links li a {
    color: var(--silver);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}

.nav-links li a:hover {
    color: var(--accent-gold);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 30px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition-fast);
    cursor: pointer;
    border-radius: 2px; /* Sharp corners for corporate look */
}

.btn-primary {
    background-color: var(--accent-gold);
    color: #000;
    border: 1px solid var(--accent-gold);
}

.btn-primary:hover {
    background-color: #ffffff;
    border-color: #ffffff;
}

.btn-outline {
    background-color: transparent;
    color: var(--silver);
    border: 1px solid var(--text-muted);
}

.btn-outline:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 5% 0;
    position: relative;
    background: linear-gradient(to right, rgba(15, 23, 42, 1) 0%, rgba(15, 23, 42, 0.7) 50%, rgba(15, 23, 42, 0.2) 100%), 
                url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=2000&auto=format&fit=crop') center/cover no-repeat;
    /* Architectural background representing corporate solidity */
}

.hero-content {
    max-width: 700px;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    z-index: 10;
}

.hero-content-inner {
    max-width: 650px;
}

.badge-year {
    display: inline-block;
    padding: 5px 12px;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 25px;
    border-radius: 20px;
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #ffffff;
}

.hero-content h1 span {
    color: var(--accent-gold);
    font-style: italic;
    font-family: 'Lora', serif;
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

/* Sections */
section {
    padding: 120px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-subtitle {
    color: var(--accent-gold);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}

.section-title {
    font-size: 2.8rem;
    color: #ffffff;
}

/* Dual Layout: Atuação (Empresas x Pessoas Físicas) */
.atuacao-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.atuacao-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    padding: 60px 50px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.atuacao-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--accent-gold);
    transform: scaleY(0);
    transition: var(--transition-smooth);
    transform-origin: bottom;
}

.atuacao-card:hover {
    background: rgba(255,255,255,0.02);
    transform: translateY(-5px);
}

.atuacao-card:hover::before {
    transform: scaleY(1);
}

.atuacao-card .icon-wrapper {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 30px;
}

.atuacao-card h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.atuacao-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.atuacao-list {
    margin-bottom: 30px;
}

.atuacao-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--silver);
    font-size: 0.95rem;
}

.atuacao-list li i {
    color: var(--accent-gold);
    margin-top: 4px;
}

/* Escritório / História */
.history-section {
    background: var(--bg-secondary);
    padding: 100px 5%;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.history-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.history-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.history-text p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.history-image {
    position: relative;
}

.history-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.2);
    border: 1px solid var(--border-light);
}

/* Advogados */
.lawyers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.lawyer-card {
    text-align: left;
    padding: 30px 0;
    border-top: 1px solid var(--border-light);
}

.lawyer-card h4 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 8px;
    font-family: 'Cinzel', serif;
}

.lawyer-card span {
    color: var(--accent-gold);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Artigos (Notícias) */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.news-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    padding: 40px 30px;
    transition: var(--transition-fast);
}

.news-card:hover {
    border-color: var(--accent-gold);
}

.news-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.news-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 25px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more {
    color: var(--accent-gold);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Footer */
footer {
    background: #0b1120;
    padding: 80px 5% 40px;
    border-top: 1px solid var(--border-light);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    max-width: 1400px;
    margin: 0 auto 60px;
}

.footer-col h5 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 25px;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
}

.footer-col p, .footer-col a {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 12px;
    display: block;
}

.footer-col a:hover {
    color: var(--accent-gold);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
}

.social-links a:hover {
    background: var(--accent-gold);
    color: #000;
    border-color: var(--accent-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-light);
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 992px) {
    .atuacao-split {
        grid-template-columns: 1fr;
    }
    
    .history-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .nav-links {
        display: none;
    }
}
