:root {
    --sidebar-width: 280px;
    --primary-color: #1a1a1a;
    --secondary-color: #f4f4f4;
    --accent-color: #c5a059;
    /* Muted Gold */
    --text-main: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Manrope', sans-serif;
    color: var(--text-main);
    background-color: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* Layout Wrapper */
.layout-wrapper {
    display: flex;
    min-height: 100vh;
}

/* Sidebar */
.sidebar {
    width: var(--sidebar-width);
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    background-color: var(--primary-color);
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px 30px;
    z-index: 100;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-header .logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--white);
    display: block;
    margin-bottom: 5px;
}

.sidebar-header .logo .dot {
    color: var(--accent-color);
}

.tagline {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.5);
}

.sidebar-nav ul {
    list-style: none;
    margin-top: 20px;
}

.sidebar-nav li {
    margin-bottom: 5px;
}

.sidebar-nav a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    font-weight: 500;
    border-right: 3px solid transparent;
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
    color: var(--white);
    border-right-color: var(--accent-color);
}

.sidebar-nav i {
    width: 20px;
    text-align: center;
    font-size: 1.1rem;
}

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

.contact-info p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 5px;
}

.social-links {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.social-links a {
    color: var(--white);
    font-size: 1rem;
    opacity: 0.7;
}

.social-links a:hover {
    opacity: 1;
    color: var(--accent-color);
}

/* Sidebar Associations */
.sidebar-associations {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    font-size: 0.65rem;
    letter-spacing: 0.5px;
}

.sidebar-associations a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: var(--transition);
}

.sidebar-associations a:hover {
    color: var(--accent-color);
}

.sidebar-associations .separator {
    color: rgba(255, 255, 255, 0.2);
    margin: 0 8px;
}

/* Mobile Header */
.mobile-header {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background-color: var(--primary-color);
    padding: 0 20px;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
}

.mobile-header .logo {
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
}

.hamburger {
    cursor: pointer;
}

.hamburger .bar {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--white);
    margin: 6px 0;
}

/* Main Content */
.main-content {
    margin-left: var(--sidebar-width);
    width: calc(100% - var(--sidebar-width));
    background-color: var(--white);
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background-image: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?ixlib=rb-1.2.1&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.hero-container {
    position: relative;
    z-index: 2;
    padding: 0 8%;
    max-width: 900px;
}

.hero-subtitle {
    display: inline-block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    color: var(--accent-color);
    font-weight: 600;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 30px;
    line-height: 1.1;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--white);
    border: 1px solid var(--accent-color);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--accent-color);
}

.btn-text {
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-text:hover {
    gap: 15px;
    color: var(--accent-color);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 8%;
    display: flex;
    align-items: center;
    gap: 15px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    z-index: 2;
}

.hero-scroll-indicator .line {
    width: 60px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.3);
}

/* Stats Strip */
.stats-strip {
    display: flex;
    background-color: var(--primary-color);
    color: var(--white);
}

.stat-box {
    flex: 1;
    padding: 40px 20px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-box:last-child {
    border-right: none;
}

.stat-box .number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 5px;
}

.stat-box .label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.6);
}

/* General Section Styles */
.section-padding {
    padding: 100px 0;
}

.content-container {
    padding: 0 8%;
    max-width: 1400px;
    margin: 0 auto;
}

.bg-light {
    background-color: #f9f9f9;
}

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

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.flex-header {
    display: flex;
    justify-content: space-between;
    align-items: end;
}

.view-all {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    border-bottom: 1px solid var(--primary-color);
    padding-bottom: 2px;
}

