/* base.css */
/* ===================================
   SEMPRE LOGADO - BASE CSS
   ================================= */

/* Esconder badge do reCAPTCHA (mencionado nos termos via texto no formulário) */
.grecaptcha-badge { visibility: hidden !important; }

/* Esconder ícone flutuante do Cookiebot */
#CookiebotWidget { display: none !important; }

/* CSS Reset e Normalize */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Cores principais */
    --color-primary: #007acc;
    --color-primary-dark: #005a99;
    --color-secondary: #D87300;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-background: #ffffff;
    --color-background-alt: #f9fafb;
    --color-border: #e0e0e0;
    
    /* Tipografia */
    --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-heading: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    
    /* Espaçamentos */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 40px;
    --spacing-xl: 60px;
    --spacing-xxl: 80px;
    
    /* Containers */
    --container-width: 1200px;
    --container-padding: 20px;
    
    /* Transições */
    --transition: all 0.3s ease;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

/* Tipografia */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--color-text);
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: 1rem;
}

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

a:hover {
    color: var(--color-primary-dark);
}

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

/* Botões */
.btn {
    display: inline-block;
    padding: 12px 32px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border: 2px solid transparent;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--color-primary);
    color: #ffffff;
    border-color: var(--color-primary);
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    color: #ffffff;
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn-secondary:hover {
    background-color: var(--color-primary);
    color: #ffffff;
}

.btn-cta {
    background-color: #ffffff;
    color: var(--color-primary);
    border-color: #ffffff;
    font-size: 1.125rem;
    padding: 16px 40px;
}

.btn-cta:hover {
    background-color: var(--color-background-alt);
    color: var(--color-primary-dark);
}

.btn-contact {
    background-color: var(--color-primary);
    color: #ffffff;
    padding: 10px 24px;
    border-radius: 4px;
}

.btn-contact:hover {
    background-color: var(--color-primary-dark);
    color: #ffffff;
}

/* Utilitários */
.spacer {
    width: 100%;
}

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

/* Responsividade Base */
@media (max-width: 768px) {
    :root {
        --container-padding: 16px;
        --spacing-lg: 32px;
        --spacing-xl: 48px;
        --spacing-xxl: 60px;
    }
    
    h1 {
        font-size: 2.25rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    .spacer[style*="60px"] {
        height: 40px !important;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.875rem;
    }
    
    h2 {
        font-size: 1.625rem;
    }
    
    h3 {
        font-size: 1.25rem;
    }
}

/* Accessibility utility */
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* header.css */
/* ===================================
   SEMPRE LOGADO - HEADER CSS
   Estilo: Moderno Minimalista
   ================================= */

/* ── WRAPPER ── */
.header-wrapper {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.07);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: box-shadow 0.3s ease;
}

/* ── HEADER ── */
.header {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 48px;
    height: 100px;
    display: flex;
    align-items: center;
    position: relative;
}

/* ── LOGO ── */
.header__heading {
    margin: 0;
    padding: 0;
    flex-shrink: 0;
    position: absolute;
    left: 48px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.header__heading-link {
    display: inline-block;
    line-height: 0;
}

.header__heading-logo {
    height: 90px;
    width: auto;
    transition: opacity 0.2s ease;
}

.header__heading-link:hover .header__heading-logo {
    opacity: 0.85;
}

/* ── NAVIGATION ── */
.header__inline-menu {
    width: 100%;
    padding: 0;
    border-top: none;
}

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

.list-menu--inline {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
}

.list-menu__item {
    margin: 0;
    opacity: 0;
    transform: translateY(-6px);
    animation: navFadeIn 0.4s ease forwards;
}

.list-menu__item:nth-child(1) { animation-delay: 0.10s; }
.list-menu__item:nth-child(2) { animation-delay: 0.17s; }
.list-menu__item:nth-child(3) { animation-delay: 0.24s; }
.list-menu__item:nth-child(4) { animation-delay: 0.31s; }
.list-menu__item:nth-child(5) { animation-delay: 0.38s; }
.list-menu__item:nth-child(6) { animation-delay: 0.45s; }

@keyframes navFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── LINKS ── */
.list-menu__item--link {
    display: block;
    padding: 10px 18px;
    color: #1a1a1a;
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.01em;
    position: relative;
    transition: color 0.25s ease;
}

/* Underline que cresce do centro */
.list-menu__item--link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1.5px;
    background: #007acc;
    border-radius: 2px;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.list-menu__item--link:hover {
    color: #007acc;
    background-color: transparent;
}

.list-menu__item--link:hover::after {
    width: calc(100% - 36px);
}

/* ── DROPDOWN CHEVRON ── */
.dropdown-chevron {
    display: inline-block;
    vertical-align: middle;
    margin-left: 3px;
    transition: transform 0.25s ease;
}

.list-menu__item--has-dropdown:hover .dropdown-chevron {
    transform: rotate(180deg);
}

/* ── DROPDOWN MENU ── */
.list-menu__item--has-dropdown {
    position: relative;
}

/* Ponte invisível entre o link e o dropdown para não perder o hover */
.list-menu__item--has-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 14px;
    background: transparent;
    display: none;
}

