/* =========================
   RESET
   ========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', Arial, sans-serif;
    background-color: #f5f3f0;
    color: #333333;
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
}

.container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}


/* =========================
   HEADER
   ========================= */

.header {
    width: 100%;
    background: #ffffff;
    padding: 18px 0;
    border-bottom: 1px solid #e8e5e0;
    position: sticky;
    top: 0;
    z-index: 999;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}


/* =========================
   LOGO SVG
   ========================= */

.logo {
    display: block;
    width: 360px;
    max-width: 42%;
    flex: 0 1 360px;
    text-decoration: none;
    line-height: 0;
}

.logo-svg {
    display: block;
    width: 100%;
    height: auto;
    overflow: visible;
}

.logo:hover {
    opacity: 0.85;
}


/* Texto MONIZ dentro do SVG */

.logo-name {
    font-family: "Times New Roman", Times, Georgia, serif;
    font-size: 67px;
    font-weight: 400;
    letter-spacing: 9px;
    fill: #666666;
}


/* Subtítulo */

.logo-subtitle {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 17px;
    font-weight: 400;
    letter-spacing: 1.8px;
    fill: #777777;
}


/* =========================
   MENU
   ========================= */

.menu-wrapper {
    display: contents;
}

.menu-toggle,
.menu-button {
    display: none;
}

.menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 38px;
}

.menu-item {
    position: relative;
    display: inline-block;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 17px;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: 0.8px;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.menu-item:hover {
    color: #8b1e2d;
}

.menu-item::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 0;
    height: 2px;
    background: #8b1e2d;
    transition: width 0.3s ease;
}

.menu-item:hover::after {
    width: 100%;
}


/* =========================
   HERO
   ========================= */

.hero {
    min-height: 650px;

    background:
        linear-gradient(
            rgba(0, 0, 0, 0.55),
            rgba(0, 0, 0, 0.55)
        ),
        url('images/capa-justica.jpg') center center / cover no-repeat;

    display: flex;
    align-items: center;

    color: #ffffff;
}

.hero-overlay {
    width: 100%;
}

.hero-content {
    max-width: 900px;
}

.hero-text {
    max-width: 850px;
}

.hero h1 {
    margin-bottom: 28px;

    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 68px;
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: 0.5px;
}

.hero p {
    max-width: 700px;
    margin-bottom: 40px;

    color: #f0f0f0;

    font-size: 20px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}


/* =========================
   BOTÕES
   ========================= */

.btn {
    display: inline-block;

    padding: 16px 36px;

    border: 2px solid transparent;
    border-radius: 4px;

    font-family: 'Inter', Arial, sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;

    cursor: pointer;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.btn-primary {
    background: #8b1e2d;
    color: #ffffff;
}

.btn-primary:hover {
    background: #6e1622;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(139, 30, 45, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.btn-secondary:hover {
    background: #ffffff;
    color: #111111;
}


/* =========================
   SEÇÕES
   ========================= */

.section-header {
    margin-bottom: 60px;
    text-align: center;
}

.section-header h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 56px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.5px;
}


/* =========================
   QUEM SOMOS
   ========================= */

.about {
    padding: 120px 0;
    background: #f5f3f0;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
    line-height: 1.95;
}

.about-content p {
    margin-bottom: 28px;

    color: #444444;

    font-size: 17px;
    line-height: 1.95;

    text-align: justify;
}

.about-content p:last-child {
    margin-bottom: 0;
}


/* =========================
   ADVOGADA
   ========================= */

.lawyer {
    padding: 120px 0;
    background: #ffffff;
}

.lawyer-grid {
    display: grid;
    grid-template-columns: minmax(300px, 420px) minmax(0, 1fr);
    align-items: start;
    gap: 80px;
}

.lawyer-image {
    width: 100%;
}

.lawyer-image img {
    display: block;
    width: 100%;
    height: auto;

    border-radius: 6px;

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.15);
}

.lawyer-bio {
    min-width: 0;
}