/* Grid Areas */
.grid-areas {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.area-item {
    background-color: var(--white);
    padding: 40px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.area-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.area-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border-color: transparent;
}

.icon-box {
    font-size: 1.8rem;
    color: var(--accent-color);
    margin-bottom: 25px;
}

.area-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.area-item p {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.link-arrow {
    position: absolute;
    bottom: 40px;
    right: 40px;
    color: var(--primary-color);
    opacity: 0;
    transform: translateX(-10px);
    transition: var(--transition);
}

.area-link:hover .link-arrow {
    opacity: 1;
    transform: translateX(0);
}

.highlight-item {
    background-color: var(--primary-color);
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.highlight-item h3 {
    color: var(--white);
}

.highlight-item p {
    color: rgba(255, 255, 255, 0.7);
}

.btn-outline-dark {
    padding: 12px 25px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    margin-top: auto;
}

.btn-outline-dark:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

/* Magazine Layout */
.magazine-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
}

.main-article {
    position: relative;
}

.article-img {
    height: 400px;
    background-size: cover;
    background-position: center;
    margin-bottom: 25px;
    position: relative;
}

.category-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 5px 15px;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

.article-content .date {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.article-content h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.article-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    max-width: 90%;
}

.read-more {
    font-weight: 600;
    color: var(--primary-color);
    border-bottom: 2px solid var(--accent-color);
}

.side-articles {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.side-article {
    display: flex;
    gap: 20px;
    align-items: center;
}

.side-img {
    width: 120px;
    height: 120px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.category-tag-sm {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--accent-color);
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
}

.side-content h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.read-more-sm {
    font-size: 0.85rem;
    color: var(--text-light);
    text-decoration: underline;
}

/* Pre-Footer CTA */
.pre-footer-cta {
    background-color: #111;
    color: var(--white);
    text-align: center;
    padding: 80px 0;
}

.pre-footer-cta h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--white);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.3;
}

.pre-footer-cta p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

/* Footer */
.main-footer {
    background-color: #0a0a0a;
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 60px;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-cta h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--white);
}

.footer-cta p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 30px;
}

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

.footer-links h4 {
    font-size: 1rem;
    margin-bottom: 20px;
    color: var(--white);
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    white-space: nowrap;
}

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

/* Coluna de Áreas no Footer */
.footer-links .col {
    min-width: 150px;
}

.footer-links .col-atuacao {
    min-width: 500px;
}

.footer-links .col-atuacao h4 {
    text-align: center;
}

.two-columns {
    display: flex;
    gap: 80px;
    margin-top: 10px;
}

.two-columns ul {
    flex: 1;
    min-width: 200px;
}

.two-columns li {
    white-space: nowrap;
}

.two-columns a {
    display: inline-block;
    white-space: nowrap;
}

