* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #000;
    color: #fff;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Section */
.header {
    padding: 80px 0;
    background-color: #000;
    position: relative;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.header-text {
    display: flex;
    align-items: center;
    text-align: center;
}

.lawyer-image {
    width: 400px;
    height: auto;
    margin-left: 40px;
    border-radius: 5px;
    background-color: transparent;
}

.header-info {
    flex: 1;
}

.logo {
    max-width: 400px;
    height: auto;
    margin-bottom: 20px;
}

.header .subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: #d0d0d0;
}

.whatsapp-btn {
    display: inline-block;
    background-color: #25D366;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn:hover {
    background-color: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-btn i {
    margin-right: 10px;
    font-size: 1.4rem;
}

/* Areas Section */
.areas {
    padding: 80px 0;
    background-color: #2a2a2a; /* Cinza chumbo */
}

.areas h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 20px;
}

.areas h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background-color: #444;
}

.areas-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #ccc;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.area-box {
    background-color: #1a1a1a;
    border-radius: 10px;
    padding: 30px;
    transition: all 0.3s ease;
    border-left: 4px solid #333;
}

.area-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    border-left-color: #555;
}

.area-box h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
    display: flex;
    align-items: center;
}

.area-box h3 i {
    margin-right: 15px;
    font-size: 1.8rem;
    color: #555;
}

.area-box p {
    color: #aaa;
    font-size: 1rem;
    line-height: 1.6;
}

/* Emergency Section */
.emergency {
    padding: 100px 0;
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.9)), url('https://images.unsplash.com/photo-1589571894960-20bbe2828d0a?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80') no-repeat center center/cover;
    text-align: center;
    position: relative;
}

.emergency h2 {
    font-size: 3rem;
    margin-bottom: 30px;
    color: #888;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.emergency .subtitle {
    font-size: 1.4rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

.emergency .whatsapp-btn {
    background-color: #666;
    box-shadow: 0 4px 15px rgba(102, 102, 102, 0.4);
}

.emergency .whatsapp-btn:hover {
    background-color: #555;
    box-shadow: 0 6px 20px rgba(102, 102, 102, 0.6);
}

/* Footer */
footer {
    background-color: #0a0a0a;
    padding: 50px 0 30px;
    border-top: 1px solid #333;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-col {
    flex: 1;
    min-width: 250px;
}

.footer-col h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #ccc;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #444;
}

.footer-col p, .footer-col a {
    color: #999;
    margin-bottom: 10px;
    display: block;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #fff;
}

.footer-col i {
    margin-right: 10px;
    color: #666;
}

.copyright {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #222;
    color: #666;
    font-size: 0.9rem;
}
.copyright a{
    color: orange;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
    }
    
    .header-text {
        margin-bottom: 30px;
        flex-direction: column;
    }
    
    .lawyer-image {
        margin-right: 0;
        margin-bottom: 20px;
        width: 150px;
    }
    
    .logo {
        max-width: 250px;
    }
    
    .header .subtitle {
        font-size: 1.2rem;
    }
    
    .areas h2 {
        font-size: 2.2rem;
    }
    
    .emergency h2 {
        font-size: 2.2rem;
    }
    
    .emergency .subtitle {
        font-size: 1.1rem;
    }
    
    .footer-content {
        flex-direction: column;
    }
}