.lawyer-bio h2 {
    margin-bottom: 10px;

    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 52px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.lawyer-bio .oab {
    margin-bottom: 32px;

    color: #8b1e2d;

    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
}

.lawyer-bio h3 {
    margin-top: 32px;
    margin-bottom: 14px;

    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0.3px;
}

.lawyer-bio p {
    margin-bottom: 0;

    color: #555555;

    font-size: 16px;
    line-height: 1.8;
}

.lawyer-bio .btn {
    margin-top: 40px;
}


/* =========================
   ÁREAS
   ========================= */

.areas {
    padding: 120px 0;
    background: #f5f3f0;
}

.areas-alt {
    background: #ffffff;
}

.area-block {
    max-width: 1000px;
    margin: 0 auto;
}

.area-title {
    margin-bottom: 40px;

    color: #333333;

    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 48px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.area-list {
    margin: 0;
    padding: 0;

    list-style: none;
}

.area-list li {
    position: relative;

    padding: 16px 0 16px 30px;

    border-bottom: 1px solid #e8e5e0;

    color: #555555;

    font-size: 17px;
    line-height: 1.8;
}

.area-list li:last-child {
    border-bottom: none;
}

.area-list li::before {
    content: "•";

    position: absolute;
    top: 13px;
    left: 0;

    color: #8b1e2d;

    font-size: 22px;
    font-weight: bold;
}


/* =========================
   DIFERENCIAIS
   ========================= */

.highlights {
    padding: 120px 0;
    background: #2c2c2c;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 60px;
}

.highlight-item {
    min-width: 0;
}

.highlight-item h3 {
    margin-bottom: 16px;

    color: #d4b17a;

    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0.5px;
}

.highlight-item p {
    color: #cccccc;

    font-size: 16px;
    line-height: 1.7;
}


/* =========================
   CONTATO
   ========================= */

.contact {
    padding: 120px 0;
    background: #f5f3f0;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 80px;
}

.contact-info {
    min-width: 0;
}

.contact-info h2 {
    margin-bottom: 16px;

    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 52px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.contact-info > p {
    margin-bottom: 40px;

    color: #666666;

    font-size: 17px;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.info-item strong {
    display: block;

    margin-bottom: 8px;

    color: #333333;

    font-size: 15px;
    letter-spacing: 0.5px;
}

.info-item p {
    margin: 0;

    color: #666666;

    font-size: 16px;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;

    padding: 48px;

    background: #ffffff;

    border-radius: 6px;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact-form input,
.contact-form textarea {
    width: 100%;

    padding: 16px;

    border: 1px solid #dddddd;
    border-radius: 4px;

    background: #ffffff;

    color: #333333;

    font-family: 'Inter', Arial, sans-serif;
    font-size: 15px;

    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;

    border-color: #8b1e2d;

    box-shadow:
        0 0 0 3px rgba(139, 30, 45, 0.1);
}

.contact-form textarea {
    min-height: 130px;
    resize: vertical;
}

.contact-form .btn {
    margin-top: 12px;
}


/* =========================
   FOOTER
   ========================= */

.footer {
    padding: 56px 0;

    background: #1a1a1a;

    color: #ffffff;

    border-top: 1px solid #333333;
}

.footer-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 60px;
}

.footer-content strong {
    display: block;

    margin-bottom: 10px;

    color: #d4b17a;

    letter-spacing: 0.5px;
}

.footer-content p {
    margin: 8px 0;

    color: #bbbbbb;

    font-size: 14px;
    line-height: 1.6;
}


/* =========================
   WHATSAPP
   ========================= */

.floating-whatsapp {
    position: fixed;
    right: 30px;
    bottom: 30px;

    z-index: 998;

    display: inline-block;

    padding: 16px 26px;

    background: #25d366;
    border-radius: 50px;

    color: #ffffff;

    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;

    text-decoration: none;

    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.3);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.floating-whatsapp:hover {
    color: #ffffff;

    transform: scale(1.08);

    box-shadow:
        0 12px 32px rgba(0, 0, 0, 0.4);
}


/* =========================================================
   RESPONSIVO
   ========================================================= */


/* =========================
   ATÉ 1200px
   ========================= */

@media (max-width: 1200px) {

    .container {
        width: 92%;
    }

    .header-content {
        gap: 25px;
    }

    .logo {
        width: 310px;
        flex-basis: 310px;
    }

    .menu {
        gap: 22px;
    }

    .menu-item {
        font-size: 15px;
    }

    .lawyer-grid {
        grid-template-columns: 340px minmax(0, 1fr);
        gap: 50px;
    }

    .contact-grid {
        gap: 50px;
    }

    .highlights-grid {
        gap: 40px;
    }
}


/* =========================
   ATÉ 1024px
   ========================= */

@media (max-width: 1024px) {

    .header {
        padding: 15px 0;
    }

    .header-content {
        gap: 20px;
    }

    .logo {
        width: 270px;
        flex-basis: 270px;
    }

    .menu {
        gap: 16px;
    }

    .menu-item {
        font-size: 13px;
        letter-spacing: 0.4px;
    }

    .hero {
        min-height: 600px;
    }

    .hero h1 {
        font-size: 54px;
    }

    .section-header h2 {
        font-size: 46px;
    }

    .lawyer-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .lawyer-image {
        width: 100%;
        max-width: 480px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .highlights-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


/* =========================
   ATÉ 768px
   ========================= */

@media (max-width: 768px) {

    .container {
        width: 92%;
    }

    .header {
        padding: 14px 0;
    }

    .header-content {
        flex-direction: row;
        gap: 20px;
    }

    .logo {
        width: min(300px, calc(100% - 55px));
        max-width: calc(100% - 55px);
        flex: none;
    }

    .logo-svg {
        width: 100%;
        height: auto;
    }

    /* =========================
       MENU HAMBURGER
       ========================= */

    .menu-wrapper {
        display: flex;
        align-items: center;
        position: relative;
        flex-shrink: 0;
    }

    .menu-toggle {
        position: absolute;
        opacity: 0;
        pointer-events: none;
    }

    .menu-button {
        display: flex;
        width: 38px;
        height: 32px;
        flex-direction: column;
        justify-content: space-between;
        cursor: pointer;
        z-index: 1001;
    }

    .menu-button span {
        display: block;
        width: 100%;
        height: 3px;
        background: #1a1a1a;
        transition:
            transform 0.3s ease,
            opacity 0.3s ease;
    }

    .menu {
        position: absolute;
        top: calc(100% + 14px);
        right: 0;

        width: 230px;

        display: flex;
        flex-direction: column;
        align-items: stretch;

        gap: 0;

        padding: 10px 0;

        background: #ffffff;

        border: 1px solid #e8e5e0;

        box-shadow:
            0 10px 30px rgba(0, 0, 0, 0.10);

        opacity: 0;
        visibility: hidden;

        transform: translateY(-10px);

        transition:
            opacity 0.25s ease,
            visibility 0.25s ease,
            transform 0.25s ease;

        z-index: 1000;
    }

    .menu-item {
        display: block;
        width: 100%;

        padding: 12px 20px;

        font-size: 14px;
        letter-spacing: 0.5px;
    }

    .menu-item::after {
        display: none;
    }

    .menu-toggle:checked ~ .menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .menu-toggle:checked + .menu-button span:nth-child(1) {
        transform: translateY(14.5px) rotate(45deg);
    }

    .menu-toggle:checked + .menu-button span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle:checked + .menu-button span:nth-child(3) {
        transform: translateY(-14.5px) rotate(-45deg);
    }


    .hero {
        min-height: 500px;
    }

    .hero-content {
        width: 100%;
    }

    .hero h1 {
        font-size: 42px;
        line-height: 1.15;
    }

    .hero p {
        font-size: 18px;
    }

    .hero-buttons {
        width: 100%;
    }

    .section-header {
        margin-bottom: 45px;
    }

    .section-header h2 {
        font-size: 38px;
    }

    .about,
    .lawyer,
    .areas,
    .contact,
    .highlights {
        padding: 80px 0;
    }

    .about-content p {
        font-size: 16px;
        text-align: left;
    }

    .lawyer-bio h2,
    .contact-info h2 {
        font-size: 42px;
    }

    .area-title {
        font-size: 40px;
    }

    .area-list li {
        font-size: 16px;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form {
        padding: 32px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .floating-whatsapp {
        right: 20px;
        bottom: 20px;

        padding: 14px 22px;

        font-size: 13px;
    }
}


/* =========================
   ATÉ 480px
   ========================= */

@media (max-width: 480px) {

    .container {
        width: 92%;
    }

    .header {
        padding: 12px 0;
    }

    .logo {
        width: min(260px, calc(100% - 50px));
        max-width: calc(100% - 50px);
    }

    .menu-button {
        width: 34px;
        height: 29px;
    }

    .menu-item {
        font-size: 13px;
    }

    .hero {
        min-height: 450px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .hero-buttons {
        display: block;
    }

    .btn {
        width: 100%;

        padding: 13px 20px;

        font-size: 13px;

        text-align: center;
    }

    .section-header h2 {
        font-size: 30px;
    }

    .lawyer-bio h2,
    .contact-info h2 {
        font-size: 36px;
    }

    .area-title {
        font-size: 34px;
    }

    .area-list li {
        padding: 14px 0 14px 25px;

        font-size: 15px;
        line-height: 1.7;
    }

    .area-list li::before {
        top: 11px;
    }

    .highlight-item h3 {
        font-size: 23px;
    }

    .contact-form {
        padding: 24px;
        gap: 14px;
    }

    .about,
    .lawyer,
    .areas,
    .contact,
    .highlights {
        padding: 60px 0;
    }

    .floating-whatsapp {
        right: 15px;
        bottom: 15px;

        padding: 12px 18px;

        font-size: 12px;
    }
}

/* MENU HAMBURGUER MOBILE */

.menu-wrapper {
    display: contents;
}

.menu-toggle {
    display: none;
}

.menu-button {
    display: none;
}

@media (max-width: 768px) {

    .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .menu-wrapper {
        display: block;
        position: relative;
    }

    .menu-toggle {
        display: none;
    }

    .menu-button {
        display: flex;
        width: 34px;
        height: 26px;
        flex-direction: column;
        justify-content: space-between;
        cursor: pointer;
    }

    .menu-button span {
        display: block;
        width: 34px;
        height: 3px;
        background: #1a1a1a;
    }

    .menu {
        position: absolute;
        top: 40px;
        right: 0;

        width: 230px;

        display: flex;
        flex-direction: column;
        gap: 0;

        padding: 10px 0;

        background: #ffffff;
        border: 1px solid #e8e5e0;

        opacity: 0;
        visibility: hidden;

        z-index: 9999;
    }

    .menu-item {
        display: block;
        width: 100%;
        padding: 12px 20px;
        box-sizing: border-box;
        font-size: 14px;
    }

    .menu-item::after {
        display: none;
    }

    /* QUANDO CLICAR NO HAMBURGUER */
    .menu-toggle:checked ~ .menu {
        opacity: 1;
        visibility: visible;
    }

    /* transforma em X */
    .menu-toggle:checked + .menu-button span:nth-child(1) {
        transform: translateY(11.5px) rotate(45deg);
    }

    .menu-toggle:checked + .menu-button span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle:checked + .menu-button span:nth-child(3) {
        transform: translateY(-11.5px) rotate(-45deg);
    }
}

@media (max-width: 480px) {

    .menu-button {
        width: 32px;
        height: 24px;
    }

    .menu-button span {
        width: 32px;
    }

    .menu {
        width: 220px;
    }
}