.areas-list li {
    margin-bottom: 18px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.areas-list a {
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

.area-desc {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.3;
    display: block;
}

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

/* Responsive */
@media (max-width: 1024px) {
    .sidebar {
        display: none;
    }

    .mobile-header {
        display: flex;
    }

    .main-content {
        margin-left: 0;
        width: 100%;
        padding-top: 70px;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .magazine-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-container {
        padding: 0 20px;
    }

    .content-container {
        padding: 0 20px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .stats-strip {
        flex-wrap: wrap;
    }

    .stat-box {
        flex: 1 1 50%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-content {
        flex-direction: column;
    }
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 4rem auto 0;
    padding-left: 2rem;
}

.timeline-line {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: var(--border-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 2rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -4px;
    top: 6px;
    width: 9px;
    height: 9px;
    background-color: var(--white);
    border: 1px solid var(--text-main);
    border-radius: 50%;
    z-index: 1;
}

.timeline-item.highlight .timeline-marker {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

.timeline-year {
    display: block;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--text-light);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .timeline {
        padding-left: 1rem;
    }

    .timeline-line {
        left: 0;
    }

    .timeline-item {
        padding-left: 1.5rem;
    }

    .timeline-marker {
        left: -4px;
    }
}

/* História Texto (Nossa História) */
.historia-texto {
    max-width: 900px;
    margin: 0 auto;
}

.historia-texto p {
    color: var(--text-main);
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    text-align: left;
}

.historia-texto p strong {
    color: var(--accent-color);
    font-weight: 700;
}

/* Associações */
.associacoes {
    margin-top: 80px;
    padding-top: 80px;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.associacoes h3 {
    font-size: 2rem;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.logos-associacoes {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
    align-items: flex-start;
}

.associacao-item {
    text-align: center;
    padding: 40px 30px;
    background-color: #f9f9f9;
    border-radius: 12px;
    min-width: 280px;
    max-width: 320px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.associacao-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

.logo-wrapper {
    width: 180px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    padding: 15px;
    background-color: white;
    border-radius: 8px;
    position: relative;
}

.logo-wrapper::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 1px;
    background-color: var(--accent-color);
}

.logo-associacao {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.85;
    transition: var(--transition);
}

.associacao-item:hover .logo-associacao {
    filter: grayscale(0%);
    opacity: 1;
}

.associacao-nome {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 6px;
    margin-top: 20px;
    opacity: 0.7;
}

.associacao-descricao {
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.4;
    opacity: 0.6;
}

/* Footer Associações - Faixa Full Width */
.footer-associacoes {
    margin: 60px calc(-50vw + 50%) 0 calc(-50vw + 50%);
    padding: 50px calc(50vw - 50%);
    background-color: rgba(255, 255, 255, 0.03);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-associacoes-title {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 30px;
    font-weight: 600;
}

.footer-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.footer-logo {
    max-width: 150px;
    max-height: 80px;
    width: auto;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.7;
    transition: var(--transition);
    object-fit: contain;
}

.footer-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* Footer Badge Links */
.footer-badge-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* Footer Badges (Texto) */
.footer-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 25px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    min-width: 200px;
    transition: var(--transition);
}

.footer-badge:hover {
    border-color: rgba(197, 160, 89, 0.5);
    background-color: rgba(197, 160, 89, 0.05);
    transform: translateY(-3px);
}

.badge-sigla {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.badge-nome {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
    max-width: 180px;
}

.footer-badge:hover .badge-nome {
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
    .historia-texto p {
        text-align: left;
        font-size: 1rem;
    }

    .logos-associacoes {
        flex-direction: column;
        gap: 40px;
    }

    .associacao-item {
        min-width: 100%;
        max-width: 100%;
    }

    .footer-logos {
        flex-direction: column;
        gap: 30px;
    }

    .footer-logo {
        max-width: 120px;
    }
}

/* Print Styles */
@media print {

    /* Page Setup */
    @page {
        margin: 0.5cm;
        size: auto;
        /* Use browser default or A4 */
    }

    /* Page Breaks for Menu Sections */
    #atuacao,
    #quem-somos,
    #insights,
    #contato {
        page-break-before: always;
        break-before: page;
        padding-top: 40px;
    }

    /* Force Background Colors */
    body {
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
        background-color: #fff !important;
    }

    /* Sidebar Visibility & Positioning */
    .sidebar {
        display: block !important;
        position: fixed !important;
        /* Repeats on every page in modern browsers */
        left: 0;
        top: 0;
        bottom: 0;
        height: 100%;
        width: 260px !important;
        background-color: #1a1a1a !important;
        color: #fff !important;
        z-index: 9999;
        padding-top: 20px;
    }

    /* Ensure Sidebar Text is Visible */
    .sidebar a,
    .sidebar p,
    .sidebar .logo {
        color: #fff !important;
        text-shadow: none !important;
    }

    .sidebar-nav ul li a {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    /* Hide Mobile Header */
    .mobile-header {
        display: none !important;
    }

    /* Main Content Layout */
    .main-content {
        margin-left: 280px !important;
        /* Clear the sidebar */
        width: calc(100% - 280px) !important;
        padding: 0 !important;
        display: block !important;
    }

    /* Typography & Colors */
    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        color: #000 !important;
        page-break-after: avoid;
    }

    p,
    span,
    div {
        color: #000;
    }

    /* Exception for white text on dark backgrounds (like Hero) */
    .hero h1,
    .hero p,
    .hero-subtitle,
    .btn-primary,
    .btn-text {
        color: #fff !important;
        /* Keep hero text white if background prints */
    }

    .hero p {
        color: rgba(255, 255, 255, 0.9) !important;
    }

    /* Hero Section */
    .hero {
        height: auto !important;
        min-height: 400px;
        page-break-inside: avoid;
        background-size: cover !important;
    }

    /* Timeline */
    .timeline-line {
        background-color: #ccc !important;
        -webkit-print-color-adjust: exact;
    }

    .timeline-marker {
        border: 2px solid #000 !important;
    }

    /* Grid Layouts - Force Desktop View */
    .grid-areas {
        display: grid !important;
        grid-template-columns: 1fr 1fr 1fr !important;
        /* Force 3 columns */
        gap: 20px !important;
    }

    .magazine-layout {
        display: grid !important;
        grid-template-columns: 1.5fr 1fr !important;
        /* Force side-by-side */
        gap: 30px !important;
    }

    .stats-strip {
        display: flex !important;
        flex-wrap: nowrap !important;
        /* Prevent wrapping */
    }

    .stat-box {
        flex: 1 !important;
        border-bottom: none !important;
        border-right: 1px solid rgba(0, 0, 0, 0.1) !important;
    }

    .area-item,
    .stat-box,
    .main-article,
    .side-articles {
        page-break-inside: avoid;
    }

    /* Hide Scroll Indicators & Interactive fluff */
    .hero-scroll-indicator {
        display: none !important;
    }

    /* Links */
    a {
        text-decoration: none !important;
    }

    /* Ensure images print */
    img {
        max-width: 100% !important;
    }
}

/* ===========================================================
   SERVICE / PRACTICE AREA PAGES
   Styles for area.php template (service hero, benefits, CTA)
   =========================================================== */

.service-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none"/><path d="M0 0L100 100M100 0L0 100" stroke="rgba(181,153,91,0.05)" stroke-width="1"/></svg>');
    opacity: 0.3;
}

.service-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
}

.service-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.9rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.6);
}

.service-breadcrumb a {
    color: var(--accent-color);
    text-decoration: none;
}

.service-breadcrumb a:hover {
    text-decoration: underline;
}

.service-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    line-height: 1.2;
}

.service-hero .lead {
    font-size: 1.3rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
}

.service-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 5px;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.benefit-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.benefit-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color), #c9a857);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.benefit-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-main);
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.cta-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 80px 0;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(181, 153, 91, 0.1), transparent);
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.3;
}

