/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --preto: #111111;
    --dourado: #9F7824;
    --dourado-claro: #c9a04e;
    --preto-puro: #000000;
    --branco: #FFFFFF;
    --cinza-claro: #f5f5f5;
    --cinza: #888888;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--branco);
    background-color: var(--preto);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

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

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

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(159, 120, 36, 0.2);
    transition: all 0.3s ease;
}

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

.header .logo img {
    height: 80px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
}

.nav-menu a {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--branco);
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--dourado);
}

.btn-area-cliente {
    background: var(--dourado);
    color: var(--preto) !important;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
}

.btn-area-cliente:hover {
    background: var(--dourado-claro);
    transform: translateY(-2px);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--dourado);
    transition: all 0.3s ease;
}

/* ===== BANNER / HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background: linear-gradient(135deg, var(--preto) 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 50%, rgba(159, 120, 36, 0.05) 0%, transparent 50%);
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.hero-content {
    flex: 1;
    max-width: 550px;
    z-index: 2;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--branco);
}

.hero-content h1 span {
    color: var(--dourado);
}

.hero-content p {
    font-size: 16px;
    color: var(--cinza);
    margin-bottom: 30px;
    line-height: 1.8;
}

.btn-agendar {
    display: inline-block;
    background: var(--dourado);
    color: var(--preto);
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-agendar:hover {
    background: var(--dourado-claro);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(159, 120, 36, 0.3);
}

.hero-image {
    flex: 1;
    max-width: 500px;
    z-index: 2;
}

.hero-image img {
    border-radius: 20px;
}

/* ===== ÁREAS DE ATUAÇÃO ===== */
.areas-atuacao {
    padding: 60px 0;
    background: var(--preto);
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    color: var(--dourado);
    margin-bottom: 5px;
}

.section-title p {
    color: var(--cinza);
    font-size: 16px;
    margin-top: 0;
}

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