.list-menu__item--has-dropdown:hover::after {
    display: block;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10), 0 1px 0 rgba(0, 0, 0, 0.04);
    min-width: 210px;
    list-style: none;
    padding: 8px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 100;
}

.list-menu__item--has-dropdown:hover .dropdown-menu {
    opacity: 1;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    color: #1a1a1a;
    text-decoration: none;
    transition: background 0.15s ease, color 0.15s ease;
}

.dropdown-menu li a:hover {
    background: #f0f7ff;
    color: #007acc;
}

.dropdown-logo {
    height: 20px;
    width: auto;
    object-fit: contain;
}

/* ── MOBILE TOGGLE – ESCONDIDO EM DESKTOP ── */
.mobile-menu-toggle {
    display: none;
}

/* ===================================
   RESPONSIVIDADE
   =================================== */

@media (max-width: 1100px) {
    .list-menu__item--link {
        padding: 10px 13px;
        font-size: 0.875rem;
    }
}

@media (max-width: 768px) {
    .header {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        padding: 0 20px;
        height: 70px;
    }

    .header__heading {
        position: static;
        transform: none;
        top: auto;
        left: auto;
    }

    .header__heading-logo {
        height: 60px;
    }

    /* BOTÃO HAMBÚRGUER */
    .mobile-menu-toggle {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 10px;
        position: absolute;
        left: 20px;
        top: 50%;
        transform: translateY(-50%);
        width: 40px;
        height: 40px;
        z-index: 1001;
    }

    .mobile-menu-toggle span {
        display: block !important;
        width: 25px !important;
        height: 3px !important;
        background-color: #007acc !important;
        border-radius: 2px;
        transition: all 0.3s ease;
    }

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

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

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

    /* MENU MOBILE */
    .header__inline-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.10);
        z-index: 999;
    }

    .header__inline-menu.active {
        display: block;
    }

    .list-menu--inline {
        flex-direction: column;
        align-items: stretch;
    }

    /* Reset animações no mobile */
    .list-menu__item {
        opacity: 1;
        transform: none;
        animation: none;
    }

    .list-menu__item--link {
        padding: 15px 20px;
        border-bottom: 1px solid #eeeeee;
        font-size: 0.9375rem;
    }

    .list-menu__item--link::after {
        display: none;
    }

    /* Dropdown mobile */
    .dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        border-radius: 0;
        opacity: 1;
        pointer-events: all;
        display: none;
        padding: 0;
        border-top: 1px solid #eeeeee;
    }

    .list-menu__item--has-dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-menu li a {
        padding: 12px 32px;
        border-radius: 0;
        border-bottom: 1px solid #f5f5f5;
        font-size: 0.875rem;
        color: #444;
    }
}

@media (max-width: 480px) {
    .header__heading-logo {
        height: 52px;
    }

    .mobile-menu-toggle {
        left: 15px;
    }
}

/* Garantir visibilidade quando animações são desativadas (prefers-reduced-motion) */
@media (prefers-reduced-motion: reduce) {
    .list-menu__item {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
    }
}