.cta-section p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline-light {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

@media (max-width: 768px) {
    .service-hero h1 {
        font-size: 2.5rem;
    }

    .service-stats {
        gap: 30px;
    }

    .process-step {
        flex-direction: column;
        gap: 20px;
    }

    .process-step::after {
        left: 30px;
        top: 60px;
    }
}

/* ===== Process Timeline (Metodologia) ===== */
.process-timeline {
    position: relative;
    margin-top: 60px;
}

.process-step {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color), #c9a857);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    position: relative;
    z-index: 2;
}

.process-step::after {
    content: '';
    position: absolute;
    left: 30px;
    top: 60px;
    bottom: -50px;
    width: 2px;
    background: linear-gradient(180deg, var(--accent-color), rgba(181, 153, 91, 0.2));
}

.process-step:last-child::after {
    display: none;
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--text-main);
}

.step-content p {
    color: var(--text-light);
    line-height: 1.7;
}

/* ===== Expertise List (O Que Fazemos) ===== */
.expertise-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.expertise-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: #fafafa;
    border-radius: 6px;
    border-left: 3px solid var(--accent-color);
}

.expertise-item i {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-top: 3px;
}

.expertise-item strong {
    display: block;
    color: var(--text-main);
    margin-bottom: 5px;
}

.expertise-item span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ===== CTA Content Wrapper ===== */
.cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}