:root {
    --bg-color: #ffffff;
    --text-color: #000000;
    --accent-color: #000000;
    /* Preto puro para botões/detalhes */
    --gray-light: #f5f5f5;
    --gray-medium: #e5e5e5;
    --border-color: #000000;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color);
    letter-spacing: -0.03em;
    /* Mais "tight", moderno */
    line-height: 1.4;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--text-color);
    font-weight: 700;
    text-transform: uppercase;
    /* Estilo mais editorial */
    letter-spacing: -0.05em;
    margin: 0;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Utilities */
.text-justify {
    text-align: justify;
}

.font-serif {
    font-family: 'Playfair Display', serif;
    /* Opcional se quiser adicionar no head */
}

/* NAVBAR Minimalista */
.navbar-custom {
    background-color: #ffffff;
    border-bottom: 2px solid #000;
    padding: 1.5rem 0;
}

.navbar-custom .nav-link {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #000 !important;
    position: relative;
    padding: 0 5px;
}

.navbar-custom .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -5px;
    left: 0;
    background-color: #000;
    transition: width 0.3s;
}

.navbar-custom .nav-link:hover::after {
    width: 100%;
}

/* HERO SECTION - All Black */
.hero-mw {
    min-height: 90vh;
    /* Quase full screen */
    background-color: #000000;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    padding-top: 80px;
}

.hero-mw h1 {
    font-size: 5rem;
    /* Gigante */
    line-height: 0.9;
    color: #fff;
    margin-bottom: 2rem;
    text-transform: uppercase;
    font-weight: 800;
}

.hero-mw p {
    font-size: 1.5rem;
    font-weight: 300;
    max-width: 600px;
    margin-bottom: 3rem;
    color: #cccccc;
    letter-spacing: 0;
}

/* BUTTONS - Retangulares e Sharp */
.btn-noir {
    background-color: #fff;
    color: #000;
    border: 1px solid #fff;
    border-radius: 0;
    /* Sharp edges */
    padding: 1rem 2.5rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.1em;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.btn-noir:hover {
    background-color: #000;
    color: #fff;
}

.btn-noir-outline {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 0;
    padding: 1rem 2.5rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.1em;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.btn-noir-outline:hover {
    background-color: #fff;
    color: #000;
}

.btn-bw-ghost {
    background-color: transparent;
    color: #000;
    border: 2px solid #000;
    border-radius: 0;
    padding: 1rem 2rem;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.1em;
    transition: background 0.3s, color 0.3s;
}

.btn-bw-ghost:hover {
    background-color: #000;
    color: #fff;
}


/* SECTION: MANIFESTO (Editorial) */
.section-manifesto {
    padding: 8rem 0;
    background-color: #fff;
    border-bottom: 1px solid #000;
}

.manifesto-text {
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 600;
    text-transform: none;
    /* Frase falada */
    letter-spacing: -0.02em;
}

/* SECTION: AREAS - Grid Brutalista */
.section-areas {
    background-color: #fff;
}

.area-block {
    display: block;
    border-right: 1px solid #000;
    border-bottom: 1px solid #000;
    padding: 4rem 2rem;
    height: 100%;
    color: #000;
    transition: background 0.3s, color 0.3s;
    position: relative;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Base Hover Effects */
.area-block:hover h3,
.area-block:hover p,
.area-block:hover .arrow-icon,
.area-block:hover .d-block {
    color: #fff !important;
}

/* Specific Hover Backgrounds */
.area-trabalhista:hover {
    background-color: #05152a;
    /* Navy Blue */
    color: #fff !important;
}

.area-previdenciario:hover {
    background-color: #1B5E20;
    /* Dark Green */
    color: #fff !important;
}

.area-familia:hover {
    background-color: #3a270d;
    /* Dark Bronze/Brown */
    color: #fff !important;
}

.area-patrimonial:hover {
    background-color: #7f1d1d;
    /* Dark Red (Marsala) */
    color: #fff !important;
}

/* CTA "ACESSE" Animation */
.area-cta {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
    color: #fff;
    /* Always white on hover */
    display: block;
    margin-top: auto;
    /* Push to bottom */
}

.area-block:hover .area-cta {
    opacity: 1;
    transform: translateY(0);
}

.area-block h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.area-block p {
    font-size: 1rem;
    opacity: 0.7;
    margin-bottom: 2rem;
}

.area-block .arrow-icon {
    font-size: 2rem;
    align-self: flex-end;
}

/* SECTION: SÓCIOS */
.section-socios {
    background-color: #f5f5f5;
    padding: 6rem 0;
}

.socio-img-wrapper {
    filter: grayscale(100%);
    /* Preto e branco forçado */
    transition: filter 0.5s;
    margin-bottom: 1.5rem;
}

.socio-img-wrapper:hover {
    filter: grayscale(0%);
    /* Cor ao passar o mouse (opcional) ou mantém PB */
}

/* SECTION: FAQ Minimal */
.accordion-item {
    background: transparent;
    border: none;
    border-bottom: 1px solid #000;
    border-radius: 0 !important;
}

.accordion-button {
    background: transparent !important;
    color: #000;
    font-weight: 700;
    font-size: 1.2rem;
    padding: 2rem 0;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.accordion-button::after {
    filter: brightness(0);
    /* Seta preta */
}

.accordion-body {
    padding-left: 0;
    padding-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* FOOTER */
.footer-mw {
    background-color: #000;
    color: #fff;
    padding: 6rem 0 2rem 0;
    border-top: 10px solid #333;
}

.footer-mw h5 {
    color: #fff;
    margin-bottom: 2rem;
    font-size: 1.2rem;
    letter-spacing: 0.1em;
}

.footer-mw a {
    color: #999;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-mw a:hover {
    color: #fff;
}

/* Responsive fixes */
@media (max-width: 991px) {

    /* Changed from 768px to cover tablets too */
    body {
        overflow-x: hidden;
    }

    .hero-mw {
        padding-top: 40px;
        min-height: auto;
        padding-bottom: 60px;
    }

    .hero-mw h1 {
        font-size: 2.5rem;
        /* Smaller font for mobile */
    }

    .area-block {
        border-right: none;
        border-bottom: 1px solid #000;
        min-height: auto;
        /* Allow auto height */
    }

    .btn-noir,
    .btn-noir-outline {
        width: 100%;
        margin-bottom: 15px;
        display: block;
        text-align: center;
    }

    /* Force image to show on mobile if it has d-none class in HTML */
    .d-none.d-lg-block {
        display: block !important;
        margin-top: 3rem;
        text-align: center !important;
    }

    .hero-mw img {
        max-height: 400px !important;
        /* Limit height on mobile */
        width: 100%;
        object-fit: cover;
    }
}