/* ============================
   RESET
============================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Playfair Display', serif;
    background-color: #fff;
    color: #0D1F4D;
    padding-top: 110px;
}

/* ============================
   CABEÇALHO
============================ */
header {
    background-color: #040092;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 40px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

header .logo img {
    height: 55px;
    width: auto;
}

/* ============================
   BOTÃO HAMBÚRGUER
============================ */
.menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 2000;

    position: absolute;
    right: 20px; /* movido para a direita */
}

.menu-btn span {
    width: 28px;
    height: 3px;
    background-color: #fff;
    border-radius: 3px;
    transition: 0.3s;
}

/* ============================
   MENU DE NAVEGAÇÃO
============================ */
nav ul {
    list-style: none;
    display: flex;
    gap: 35px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

nav ul li a:hover {
    text-decoration: underline;
}

/* ============================
   BANNER
============================ */
.banner {
    height: 100vh;
    width: 100%;
    background-image: url('extracted_images/banner.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.4);
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.banner-content h1 {
    color: #fff;
    font-size: 30px;
    line-height: 1.5;
    margin-bottom: 40px;
}

.btn-whatsapp {
    background-color: #38BF4E;
    color: white;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 17px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
    margin-top: 30px;
}

.btn-whatsapp:hover {
    background-color: #2e9c3f;
}

/* ============================
   BOTÃO FLUTUANTE WHATSAPP
============================ */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 25px;
    right: 25px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    z-index: 3000;
    box-shadow: 0 0 12px rgba(0,0,0,0.4);
    text-decoration: none;
    transition: 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #1ebe5d;
}

/* ============================
   SOBRE NÓS
============================ */
.sobre-nos {
    background-color: #EBEBEB;
    padding: 100px 20px;
    text-align: center;
}

.sobre-nos-container h2 {
    font-family: 'Playfair Display', serif;
    color: #0D1F4D;
    font-size: 42px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.sobre-nos-container p {
    font-family: 'Lora', serif;
    color: #0D1F4D;
    font-size: 18px;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 25px auto;
}

.linha-dourada {
    border: 0;
    height: 2px;
    width: 80px;
    background-color: #D4AF37;
    margin: 30px auto;
}

.advogados {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.advogado {
    width: 250px;
    text-align: center;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    padding-bottom: 15px;
    border: 2px solid #D4AF37;
}

.advogado img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.nome-advogado {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: #0D1F4D;
    margin-top: 10px;
    font-weight: bold;
}

.oab {
    font-family: 'Lora', serif;
    font-size: 16px;
    color: #0D1F4D;
}

/* ============================
   ÁREAS DE ATUAÇÃO
============================ */
.areas {
    background-color: #EBEBEB;
    padding: 100px 20px;
    text-align: center;
}

.areas-container .servicos {
    font-family: Arial, sans-serif;
    font-size: 16px;
    color: #000;
    letter-spacing: 2px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.linha-servico {
    width: 40px;
    height: 2px;
    background-color: #000;
    border: none;
    margin: 0 auto 20px auto;
}

.areas-container h2 {
    font-family: 'Playfair Display', serif;
    color: #0D1F4D;
    font-size: 36px;
    margin-bottom: 50px;
}

.areas-quadrados {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.area {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px 20px;
    width: 300px;
    text-align: center;
    transition: transform 0.3s, border 0.3s;
    border: 2px solid transparent;
}

.area:hover {
    transform: scale(1.05);
    border: 2px solid #D4AF37;
}

.icone-area {
    font-size: 40px;
    color: #0D1F4D;
    margin-bottom: 15px;
}

.area h3 {
    font-family: 'Playfair Display', serif;
    color: #0D1F4D;
    font-size: 20px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.area p {
    font-family: 'Lora', serif;
    color: #000;
    font-size: 16px;
    line-height: 1.5;
}

/* ============================
   AVALIAÇÕES
============================ */
.avaliacoes {
    background-color: #0D1F4D;
    padding: 100px 20px;
    text-align: center;
}

.avaliacoes h2 {
    font-family: 'Playfair Display', serif;
    color: #fff;
    font-size: 36px;
    margin-bottom: 30px;
}

.aviso {
    font-family: 'Lora', serif;
    color: #fff;
    font-size: 16px;
    margin-bottom: 30px;
}

.elfsight-app-e4fb9f81-90b2-44a8-a412-9a4db66f6830 {
    max-width: 800px;
    margin: 0 auto;
}

/* ============================
   CONTATO
============================ */
.contato {
    background-color: #EBEBEB;
    padding: 100px 20px;
    text-align: center;
}

.contato-container h2 {
    font-family: 'Playfair Display', serif;
    color: #0D1F4D;
    font-size: 36px;
    margin-bottom: 50px;
}

.contato-card-mapa {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
    align-items: flex-start;
}

.contato-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px 20px;
    width: 280px;
    text-align: center;
    border: 2px solid #D4AF37;
}

.contato-card h3 {
    font-family: 'Playfair Display', serif;
    color: #0D1F4D;
    font-size: 20px;
    margin-bottom: 20px;
}

.contato-card p {
    font-family: 'Lora', serif;
    color: #000;
    font-size: 16px;
    margin-bottom: 10px;
}

.contato-card a {
    color: #000;
    text-decoration: none;
    transition: 0.3s;
}

.contato-card a:hover {
    color: #0D1F4D;
}

.mapa-contato iframe {
    width: 500px;
    max-width: 100%;
    height: 300px;
    border: 0;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(212,175,55,0.5);
}

/* ============================
   RODAPÉ
============================ */
footer {
    background-color: #0D1F4D;
    color: #fff;
    padding: 60px 20px;
    text-align: center;
}

footer a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

footer a:hover {
    color: #38BF4E;
}

.footer-info p {
    margin-bottom: 10px;
    font-family: 'Lora', serif;
    font-size: 16px;
}

.footer-info i {
    margin-right: 8px;
}

/* ============================
   RESPONSIVIDADE
============================ */
@media (max-width: 900px) {

    header {
        flex-direction: row;
        justify-content: space-between;
        padding: 20px 20px;
    }

    nav {
        display: none;
        flex-direction: column;
    }

    nav ul {
        flex-direction: column;
        gap: 25px;
        align-items: flex-start;
        padding-left: 30px;
    }

    .menu-btn {
        display: flex;
    }

    nav.active {
        display: flex;
    }

    .banner-content h1 {
        font-size: 24px;
    }

    .btn-whatsapp {
        font-size: 16px;
        padding: 12px 24px;
    }

    .sobre-nos-container h2,
    .areas-container h2,
    .avaliacoes h2,
    .contato-container h2 {
        font-size: 28px;
    }

    .advogados {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }
}