.area-card {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(159, 120, 36, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.area-card:hover {
    transform: translateY(-5px);
    border-color: var(--dourado);
    background: rgba(159, 120, 36, 0.05);
}

.area-card img {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    object-fit: contain;
}

.area-card h3 {
    font-size: 14px;
    font-weight: 600;
    color: var(--branco);
    line-height: 1.4;
}

/* ===== SOBRE A ADVOGADA ===== */
.sobre {
    padding: 60px 0;
    background: linear-gradient(180deg, var(--preto) 0%, #0a0a0a 100%);
}

.sobre .container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.sobre-image {
    flex: 1;
    max-width: 500px;
}

.sobre-image img {
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.sobre-content {
    flex: 1;
}

.sobre-content h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    color: var(--dourado);
    margin-bottom: 10px;
}

.sobre-content p {
    color: var(--cinza);
    font-size: 15px;
    margin-bottom: 15px;
    line-height: 1.8;
}

/* ===== VÍDEO / ATUAÇÃO ===== */
.video-section {
    padding: 60px 0;
    background: var(--preto);
}

.video-wrapper {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.video-wrapper iframe {
    width: 100%;
    aspect-ratio: 16/9;
    border: none;
}

/* ===== BLOG ===== */
.blog-section {
    padding: 60px 0;
    background: linear-gradient(180deg, var(--preto) 0%, #0a0a0a 100%);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(159, 120, 36, 0.15);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    border-color: var(--dourado);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-card-content {
    padding: 25px;
}

.blog-card h3 {
    font-size: 16px;
    color: var(--branco);
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-card p {
    font-size: 13px;
    color: var(--cinza);
    line-height: 1.6;
}

/* ===== FORMULÁRIO ===== */
.formulario-section {
    padding: 60px 0;
    background: var(--preto);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(159, 120, 36, 0.2);
    border-radius: 20px;
    padding: 50px 40px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--dourado);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(159, 120, 36, 0.3);
    border-radius: 10px;
    color: var(--branco);
    font-size: 14px;
    font-family: var(--font-body);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--dourado);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%239F7824' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
}

.form-group select option {
    background: var(--preto);
    color: var(--branco);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-submit {
    text-align: center;
    margin-top: 30px;
}

/* ===== RODAPÉ ===== */
.footer {
    padding: 60px 0 30px;
    background: var(--preto-puro);
    border-top: 1px solid rgba(159, 120, 36, 0.2);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-logo {
    flex-shrink: 0;
}

.footer-logo img {
    width: 167px;
    height: 163px;
}

.footer-contato {
    flex: 1;
    max-width: 350px;
}

.footer-contato h4 {
    color: var(--dourado);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-contato p {
    color: var(--branco);
    font-size: 14px;
    line-height: 1.9;
    margin: 0;
}

.footer-contato p strong {
    color: var(--dourado);
}

.footer-links {
    flex: 0 0 auto;
}

.footer-links h4 {
    color: var(--dourado);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links ul li a {
    color: var(--branco);
    font-size: 14px;
    transition: color 0.3s ease;
    text-decoration: none;
}

.footer-links ul li a:hover {
    color: var(--dourado);
}

.footer-selos {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.footer-selos img {
    max-width: 180px;
    height: auto;
    border-radius: 6px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--cinza);
    font-size: 13px;
    font-style: italic;
}

/* ===== WHATSAPP FLUTUANTE ===== */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    cursor: pointer;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    width: 30px;
    height: 30px;
    fill: white;
}

/* WhatsApp Lead Capture Modal */
.whatsapp-lead-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(5px);
}

.whatsapp-lead-modal {
    background: #1a1a1a;
    border: 1px solid rgba(159, 120, 36, 0.4);
    border-radius: 20px;
    padding: 35px;
    max-width: 420px;
    width: 100%;
    position: relative;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.whatsapp-lead-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: #888;
    font-size: 28px;
    cursor: pointer;
    transition: color 0.3s;
}
.whatsapp-lead-close:hover { color: #fff; }

.whatsapp-lead-header {
    text-align: center;
    margin-bottom: 25px;
}
.whatsapp-lead-header .whatsapp-lead-icon {
    margin-bottom: 12px;
}
.whatsapp-lead-header h3 {
    color: #fff;
    font-size: 20px;
    font-family: 'Playfair Display', serif;
    margin-bottom: 8px;
}
.whatsapp-lead-header p {
    color: #888;
    font-size: 14px;
}

.whatsapp-lead-form .whatsapp-lead-field {
    margin-bottom: 18px;
}
.whatsapp-lead-form .whatsapp-lead-field label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #9F7824;
    margin-bottom: 6px;
    font-weight: 600;
}
.whatsapp-lead-form .whatsapp-lead-field input,
.whatsapp-lead-form .whatsapp-lead-field select {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(159, 120, 36, 0.3);
    border-radius: 10px;
    color: #fff;
    font-size: 15px;
    transition: border-color 0.3s;
}
.whatsapp-lead-form .whatsapp-lead-field input:focus,
.whatsapp-lead-form .whatsapp-lead-field select:focus {
    outline: none;
    border-color: #9F7824;
}
.whatsapp-lead-form .whatsapp-lead-field input::placeholder {
    color: #555;
}
.whatsapp-lead-form .whatsapp-lead-field select option {
    background: #1a1a1a;
    color: #fff;
}

.whatsapp-lead-btn {
    width: 100%;
    padding: 14px;
    background: #25D366;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
    margin-top: 5px;
}
.whatsapp-lead-btn:hover {
    background: #20bd5a;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
}

/* ===== RESPONSIVO ===== */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column-reverse;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-image {
        max-width: 350px;
    }

    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sobre .container {
        flex-direction: column;
        text-align: center;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 40px;
    }

    .footer-logo {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .footer-logo img {
        width: 167px;
        height: 163px;
    }

    .footer-contato {
        max-width: 100%;
    }

    .footer-contato h4 {
        color: var(--dourado);
        font-size: 16px;
        margin-bottom: 20px;
    }

    .footer-contato p {
        color: var(--cinza);
        font-size: 14px;
        line-height: 2;
    }

    .footer-contato p strong {
        color: var(--dourado);
    }

    .footer-links h4 {
        color: var(--dourado);
        font-size: 16px;
        margin-bottom: 20px;
    }

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

    .footer-links ul li a {
        color: var(--cinza);
        font-size: 14px;
    }

    .footer-selos {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        width: 100%;
        padding: 0 40px;
    }

    .footer-selos img {
        max-width: 160px;
        height: auto;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(17, 17, 17, 0.98);
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        border-bottom: 1px solid rgba(159, 120, 36, 0.2);
    }

    .nav-menu.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .header .logo img {
        height: 60px;
    }

    .hero {
        min-height: auto;
        padding: 120px 0 60px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .area-card {
        padding: 25px 15px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-container {
        padding: 30px 20px;
    }

    .section-title h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 24px;
    }

    .areas-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .area-card img {
        width: 45px;
        height: 45px;
    }

    .area-card h3 {
        font-size: 12px;
    }
}
