:root {
    --primary-green: #00b359;
    --dark-bg: #28292d;
    --light-bg: #e5dfd5;
    --text-dark: #333;
    --text-light: #fff;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: #f9f9f9;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 400;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.btn-primary {
    background-color: var(--primary-green);
    color: white;
    border: none;
    padding: 12px 28px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    letter-spacing: 1px;
}

.btn-primary:hover {
    background-color: #00994d;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background: url('assets/images/hero_bg.png') no-repeat center center/cover;
    display: flex;
    align-items: center;
}

.hero-content {
    background: rgba(248, 248, 248, 0.93);
    width: 40%;
    max-width: 500px;
    padding: 60px 50px;
    margin-left: 10%;
    border-radius: 2px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
}

/* Diagonal stripes background effect inside hero box (optional nice touch to match image) */
.hero-content::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: repeating-linear-gradient(
        -45deg,
        rgba(0,0,0,0.01),
        rgba(0,0,0,0.01) 1px,
        transparent 1px,
        transparent 10px
    );
    pointer-events: none;
    z-index: 0;
}

.hero-content > * {
    position: relative;
    z-index: 1;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
    width: fit-content;
}

.logo-text {
    font-size: 0.55rem;
    letter-spacing: 2.5px;
    color: #888;
    margin-top: -5px;
}

.hero h1 {
    font-size: 2.4rem;
    line-height: 1.15;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.hero p {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 35px;
    text-align: justify;
    line-height: 1.7;
}

/* Advogado Section */
.advogado-section {
    background-color: var(--dark-bg);
    color: var(--text-light);
    padding: 90px 0;
}

.advogado-content {
    display: flex;
    gap: 70px;
    margin-top: 50px;
}

.advogado-profile {
    flex: 0 0 220px;
}

.advogado-profile img {
    width: 100%;
    height: auto;
    filter: grayscale(100%);
    margin-bottom: 20px;
    border: 4px solid #333;
}

.advogado-profile h3 {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1.15rem;
    margin-bottom: 5px;
}

.advogado-profile .oab {
    font-size: 0.8rem;
    color: #aaa;
    margin-bottom: 10px;
}

.advogado-profile .role {
    font-size: 0.9rem;
    color: var(--primary-green);
}

.advogado-text {
    flex: 1;
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.8;
}

.formacao {
    list-style: none;
    margin-bottom: 35px;
}

.formacao li {
    margin-bottom: 8px;
    color: #fff;
    font-weight: 300;
}

.advogado-text p {
    margin-bottom: 25px;
    text-align: justify;
}

.highlight-bullet {
    padding-left: 20px;
    font-style: italic;
    color: #fff;
}

/* Features Section */
.features-section {
    background-color: #fff;
    padding: 100px 0;
}

.features-section .container {
    display: flex;
    gap: 80px;
}

.features-header {
    flex: 0 0 280px;
}

.brand-title {
    font-size: 3.2rem;
    line-height: 1.1;
    color: #222;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.brand-first {
    align-self: flex-start;
}

.brand-second {
    align-self: flex-start;
    margin-left: 50px;
}

.green-line {
    width: 100%;
    height: 1.5px;
    background-color: var(--primary-green);
    margin-top: 10px;
}

.features-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.feature-item {
    display: flex;
    gap: 25px;
}

.feature-icon {
    font-size: 2.2rem;
    color: #333;
    width: 50px;
    text-align: center;
}

.feature-text h3 {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.feature-text p {
    font-size: 0.85rem;
    color: #666;
    text-align: justify;
    line-height: 1.7;
}

/* Areas Section */
.areas-section {
    background-color: var(--light-bg);
    padding: 100px 0;
}

.areas-container {
    display: flex;
    gap: 70px;
    align-items: center;
}

.areas-image {
    flex: 1;
}

.areas-image img {
    width: 100%;
    height: auto;
    filter: grayscale(100%);
    border: 5px solid #fff;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.areas-text {
    flex: 1.2;
}

.areas-text h2 {
    color: #222;
    margin-bottom: 30px;
}

.areas-text p {
    font-size: 0.9rem;
    color: #444;
    margin-bottom: 30px;
    text-align: justify;
    line-height: 1.7;
}

.areas-text ul {
    list-style-position: inside;
    color: #222;
    font-weight: 500;
    font-size: 0.9rem;
}

.areas-text ul li {
    margin-bottom: 10px;
}

/* Footer Section */
.footer {
    position: relative;
    background: url('assets/images/hero_bg.png') no-repeat center center/cover;
    padding: 100px 0;
    color: white;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(20, 20, 22, 0.85);
}

.footer-container {
    position: relative;
    z-index: 1;
}

.footer h2 {
    font-size: 2.8rem;
    margin-bottom: 40px;
}

.contact-info {
    margin-bottom: 50px;
    font-size: 1rem;
    font-weight: 300;
    color: #ddd;
}

.contact-info p {
    margin-bottom: 12px;
}

/* Responsiveness */
@media (max-width: 900px) {
    .hero-content {
        width: 85%;
        margin-left: 7.5%;
        padding: 40px 30px;
    }
    
    .advogado-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .advogado-profile {
        width: 200px;
        margin: 0 auto;
        text-align: center;
    }
    
    .features-section .container {
        flex-direction: column;
        gap: 50px;
    }
    
    .brand-second {
        margin-left: 20px;
    }
    
    .areas-container {
        flex-direction: column-reverse;
    }
}