/* ── DROPDOWN CLICK-BASED (páginas internas) ── */
.list-menu__item--dropdown-toggle { display: flex; align-items: center; gap: 5px; cursor: pointer; user-select: none; }
.list-menu__item--has-dropdown.is-open .dropdown-chevron { transform: rotate(180deg); }
.dropdown-menu {
    display: none; position: absolute; top: calc(100% + 10px); left: 50%;
    transform: translateX(-50%); background-color: #fff; border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12); min-width: 180px;
    list-style: none; margin: 0; padding: 8px 0; z-index: 1000;
    border: 1px solid rgba(0,0,0,0.07);
}
.dropdown-menu::before {
    content: ''; position: absolute; top: -6px; left: 50%; transform: translateX(-50%);
    border-left: 6px solid transparent; border-right: 6px solid transparent;
    border-bottom: 6px solid #fff; filter: drop-shadow(0 -2px 2px rgba(0,0,0,0.06));
}
.list-menu__item--has-dropdown.is-open .dropdown-menu { display: block; }
.dropdown-menu__link {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 18px; color: #333; text-decoration: none;
    font-size: 0.9rem; font-weight: 500;
    transition: background-color 0.15s ease, color 0.15s ease;
    white-space: nowrap;
}
.dropdown-menu__link:hover { background-color: #f0f7ff; color: #007acc; }
.dropdown-menu__link.active { color: #007acc; font-weight: 600; background-color: #f0f7ff; }
.dropdown-logo {
    width: 26px; height: 26px; object-fit: contain;
    border-radius: 5px; flex-shrink: 0; background: #f0f4f8;
}
.dropdown-logo-placeholder {
    width: 26px; height: 26px; border-radius: 5px; flex-shrink: 0;
    background: linear-gradient(135deg, #0066cc, #003d99);
    display: flex; align-items: center; justify-content: center;
    font-size: 11px; font-weight: 700; color: #fff; letter-spacing: -.5px;
}
@media (max-width: 992px) {
    .dropdown-menu {
        position: static; transform: none !important; box-shadow: none; border: none;
        border-left: 3px solid #007acc; border-radius: 0;
        background-color: rgba(0,122,204,0.05); padding: 4px 0; margin: 4px 0 4px 12px;
    }
    .dropdown-menu::before { display: none; }
    .dropdown-menu__link { padding: 8px 14px; font-size: 0.95rem; }
}

/* components.css */
/* ===================================
   SEMPRE LOGADO - COMPONENTS CSS
   Header, Footer, Navigation
   ================================= */

/* ===================================
   HEADER
   ================================= */
.site-header {
    background-color: #ffffff;
    box-shadow: none;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0;
}

.header-wrapper {
    max-width: 100%;
    margin: 0;
    padding: 0;
    display: block;
}

/* Logo Section */
.header-logo {
    text-align: center;
    padding: 30px 0;
    background-color: #ffffff;
}

.header-logo a {
    display: inline-block;
}

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

/* Navigation */
.header-nav {
    background-color: #ffffff;
    border-bottom: none;
    padding: 0;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 0;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.nav-list li {
    margin: 0;
}

.nav-list a {
    display: block;
    padding: 18px 30px;
    color: #333333;
    font-weight: 500;
    font-size: 1.0625rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.nav-list a:hover {
    color: #007acc;
    background-color: #f5f5f5;
}

.nav-list a.btn-contact {
    background-color: transparent;
    color: #333333;
    padding: 18px 30px;
    border-radius: 0;
}

.nav-list a.btn-contact:hover {
    background-color: #f5f5f5;
    color: #007acc;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--color-text);
    transition: var(--transition);
}

/* ===================================
   FOOTER
   ================================= */
.site-footer {
    background-color: #000000;
    color: #ffffff;
    padding: var(--spacing-xl) 0 var(--spacing-md);
    margin-top: var(--spacing-xxl);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-column h4 {
    color: #ffffff;
    font-size: 1.125rem;
    margin-bottom: var(--spacing-sm);
}

.footer-column p {
    color: #cccccc;
    font-size: 0.9375rem;
    line-height: 1.8;
}

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

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul li a {
    color: #cccccc;
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: var(--color-primary);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--color-primary);
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: var(--spacing-md);
    text-align: center;
}

.footer-bottom p {
    color: #cccccc;
    font-size: 0.875rem;
}

.footer-bottom a {
    color: #cccccc;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--color-primary);
    text-decoration: underline;
}

/* ===================================
   RESPONSIVIDADE - HEADER & FOOTER
   ================================= */
@media (max-width: 992px) {
    .nav-list {
        gap: 0;
    }
    
    .nav-list a {
        font-size: 0.875rem;
        padding: 15px 20px;
    }
}

@media (max-width: 768px) {
    /* Header Mobile */
    .mobile-menu-toggle {
        display: flex;
        position: absolute;
        right: 20px;
        top: 35px;
        z-index: 1001;
    }
    
    .header-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background-color: #ffffff;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 999;
        border-bottom: none;
    }
    
    .header-nav.active {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        padding: var(--spacing-xl) var(--spacing-lg);
        gap: 0;
        align-items: flex-start;
    }
    
    .nav-list a {
        font-size: 1.125rem;
        width: 100%;
        padding: 15px 0;
        border-bottom: 1px solid #e0e0e0;
    }
    
    .nav-list a:hover {
        background-color: transparent;
    }
    
    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
}

/* ===================================
   SCROLL ANIMATIONS
   ================================= */
.service-item,
.stat-item,
.category-card,
.servico-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.service-item.fade-in,
.stat-item.fade-in,
.category-card.fade-in,
.servico-card.fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Menu Hamburger Animation */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translateY(10px);
}

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

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-10px);
}

/* ===================================
   BOTÕES FLUTUANTES — WhatsApp + Topo
   =================================== */
#btn-whatsapp {
    position: fixed; bottom: 88px; right: 30px; width: 56px; height: 56px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff; border: none; border-radius: 50%; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transform: translateY(20px) scale(0.8);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 998; box-shadow: 0 4px 15px rgba(37,211,102,0.4), 0 2px 8px rgba(0,0,0,0.15);
    text-decoration: none;
}
#btn-whatsapp.visivel { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
#btn-whatsapp:hover { transform: translateY(-4px) scale(1.1); box-shadow: 0 8px 25px rgba(37,211,102,0.5), 0 4px 12px rgba(0,0,0,0.2); }
#btn-whatsapp::before {
    content: ''; position: absolute; inset: 0; border-radius: 50%;
    background: rgba(37,211,102,0.45); transform: scale(1); opacity: 0; pointer-events: none;
}
#btn-whatsapp.visivel::before { animation: whatsappRipple 2s ease-out infinite; }
@keyframes whatsappRipple { 0% { transform: scale(1); opacity: 0.6; } 100% { transform: scale(1.9); opacity: 0; } }

