/* Reset e Configurações Globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --dark-green: #122D2D;
    /* Alterado para a cor especificada */
    --gold: #d4af37;
    --cream: #f5f2ed;
    --white: #ffffff;
    --text-dark: #2c2c2c;
    --text-gray: #666666;
}

@font-face {
    font-family: 'AllrounderAntiqua-Medium';
    src: url('assets/fonts/ALLROUNDERANTIQUA-MEDIUM.OTF') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: 'Noto Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

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

h1,
h2,
h3,
.nav-menu {
    font-family: 'AllrounderAntiqua-Medium', 'Noto Sans', serif;
}

/* Header */
header {
    background-color: transparent;
    padding: 25px 0 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

header.scrolled {
    background-color: var(--cream);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar {
    display: flex;
    justify-content: center;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo img {
    height: 70px;
    transition: filter 0.3s ease;
}

header.scrolled .logo img {
    filter: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 65px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark-green);
    font-size: 12pt;
    font-weight: 500;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

header.scrolled .nav-menu a {
    color: var(--dark-green);
}

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

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background-color: var(--dark-green);
    transition: all 0.3s ease;
}

header.scrolled .mobile-menu-btn span {
    background-color: var(--text-dark);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-left-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background-color: var(--dark-green);
    background-image: url('../images/img-section-hero-left.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    /* Alterado para cover para ocupar 100% */
    z-index: -1;
}

.hero-right-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, #f5f2ed 0%, #e8d5b8 100%);
    background-image: url('../images/img-section-hero-right.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    /* Alterado para cover para ocupar 100% */
    z-index: -1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 268px;
    align-items: center;
    * ← Esta linha */ padding: 100px 0 80px;
    position: relative;
    z-index: 1;
}

.hero-left h1 {
    font-size: 48px;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 400;
}

.hero-left h1 .highlight {
    color: var(--gold);
}

.hero-left p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    line-height: 130%;
    margin-bottom: 30px;
    font-weight: 300;
}

.btn-container {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-primary {
    background-color: #E0AB59;
    color: #fff;
    padding: 10px 11px 10px 18px;
    border: none;
    border-radius: 80px;
    font-family: 'Noto Sans', sans-serif;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 25px;
    text-decoration: unset;
}

.btn-whatsapp-circle {
    width: 42px;
    height: 42px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.btn-whatsapp-icon {
    width: 24px;
    height: 24px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.btn-primary svg {
    width: 16px;
    height: 16px;
}

.hero-right {
    position: relative;
}

.hero-image-container {
    position: relative;
    max-width: 527px;
    max-height: 710px;
}

.hero-main-image {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    position: relative;
    left: 113px;
}

.image-label {
    position: absolute;
    top: 40px;
    right: -157px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 45.221px;
    border: 0.904px solid #FFF;
    background: rgba(255, 255, 255, 0.20);
    box-shadow: 0 0 1.809px 0 rgba(255, 255, 255, 0.25) inset;
    backdrop-filter: blur(18.0884952545166px);
    padding: 8px 16px;
    width: 165.51px;
    justify-content: center;
}

.image-label img {
    width: 20px;
    height: 20px;
    margin-right: 8px;
}

.experience-badge {
    position: absolute;
    bottom: 230px;
    left: 29px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 45.221px;
    /* border: 0.904px solid #E0AB59;
    background: rgba(224, 171, 89, 0.20);
    box-shadow: 0 0 1.809px 0 rgba(255, 255, 255, 0.25) inset; */
    border: 0.904px solid #FFF;
    background: rgba(255, 255, 255, 0.20);
    box-shadow: 0 0 1.809px 0 rgba(255, 255, 255, 0.25) inset;
    backdrop-filter: blur(18.0884952545166px);
    padding: 8px 16px;
    width: 165.51px;
    justify-content: center;
}

.experience-badge img {
    width: 20px;
    height: 20px;
    margin-right: 8px;
}

/* Serviços Section */
.servicos {
    padding: 80px 0;
    background-color: var(--white);
    border-radius: 100px 100px 0 0;
    border-top: 1px solid #e0e0e0;
    border-right: 1px solid #e0e0e0;
    border-left: 1px solid #e0e0e0;
    margin-top: -100px;
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    background-color: var(--cream);
    color: var(--text-dark);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: normal;
}

.highlight-gold {
    color: var(--gold);
}

.section-header p {
    color: var(--text-gray);
    font-size: 16px;
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin: 0 auto;
}

.servico-card {
    background-color: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
}

.servico-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.servico-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.servico-icon {
    width: 60px;
    height: 60px;
    background-color: #122D2D;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.servico-icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.servico-card h3 {
    font-size: 22px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.servico-card p {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.servico-tag {
    padding: 7px 9px;
    border-radius: 30.723px;
    border: 0.614px solid #E8C77A;
    background: #FBF7ED;
    box-shadow: 0 0 1.229px 0 rgba(255, 255, 255, 0.25) inset;
    backdrop-filter: blur(12.289008140563965px);
    color: #E2BB5F;
    font-family: "Noto Sans";
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
}

/* Advogados Section (Quem Somos) - refinamento milimétrico */
.advogados {
    background-color: #122D2D;
    padding: 110px 0 100px 0;
    position: relative;
    overflow: hidden;
}

.advogados-content {
    display: grid;
    grid-template-columns: 0.75fr 0.85fr;
    gap: 64px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.advogados-text h2 {
    font-size: 46px;
    color: #FFFFFF;
    margin-bottom: 22px;
    line-height: 1.18;
}

.advogados-text p {
    color: rgba(255, 255, 255, 0.86);
    margin-bottom: 16px;
    line-height: 1.75;
    font-size: 16px;
}

/* Grid dos cards à direita */
.advogados-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 75px;
    align-items: start;
}

.advogado-card {
    background: transparent;
    border: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    box-shadow: none;
}

.advogado-card img {
    height: 100%;
    object-fit: cover;
}

.advogado-info h3 {
    font-size: 20px;
    color: #E0AB59;
    margin-bottom: 6px;
    font-family: 'AllrounderAntiqua-Medium', 'Noto Sans', serif;
}

.advogado-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.5;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(180deg, #E3B978 0%, #F5F2ED 100%);
    padding: 100px 0;
    text-align: center;
}

.cta-content {
    max-width: 1020px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: 42px;
    color: #122D2D;
    margin-bottom: 16px;
    line-height: 1.2;
    font-family: 'AllrounderAntiqua-Medium', 'Noto Sans', serif;
    font-weight: normal;
}

.highlight-white {
    color: #fff;
    font-weight: normal;
}

.cta-section p {
    color: #262626;
    margin-bottom: 50px;
    font-size: 18px;
}

.cta-box {
    background-color: #122D2D;
    border-radius: 20px;
    padding: 40px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.cta-box-content {
    text-align: center;
}

.cta-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
}

.cta-contact-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    justify-content: center;
}

.cta-whatsapp-ellipse {
    width: 48px;
    height: 48px;
    background-color: #E0AB59;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-icon-white {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.cta-box h3 {
    color: #E0AB59;
    font-size: 24px;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 600;
    margin: 0;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
}

/* Footer */
footer {
    background-color: var(--white);
    padding: 60px 0 20px;
    border-top: 1px solid #e0e0e0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-info h3 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 600;
}

.footer-info p {
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

.footer-contact p {
    color: var(--text-gray);
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-form h4 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-family: 'Noto Sans', sans-serif;
}

.footer-form p {
    color: var(--text-gray);
    margin-bottom: 20px;
    font-size: 14px;
}

.footer-form form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-form label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-gray);
    font-size: 14px;
}

.footer-form input[type="checkbox"] {
    accent-color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid #e0e0e0;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: var(--text-gray);
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 30px;
}

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

.footer-links a:hover {
    color: var(--gold);
}

.footer-contact .contact-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    vertical-align: middle;
}

/* Responsividade - Tablet */
@media screen and (max-width: 1024px) {
    .hero-content {
        padding: 80px 0 60px;
    }

    .hero-left h1 {
        font-size: 40px;
    }

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

    .advogados-text h2 {
        font-size: 36px;
    }

    .advogados {
        background-position: center right;
    }

    .advogados-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .advogados-text h2 {
        font-size: 36px;
    }
}

@media screen and (max-width: 1200px) {
    .advogados .container {
        max-width: 1100px;
    }

    .advogados-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

@media screen and (max-width: 820px) {
    .advogados-text h2 {
        font-size: 32px;
    }

    .advogados-cards {
        justify-content: center;
        display: flex;
        flex-direction: column;
        width: 100%;
        text-align: center;
        align-items: center;
    }

    .advogado-card img {
        height: auto;
    }
}

/* Responsividade - Mobile */
@media screen and (max-width: 768px) {

    /* Mobile Menu */
    .mobile-menu-btn {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--cream);
        flex-direction: column;
        padding: 80px 30px;
        gap: 20px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu a {
        color: var(--text-dark);
        font-size: 16px;
    }

    /* Hero adjustments */
    .hero {
        min-height: auto;
        padding-top: 50px;
        margin-bottom: 100px;
    }

    .hero-left-bg,
    .hero-right-bg {
        width: 100%;
    }

    .hero-right-bg {
        opacity: 0.3;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 100px 0 60px;
    }

    .hero-left h1 {
        font-size: 32px;
    }

    .hero-left p {
        font-size: 14px;
    }

    .hero-main-image {
        max-width: 100%;
        left: 0;
    }

    .image-label,
    .experience-badge {
        position: static;
        margin: 10px 0;
        display: inline-flex;
    }

    /* Services */
    .servicos{
        border-radius: 0;   
    }

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

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

    /* Team */
    .advogados-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .advogados-text h2 {
        font-size: 28px;
    }

    .advogado-card {
        flex-direction: column;
        align-items: center;
    }


    /* CTA */
    .cta-section h2 {
        font-size: 28px;
    }
    
    .cta-box {
        padding: 30px 20px;
    }
    
    .cta-box h3 {
        font-size: 20px;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
}

/* Responsividade - Small Mobile */
@media screen and (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

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

    .btn-primary {
        padding: 12px 24px;
        font-size: 14px;
    }

    .section-header h2 {
        font-size: 24px;
        font-weight: normal;
    }

    .servico-card {
        padding: 20px;
    }

    .advogados-text h2 {
        font-size: 24px;
    }

    .footer-links a {
        font-size: 12px;
    }
}

.advogados-text .section-chip {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.advogados-text h2 {
    font-size: 44px;
    margin-bottom: 18px;
    font-weight: normal;
}

.footer-form {
    background: rgba(18, 45, 45, 0.14);
    border-radius: 29px;
    padding: 30px;
}

.form-options {
    list-style: none;
    padding: 0;
    margin: 0;
}

.form-options li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.form-options li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    color: #E0AB59;
    font-size: 24px;
    line-height: 1;
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    cursor: pointer;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-float img {
    width: 32px;
    height: 32px;
    filter: brightness(0) invert(1);
}

/* Responsividade para o ícone flutuante */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

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