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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
}

/* Botão WhatsApp Flutuante */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.whatsapp-float img {
    width: 35px;
    height: 35px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Cabeçalho */
header {
    background-color: #1a1a1a;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #fff;
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

nav ul li a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Seção Principal (Hero) */
.hero {
    background-color: #e9e9e9;
    padding: 80px 0;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-text {
    flex: 1;
}

.hero-text h2 {
    font-size: 18px;
    color: #666;
    margin-bottom: 20px;
}

.hero-text h1 {
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 16px;
    color: #444;
    margin-bottom: 20px;
}

.hero-text .atendimento {
    margin-bottom: 30px;
}

.hero-image {
    flex: 1;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    background-color: #25d366;
    color: #fff;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-whatsapp img {
    width: 20px;
    height: 20px;
    margin-left: 10px;
}

.btn-whatsapp:hover {
    background-color: #128c7e;
    transform: translateY(-2px);
}

.btn-whatsapp.center {
    margin: 40px auto;
    display: table;
}

/* Seção Serviços */
.servicos {
    background-color: #1a1a1a;
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.servicos h2 {
    font-size: 32px;
    margin-bottom: 50px;
}

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

.servico-item {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.servico-item:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.1);
}

.servico-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #c0a080;
}

.servico-item p {
    font-size: 15px;
    color: #ddd;
}

/* Seção Advogado Responsável */
.advogado {
    background-color: #f5f5f5;
    padding: 80px 0;
}

.advogado-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.advogado-info {
    flex: 1;
    background-color: #f0f0f0;
    padding: 40px;
    border-radius: 8px;
}

.advogado-info h2 {
    font-size: 28px;
    color: #c0a080;
    margin-bottom: 15px;
}

.advogado-info h3 {
    font-size: 22px;
    margin-bottom: 20px;
}

.advogado-info p {
    margin-bottom: 20px;
    color: #444;
}

.advogado-image {
    flex: 1;
}

.btn-contato {
    display: inline-block;
    background-color: #c0a080;
    color: #fff;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-contato:hover {
    background-color: #a88860;
    transform: translateY(-2px);
}

/* Seção Avaliações */
.avaliacoes {
    background-color: #e9e9e9;
    padding: 80px 0;
    text-align: center;
}

.avaliacoes h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.avaliacoes .subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

.depoimentos-slider {
    max-width: 800px;
    margin: 0 auto;
}

.depoimento {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.depoimento p {
    font-style: italic;
    font-size: 18px;
    margin-bottom: 20px;
}

.depoimento h4 {
    color: #c0a080;
}

/* Seção Escritório */
.escritorio {
    background-color: #1a1a1a;
    color: #fff;
    padding: 80px 0;
}

.escritorio h2 {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
}

.escritorio-content {
    display: flex;
    gap: 40px;
}

.escritorio-info {
    flex: 1;
}

.escritorio-info h3 {
    font-size: 24px;
    color: #c0a080;
    margin-bottom: 20px;
}

.escritorio-info p {
    margin-bottom: 20px;
    color: #ddd;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icon.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-icon.whatsapp {
    background-color: #25d366;
}

.social-icon:hover {
    transform: scale(1.1);
}

.mapa {
    flex: 1;
}

.mapa img {
    border-radius: 8px;
    width: 100%;
}

/* Rodapé */
footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 80px;
    margin-bottom: 20px;
}

.footer-links h3,
.footer-contato h3,
.footer-social h3 {
    font-size: 18px;
    color: #c0a080;
    margin-bottom: 20px;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #ddd;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #c0a080;
}

.footer-contato p {
    margin-bottom: 10px;
    color: #ddd;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #999;
    font-size: 14px;
}

/* Responsividade */
@media (max-width: 992px) {
    .hero-content,
    .advogado-content,
    .escritorio-content {
        flex-direction: column;
    }
    
    .hero-text {
        order: 2;
    }
    
    .hero-image {
        order: 1;
        margin-bottom: 30px;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav ul li {
        margin: 5px 10px;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
    }
    
    .logo {
        margin-bottom: 15px;
    }
    
    .servicos-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 40px 0;
    }
    
    .hero-text h1 {
        font-size: 28px;
    }
    
    .servicos h2,
    .avaliacoes h2,
    .escritorio h2 {
        font-size: 26px;
    }
}