.whatsapp-tooltip {
    position: absolute; right: calc(100% + 12px); top: 50%; transform: translateY(-50%);
    background: #ffffff; color: #128C7E; padding: 8px 14px; border-radius: 8px;
    font-size: 0.875rem; font-weight: 600; white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15); opacity: 0; visibility: hidden; transition: all 0.3s ease;
}
.whatsapp-tooltip::before {
    content: ''; position: absolute; left: 100%; top: 50%; transform: translateY(-50%);
    border: 6px solid transparent; border-left-color: #ffffff;
}
#btn-whatsapp:hover .whatsapp-tooltip { opacity: 1; visibility: visible; }
@media (max-width: 768px) { .whatsapp-tooltip { display: none; } }

#btn-topo {
    position: fixed; bottom: 30px; right: 30px; width: 42px; height: 42px;
    background-color: #007acc; color: #fff; border: none; border-radius: 8px;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transform: translateY(20px);
    transition: all 0.3s ease; z-index: 999; box-shadow: 0 2px 12px rgba(0,122,204,0.25);
}
#btn-topo.visivel { opacity: 0.9; visibility: visible; transform: translateY(0); }
#btn-topo:hover { opacity: 1; background-color: #005fa3; transform: translateY(-2px); }

@media (max-width: 768px) {
    #btn-whatsapp { bottom: 84px; right: 20px; width: 52px; height: 52px; }
    #btn-topo { bottom: 20px; right: 20px; }
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 998;
}

.mobile-menu-overlay.active {
    display: block;
}

/* sections.css */
/* ===================================
   SEMPRE LOGADO - SECTIONS CSS
   Todas as sections da homepage
   ================================= */

/* ===================================
   HERO BANNER
   ================================= */
.hero-banner {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    padding: 40px;
    max-width: 1200px;
    width: 100%;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffffff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 0;
    color: #ffffff;
    font-weight: 300;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

/* ===================================
   QUOTE SECTION
   ================================= */
.quote-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-background-alt);
}

.quote-wrapper {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    max-width: 900px;
    margin: 0 auto;
}

.quote-bar {
    width: 6px;
    height: 80px;
    background-color: var(--color-primary);
    flex-shrink: 0;
}

.quote-text {
    font-size: 2rem;
    font-style: italic;
    font-weight: 400;
    line-height: 1.4;
    color: var(--color-text);
    margin: 0;
}

/* ===================================
   IMAGE WITH TEXT
   ================================= */
.image-with-text {
    padding: var(--spacing-xl) 0;
}

.image-text-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.image-text-image {
    background-color: #f0f4f8;
}

.image-text-image img {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    display: block;
}

.image-text-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.image-text-content .btn {
    margin-top: 1rem;
}

/* ===================================
   ASSISTÊNCIA & CONSULTORIA
   ================================= */
.assistencia-consultoria {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-background);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-title {
    font-size: 2.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background-color: var(--color-primary);
}

.section-subtext {
    font-size: 1.125rem;
    color: var(--color-text-light);
    max-width: 800px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.service-item {
    text-align: center;
    padding: var(--spacing-lg);
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 122, 204, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    border-radius: 50%;
    color: #ffffff;
}

.service-item h3 {
    font-size: 1.375rem;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.service-item p {
    font-size: 1rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* ===================================
   ESTATÍSTICAS RÁPIDAS
   ================================= */
.estatisticas-rapidas {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: #ffffff;
    text-align: center;
}

.stats-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.decorative-line {
    width: 100px;
    height: 4px;
    background-color: #ffffff;
    margin: 0 auto 3rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    padding: var(--spacing-lg);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    white-space: nowrap;
}

.stat-description {
    font-size: 1.125rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===================================
   SERVICE CATEGORIES
   ================================= */
.service-categories {
    padding: var(--spacing-xxl) 0;
    background-color: #f0f4f8 !important;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.category-card {
    background-color: #ffffff;
    padding: var(--spacing-xl);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 122, 204, 0.2);
}

.category-icon {
    width: 80px;
    height: 80px;
    margin-bottom: var(--spacing-md);
}

.category-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.category-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.category-card p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

.category-link {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 1.0625rem;
    transition: var(--transition);
}

.category-link:hover {
    color: var(--color-primary-dark);
}

/* ===================================
   SERVIÇOS SECTION
   ================================= */
.servicos-section {
    padding: var(--spacing-xxl) 0;
    background-color: #ffffff;
}

.servicos-title {
    font-size: 3.25rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--spacing-xl);
    color: var(--color-primary);
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.servico-card {
    padding: var(--spacing-lg);
    background-color: var(--color-background-alt);
    border-radius: 8px;
    border-left: 4px solid var(--color-primary);
    transition: var(--transition);
}

.servico-card:hover {
    border-left-width: 8px;
    box-shadow: 0 4px 16px rgba(0, 122, 204, 0.15);
    transform: translateX(4px);
}

.servico-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--color-text);
}

.servico-card p {
    font-size: 1rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

.servicos-cta {
    text-align: center;
    margin-top: var(--spacing-xl);
}

/* ===================================
   CALL TO ACTION
   ================================= */
.cta-section {
    padding: 60px 20px;
    background: #f0f4f8 !important;
    background-color: #f0f4f8 !important;
    background-image: none !important;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 2rem;
    font-weight: 700;
}

/* ===================================
   RESPONSIVIDADE - SECTIONS
   ================================= */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .section-title {
        font-size: 2.25rem;
    }
    
    .servicos-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-banner {
        height: 100vh;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .quote-text {
        font-size: 1.5rem;
    }
    
    .quote-bar {
        height: 60px;
    }
    
    .image-text-wrapper {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .section-title {
        font-size: 1.875rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .stat-number {
        font-size: 2.75rem;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .servicos-title {
        font-size: 2rem;
    }
    
    .servicos-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 1.875rem;
    }
}

@media (max-width: 480px) {
    .hero-banner {
        min-height: 400px;
    }
    
    .hero-title {
        font-size: 1.875rem;
    }
    
    .quote-text {
        font-size: 1.25rem;
    }
    
    .section-title {
        font-size: 1.625rem;
    }
    
    .stat-number {
        font-size: 2.25rem;
    }
}

/* pages.css */
/* ===================================
   SEMPRE LOGADO - PAGES CSS
   Estilos para páginas internas
   ================================= */

/* ===================================
   PAGE HEADER
   ================================= */
.page-header {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: #ffffff;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
}

/* ===================================
   CONTACT PAGE
   ================================= */
.contact-section {
    padding: var(--spacing-xxl) 0;
    background-color: var(--color-background-alt);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--spacing-xl);
}

/* Formulário de Contacto */
.contact-form-container {
    background-color: #ffffff;
    padding: var(--spacing-xl);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.contact-form-container h2 {
    font-size: 2rem;
    margin-bottom: var(--spacing-lg);
    color: var(--color-text);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 1rem;
    font-family: var(--font-body);
    border: 2px solid var(--color-border);
    border-radius: 6px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(0, 122, 204, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn {
    margin-top: var(--spacing-sm);
    width: 100%;
    font-size: 1.0625rem;
    padding: 14px 32px;
}

/* Informações de Contacto */
.contact-info {
    background-color: #ffffff;
    padding: var(--spacing-xl);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    align-self: start;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: var(--spacing-lg);
    color: var(--color-text);
}

.info-item {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.info-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    border-radius: 50%;
    color: #ffffff;
}

.info-content h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.info-content p {
    font-size: 1rem;
    color: var(--color-text-light);
    line-height: 1.6;
    margin: 0;
}

.info-content a {
    color: var(--color-primary);
    text-decoration: none;
}

.info-content a:hover {
    text-decoration: underline;
}

/* Social Links na página de contacto */
.social-links-contact {
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--color-border);
}

.social-links-contact h3 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--color-background-alt);
    color: var(--color-primary);
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--color-primary);
    color: #ffffff;
    transform: translateY(-4px);
}

/* Map Section */
.map-section {
    padding: var(--spacing-xl) 0;
    background-color: #ffffff;
}

.map-section h2 {
    font-size: 2rem;
    margin-bottom: var(--spacing-lg);
    text-align: center;
    color: var(--color-text);
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background-color: var(--color-background-alt);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-light);
    font-size: 1.125rem;
}

/* ===================================
   SERVICES PAGE
   ================================= */
.services-list {
    padding: var(--spacing-xxl) 0;
    background-color: #ffffff;
}

.service-detail {
    background-color: var(--color-background-alt);
    padding: var(--spacing-xl);
    border-radius: 12px;
    margin-bottom: var(--spacing-lg);
    border-left: 6px solid var(--color-primary);
}

.service-detail h3 {
    font-size: 1.75rem;
    margin-bottom: var(--spacing-md);
    color: var(--color-text);
}

.service-detail p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-sm);
}

.service-detail ul {
    list-style: none;
    padding-left: 0;
}

.service-detail ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 0.75rem;
    color: var(--color-text-light);
}

.service-detail ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 700;
    font-size: 1.25rem;
}

/* ===================================
   ABOUT / HISTORY PAGE
   ================================= */
.timeline-section {
    padding: var(--spacing-xxl) 0;
    background-color: #ffffff;
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background-color: var(--color-primary);
}

.timeline-item {
    position: relative;
    margin-bottom: var(--spacing-xl);
    display: flex;
    justify-content: space-between;
    gap: var(--spacing-lg);
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-content {
    flex: 1;
    background-color: var(--color-background-alt);
    padding: var(--spacing-lg);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.timeline-date {
    flex: 0 0 120px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    text-align: center;
    padding-top: var(--spacing-md);
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.timeline-content p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--color-text-light);
}

/* ===================================
   RESPONSIVIDADE - PAGES
   ================================= */
@media (max-width: 992px) {
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: var(--spacing-xl) 0;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header p {
        font-size: 1.0625rem;
    }
    
    .contact-form-container,
    .contact-info {
        padding: var(--spacing-lg);
    }
    
    .contact-form-container h2,
    .contact-info h2 {
        font-size: 1.75rem;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        flex-direction: column !important;
        padding-left: 50px;
    }
    
    .timeline-date {
        position: absolute;
        left: 0;
        top: 0;
        font-size: 1.25rem;
        text-align: left;
    }
    
    .timeline-content {
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 1.75rem;
    }
    
    .contact-form-container,
    .contact-info {
        padding: var(--spacing-md);
    }
    
    .map-placeholder {
        height: 300px;
    }
}

/* footer.css */
/* ===== FOOTER CUSTOMIZADO ===== */
.footer-customizado {
    padding: 60px 0 40px;
    background-color: #000000;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ===== FOOTER TOP ===== */
.footer-top {
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 32px;
}

.footer-top-item {
    text-align: center;
}

/* ===== LOGO ===== */
.footer-logo {
    display: block;
    width: 100%;
    max-width: 150px;
    margin: 0 auto 20px;
}

.footer-logo img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* ===== TEXTO DE CONTACTO ===== */
.footer-text {
    margin-top: 0;
    width: 100%;
}

.footer-text p {
    margin: 0;
    padding: 8px 0;
    font-size: 14px;
    color: #ffffff;
    line-height: 1.6;
}

.footer-text a {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.25s ease;
}

.footer-text a:hover {
    opacity: 0.7;
    text-decoration: underline;
}

/* ===== LISTAS ===== */
.footer-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

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

.footer-list li a {
    font-size: 14px;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.25s ease;
    position: relative;
    display: inline-block;
    padding-bottom: 2px;
}

.footer-list li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #007acc;
    transition: width 0.3s ease;
}

.footer-list li a:hover {
    color: #007acc;
}

.footer-list li a:hover::after {
    width: 100%;
}

/* ===== TÍTULOS ===== */
.footer-list-title {
    margin: 0 0 16px 0;
    font-size: 16px;
    color: #ffffff;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
}

/* ===== BLOCO DE TEXTO ===== */
.footer-block-text {
    font-size: 14px;
    color: #ffffff;
    line-height: 1.8;
}

.footer-block-text p {
    margin: 0 0 8px 0;
}

.footer-block-text strong {
    font-weight: 600;
}

/* ===== REDES SOCIAIS ===== */
.footer-socials-text {
    margin-bottom: 20px;
    font-size: 16px;
    color: #ffffff;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
}

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

.footer-social {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-social svg {
    width: 24px;
    height: 24px;
    display: block;
    transition: opacity 0.25s ease;
}

.footer-social svg:hover {
    opacity: 0.7;
}

.footer-social svg path {
    fill: #ffffff;
}

/* ===== FOOTER BOTTOM ===== */
.footer-bottom {
    padding-top: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-copy-text {
    text-align: center;
    width: 100%;
}

.footer-copy-text p {
    margin: 0;
    font-size: 13px;
    color: #cccccc;
    line-height: 1.5;
}

.footer-copy-text a {
    color: #cccccc;
    text-decoration: none;
}

.footer-copy-text a:hover {
    text-decoration: underline;
    color: #007acc;
}

/* ===== RESPONSIVE ===== */
@media(min-width: 768px) {
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-top-item {
        text-align: left;
    }

    .footer-logo {
        margin-left: 0;
        margin-right: 0;
    }

    .footer-socials {
        justify-content: flex-start;
    }
}

@media(min-width: 1024px) {
    .footer-customizado {
        padding: 80px 0 50px;
    }

    .footer-container {
        padding: 0 5rem;
    }

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

    .footer-top {
        grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
        gap: 40px;
        padding-bottom: 40px;
    }

    .footer-text p {
        font-size: 14px;
    }

    .footer-list li a {
        font-size: 14px;
    }

    .footer-block-text {
        font-size: 14px;
    }

    .footer-list-title {
        font-size: 16px;
    }

    .footer-socials-text {
        font-size: 16px;
    }

    .footer-copy-text p {
        font-size: 13px;
    }
}

@media(max-width: 480px) {
    .footer-customizado {
        padding: 50px 0 30px;
    }

    .footer-text p {
        font-size: 13px;
    }

    .footer-list li a {
        font-size: 13px;
    }

    .footer-list-title {
        font-size: 15px;
    }

    .footer-copy-text p {
        font-size: 12px;
    }
}
