/*
Theme Name: SIAC Portal Governamental
Theme URI: https://siac.gov.ao/
Author: Cláudio Rodrigues
Description: Portal Oficial do Serviço Integrado de Atendimento ao Cidadão - Governo de Angola. Desenvolvido com foco em performance, acessibilidade e usabilidade para oferecer serviços públicos digitais de alta qualidade.
Version: 2.0.1 - FONTES CORRIGIDAS
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: siac
Tags: government, services, accessibility, responsive, bootstrap
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
*/

/* ===== VARIÁVEIS CSS ===== */
:root {
    --siac-primary: #0075b0;
    --siac-secondary: #231f20;
    --siac-accent: #d61e28;
    --siac-yellow: #fdca0f;
    --siac-dark: #231f20;
    --siac-light: #f8f9fa;
    --header-height: 80px;
    --topbar-height: 45px;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.15);
    --border-radius: 8px;
}

/* ===== ANIMAÇÕES GLOBAIS ===== */
/* Animação Fade Up */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

.animate-on-scroll.fade-in-up.active {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes panelFadeIn {
    from {
        opacity: 0;
        transform: scale(0.96) translateY(10px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes slideInFromTop {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Classes de animação para elementos */
.animate-on-scroll {
    opacity: 0;
    transition: all 0.4s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
}

.fade-in-up {
    animation: fadeInUp 0.5s ease-out forwards;
}

.fade-in-left {
    animation: fadeInLeft 0.5s ease-out forwards;
}

.fade-in-right {
    animation: fadeInRight 0.5s ease-out forwards;
}

.scale-in {
    animation: scaleIn 0.4s ease-out forwards;
}

.slide-in-top {
    animation: slideInFromTop 0.8s ease-out forwards;
}

.bounce {
    animation: bounce 1s ease-out forwards;
}

/* Delays para animações em sequência */
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }

/* ===== RESET E BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* ===== TOP BAR MODERNA ===== */
.siac-topbar {
    color: white;
    font-size: 13px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1060;
    transition: transform 0.3s ease;
}

/* Esconder top bar quando necessário */
.siac-topbar.hidden {
    transform: translateY(-100%);
}

.topbar-container {
    display: flex;
    justify-content: center;
    padding: 0 20px;
}

.topbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: var(--topbar-height);
    flex-wrap: wrap;
    gap: 15px;
    padding: 0.5rem 2rem;
    width: 100%;
}

.contact-section {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.contact-item i {
    color: var(--siac-accent);
    font-size: 12px;
    width: 14px;
}

.social-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    font-weight: 500;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.social-links a:hover {
    background: var(--siac-accent);
    color: white;
    transform: translateY(-2px);
}

/* ===== HEADER PRINCIPAL ===== */
.siac-header {
    position: fixed !important;
    top: 50px;
    left: 0;
    right: 0;
    z-index: 1050;
    background: transparent;
    transition: all 0.3s ease;
}

/* Estado sticky - header sobe para o topo */
.siac-header.sticky {
    top: 0 !important;
    background: #fff !important;
    backdrop-filter: blur(10px) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
    position: fixed !important;
    z-index: 1050 !important;
}

.header-container {
    display: flex;
    justify-content: center;
}

.header-content {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    padding: 0.8rem 2rem;
    width: 100%;
    justify-content: space-between;
    min-height: var(--header-height);
    position: relative;/* 
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1); */
    transition: all 0.3s ease;
}

/* Header sticky - estilo mais compacto */
.siac-header.sticky .header-content {
    padding: 0.5rem 2rem;
    border-radius: 15px;
   /*  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.15); */
}

.siac-header.sticky .brand-logo {
    height: 45px;
    transition: height 0.3s ease;
}

.siac-header.hidden {
    transform: translateY(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Melhorar a animação de entrada */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Estado inicial do header */
.siac-header:not(.scrolled) {
    background: transparent;
}

.siac-header:not(.scrolled) .header-content {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
}

/* ===== LOGO/BRAND ===== */
.header-brand {
    flex-shrink: 0;
}

.brand-link {
    display: block;
    text-decoration: none;
}
.page-header {
	/* --background-color: #1a73e8; */
	--text-color: #ffffff;
    background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	padding: 80px 0 60px;
	position: relative;
	overflow: hidden;
}
.breadcrumb {
	background: rgba(255, 255, 255, 0.2);
	padding: 0.75rem 1.5rem;
	border-radius: 2rem;
	margin-bottom: 2rem;
	backdrop-filter: blur(15px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	position: relative;
	z-index: 2;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.page-header {
	padding: 106px 0 60px!important;
}
.brand-logo,
.custom-logo-link img {
    height: 55px;
    width: auto;
    max-width: 527px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.text-left {
    text-align: left !important;
}
.brand-link:hover .brand-logo,
.brand-link:hover .custom-logo-link img {
    transform: scale(1.05);
}

/* ===== NAVEGAÇÃO DESKTOP ===== */
.desktop-nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 5px;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 12px 18px;
    color: var(--siac-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: var(--border-radius);
    transition: var(--transition-smooth);
    position: relative;
}

.nav-link:hover,
.nav-link:focus {
    color: var(--siac-accent);
    background: rgba(214, 30, 40, 0.08);
    transform: translateY(-1px);
}

/* ===== MENU NAVIGATION - SISTEMA LIMPO ===== */
.main-nav {
    display: flex;
    align-items: center;
}

.menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
}

.menu-item {
    position: relative;
}

.menu-link {
	display: flex;
	align-items: center;
	padding: 15px 0;
	color: var(--siac-dark) !important;
	text-decoration: none;
	font-weight: 600 !important;
	font-size: 15px;
	transition: color 0.3s ease;
	text-transform: uppercase;
}

.menu-link:hover {
	color: var(--siac-primary) !important;
	text-decoration: none;
}

/* Item "Início" com destaque sutil */
.menu-item:first-child .menu-link,
.menu-item[data-title="Início"] .menu-link {
    position: relative;
}

.menu-item:first-child .menu-link::after,
.menu-item[data-title="Início"] .menu-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--siac-primary);
    transform: scaleX(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-item:first-child .menu-link:hover::after,
.menu-item[data-title="Início"] .menu-link:hover::after {
    transform: scaleX(1);
}

.menu-link i {
    margin-left: 5px;
    font-size: 12px;
    transition: transform 0.3s ease;
}

/* Ícone do "Início" fica antes do texto */
.menu-link i.fa-home {
    margin-left: 0;
    margin-right: 6px;
    font-size: 14px;
    color: var(--siac-primary);
}

/* Submenu (Dropdown) */
.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 8px;
    padding: 15px 0;
    min-width: 300px;
    list-style: none;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.submenu li {
    margin: 0;
}

.submenu a {
	display: block;
	padding: 12px 20px;
	color: var(--siac-dark);
	text-decoration: none;
	font-size: 13px;
	transition: all 0.3s ease;
	font-weight: 500;
	text-transform: uppercase;
}
.news-title a:hover {
	color: var(--siac-primary) !important;
}
.recent-post h6 a:hover {
	color: var(--siac-primary) !important;
}
.btn-quick-access:hover {
	color: var(--siac-primary)!important;
}
.nav-link:hover {
	color: #e53e3e !important;
}
.submenu a:hover {
    background: var(--siac-primary);
    color: white!important;
    text-decoration: none;
}

/* Estados ativos do dropdown */
.dropdown.active .menu-link i {
    transform: rotate(180deg);
}

.dropdown.active .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Hover apenas para desktop */
@media (min-width: 769px) {
    .dropdown:hover .submenu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .dropdown:hover .menu-link i {
        transform: rotate(180deg);
    }
}

/* Sub-submenu (Dropdown aninhado) */
.submenu .submenu-item {
    position: relative;
}

.submenu .submenu-item.dropdown .submenu-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.submenu .submenu-item.dropdown .submenu-link i {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.sub-submenu {
    position: absolute;
    top: 0;
    left: 100%;
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 15px 0;
    min-width: 240px;
    list-style: none;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.sub-submenu li {
    margin: 0;
}

.sub-submenu a {
    display: block;
    padding: 10px 18px;
    color: var(--siac-dark);
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s ease;
}

.sub-submenu a:hover {
    background: var(--siac-primary);
    color: white;
    text-decoration: none;
}

/* Hover para sub-submenu apenas no desktop */
@media (min-width: 769px) {
    .submenu .submenu-item.dropdown:hover .sub-submenu {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }
    
    .submenu .submenu-item.dropdown:hover .submenu-link i {
        transform: rotate(90deg);
    }
}

/* Mobile styles */
@media (max-width: 768px) {
    .header-actions {
        display: none; /* Esconder botão perfil no mobile */
    }
    .pb-sm-0 {
        padding-bottom: 0 !important;
    }
    .mb-sm-0 {
        margin-bottom: 0 !important;
    }
}

/* Responsivo para smartphones pequenos */
@media (max-width: 480px) {
    .pb-sm-0 {
        padding-bottom: 0 !important;
    }
    .mb-sm-0 {
        margin-bottom: 0 !important;
    }
}

/* Responsivo para smartphones muito pequenos */
@media (max-width: 360px) {
    .mobile-toggle {
        width: 40px;
        height: 40px;
        padding: 8px 5px;
    }
    
    .toggle-line {
        width: 22px;
        height: 2px;
    }
    
    .toggle-line:nth-child(1) {
        width: 22px;
    }
    
    .toggle-line:nth-child(2) {
        width: 18px;
    }
    
    .toggle-line:nth-child(3) {
        width: 14px;
    }
    .pb-sm-0 {
        padding-bottom: 0 !important;
    }
    .mb-sm-0 {
        margin-bottom: 0 !important;
    }
}

/* ===== BOTÃO PERFIL ===== */
.header-actions {
    display: flex;
    align-items: center;
    margin-left: 20px;
}

.btn-perfil {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--siac-primary);
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 117, 176, 0.3);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-perfil::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.1);
    transition: left 0.5s;
}

.btn-perfil:hover {
    background: #005a8c;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 117, 176, 0.4);
    color: white;
}

.btn-perfil:hover::before {
    left: 100%;
}

.btn-perfil i {
    font-size: 14px;
}
.sub-submenu-link {
    display: block;
    padding: 10px 12px;
    color: var(--siac-dark);
    text-decoration: none;
    font-size: 13px;
    font-weight: 400;
    text-transform: none;
    background: rgba(0, 117, 176, 0.05);
    border-radius: 4px;
    margin: 2px 0;
    border-left: 3px solid var(--siac-primary);
    transition: var(--transition-smooth);
}

.sub-submenu-link:hover,
.sub-submenu-link:focus {
    background: var(--siac-primary);
    color: white;
    transform: translateX(5px);
}

.submenu-link {
    display: block;
    padding: 12px 16px;
    color: var(--siac-dark);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 6px;
    margin: 2px 0;
    transition: var(--transition-smooth);
}

.submenu-link:hover,
.submenu-link:focus {
    background: rgba(214, 30, 40, 0.1);
    color: var(--siac-accent);
    transform: translateX(8px);
}

.mobile-perfil {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.perfil-link {
    background: var(--siac-primary) !important;
    color: white !important;
    justify-content: center;
    gap: 10px;
    border: none !important;
}

.perfil-link:hover {
    background: #005a8c !important;
}

.perfil-link:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 15px rgba(214, 30, 40, 0.3);
}

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

/* Desktop Large */
@media (min-width: 1200px) {
    .header-container,
    .topbar-container {
        max-width: 1400px;
    }
}

/* Tablet */
@media (max-width: 991.98px) {
    .main-nav,
    .header-actions {
        display: none;
    }
    
    /* Esconder o mobile-toggle antigo */
    .mobile-toggle:not(#hamburger-menu) {
        display: flex;
    }
    
    /* Mostrar o novo hamburger menu */
    #menu-wrapper {
        display: block !important;
    }
    
    /* Remover position sticky que estava interferindo */
    /* .siac-header { position: sticky; } */
}

/* Mobile */
@media (max-width: 767.98px) {
    :root {
        --header-height: 70px;
        --topbar-height: auto;
    }
    
    .topbar-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 10px 0;
        gap: 10px;
    }
    
    .contact-section {
        flex-direction: column;
        gap: 8px;
    }
    
    .contact-item {
        font-size: 12px;
    }
    
    .social-section {
        gap: 10px;
    }
    
    .social-links a {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
    
    .header-container,
    .topbar-container {
        padding: 0 15px;
    }
    
    .brand-logo,
    .custom-logo-link img {
        height: 45px;
        max-width: 150px;
    }
    
    .mobile-menu {
        padding: 15px;
    }
    
    .mobile-link {
        font-size: 14px;
        padding: 12px 16px;
    }
}

/* Mobile Small */
@media (max-width: 480px) {
    .contact-section {
        gap: 5px;
    }
    
    .contact-item {
        font-size: 11px;
    }
    
    .social-links {
        gap: 8px;
    }
    
    .brand-logo,
    .custom-logo-link img {
        height: 40px;
        max-width: 130px;
    }
    
    .mobile-toggle {
        width: 45px;
        height: 45px;
    }
    
    .toggle-line {
        width: 22px;
    }
}

/* ===== UTILITÁRIOS ===== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ===== ANIMAÇÕES ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.siac-header,
.siac-topbar {
    animation: fadeInUp 0.4s ease-out;
}

/* ===== ACESSIBILIDADE ===== */
.nav-link:focus,
.dropdown-link:focus,
.btn-perfil:focus,
.mobile-link:focus,
.submenu-link:focus,
.mobile-toggle:focus {
    outline-offset: 2px;
}

/* ===== GALERIA DE IMAGENS ===== */

/* Variáveis específicas da galeria */
:root {
    --gallery-spacing: 1.5rem;
    --gallery-border-radius: 12px;
    --gallery-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --lightbox-z-index: 10000;
}

/* Estrutura da página de galeria */
.page-content {
    padding: 3rem 0;
}

/* ===== FILTROS DA GALERIA ===== */
.gallery-filters {
    background: white;
    padding: 2rem;
    border-radius: var(--gallery-border-radius);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #f8f9fa;
    color: #495057;
    border: 2px solid transparent;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--gallery-transition);
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.filter-btn:hover {
    background: #e9ecef;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.filter-btn:hover::before {
    left: 100%;
}

.filter-btn.active {
    background: var(--siac-primary);
    color: white;
    border-color: var(--siac-primary);
    box-shadow: 0 4px 15px rgba(0, 117, 176, 0.3);
}

.filter-btn.active:hover {
    background: #005a8c;
    transform: translateY(-2px);
}

.filter-btn i {
    font-size: 1rem;
}

/* ===== BUSCA DA GALERIA ===== */
.gallery-search {
    min-width: 300px;
    position: relative;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input-wrapper i {
    position: absolute;
    left: 1rem;
    color: #6c757d;
    font-size: 1rem;
    z-index: 1;
}

#gallery-search {
    width: 100%;
    padding: 0.875rem 1rem 0.875rem 2.5rem;
    border: 2px solid #e9ecef;
    border-radius: 50px;
    font-size: 0.875rem;
    background: white;
    transition: var(--gallery-transition);
    outline: none;
}

#gallery-search:focus {
    border-color: var(--siac-primary);
    box-shadow: 0 0 0 3px rgba(0, 117, 176, 0.1);
}

.clear-search {
    position: absolute;
    right: 0.5rem;
    background: none;
    border: none;
    color: #6c757d;
    padding: 0.5rem;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    transition: var(--gallery-transition);
}

.clear-search:hover {
    background: #f8f9fa;
    color: #495057;
}

.clear-search.visible {
    display: block;
}

/* ===== GRID DA GALERIA ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--gallery-spacing);
    margin-bottom: 3rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--gallery-border-radius);
    overflow: hidden;
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: var(--gallery-transition);
    cursor: pointer;
    opacity: 1;
    transform: scale(1);
}

.gallery-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.gallery-item.hidden {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
}

.gallery-item-wrapper {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.gallery-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--gallery-transition);
}

.gallery-item:hover .gallery-thumbnail {
    transform: scale(1.1);
}

/* ===== OVERLAY DA GALERIA ===== */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.1) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.8) 100%
    );
    color: white;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    opacity: 0;
    transition: var(--gallery-transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.gallery-description {
    font-size: 0.875rem;
    line-height: 1.4;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.gallery-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.75rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.gallery-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.gallery-meta i {
    font-size: 0.75rem;
}

/* ===== BOTÃO VISUALIZAR ===== */
.gallery-actions {
    display: flex;
    justify-content: center;
}

.btn-view {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--gallery-transition);
    transform: translateY(20px);
}

.gallery-item:hover .btn-view {
    transform: translateY(0);
    background: var(--siac-primary);
    border-color: var(--siac-primary);
    box-shadow: 0 4px 15px rgba(0, 117, 176, 0.4);
}

.btn-view:hover {
    background: #005a8c !important;
    transform: translateY(-3px) scale(1.05);
}

/* ===== PAGINAÇÃO ===== */
.gallery-pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    background: white;
    border-radius: var(--gallery-border-radius);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.pagination-info {
    font-size: 0.875rem;
    color: #6c757d;
}

.pagination-info strong {
    color: var(--siac-primary);
    font-weight: 700;
}

.btn-load-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: var(--siac-primary);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--gallery-transition);
}

.btn-load-more:hover {
    background: #005a8c;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 117, 176, 0.3);
}

.btn-load-more:disabled {
    background: #6c757d;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* ===== LIGHTBOX ===== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: var(--lightbox-z-index);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(5px);
}

.lightbox-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    color: white;
}

/* ===== HEADER DO LIGHTBOX ===== */
.lightbox-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: rgba(0, 0, 0, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.lightbox-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.lightbox-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.875rem;
    opacity: 0.8;
}

.lightbox-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lightbox-controls {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.lightbox-btn {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: white;
    cursor: pointer;
    transition: var(--gallery-transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.lightbox-close {
    width: 44px;
    height: 44px;
    background: rgba(220, 53, 69, 0.8);
    border: none;
    border-radius: 8px;
    color: white;
    cursor: pointer;
    transition: var(--gallery-transition);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 1rem;
}

.lightbox-close:hover {
    background: #dc3545;
    transform: translateY(-2px);
}

/* ===== CONTEÚDO DO LIGHTBOX ===== */
.lightbox-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 2rem;
}

.lightbox-image-container {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: var(--gallery-transition);
    transform-origin: center;
}

.lightbox-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ===== NAVEGAÇÃO DO LIGHTBOX ===== */
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: var(--gallery-transition);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.lightbox-nav:hover {
    background: rgba(0, 0, 0, 0.9);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 2rem;
}

.lightbox-next {
    right: 2rem;
}

/* ===== FOOTER DO LIGHTBOX ===== */
.lightbox-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: rgba(0, 0, 0, 0.8);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.lightbox-description {
    flex: 1;
    font-size: 0.875rem;
    line-height: 1.4;
    opacity: 0.9;
}

.lightbox-counter {
    font-size: 0.875rem;
    font-weight: 600;
    opacity: 0.8;
    margin-left: 1rem;
}

/* ===== RESPONSIVIDADE DA GALERIA ===== */
@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .gallery-filters {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .filter-buttons {
        justify-content: center;
    }
    
    .gallery-search {
        min-width: auto;
    }
    
    .gallery-pagination {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .gallery-item-wrapper {
        height: 250px;
    }
    
    .filter-buttons {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.75rem;
    }
    
    .lightbox-header {
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .lightbox-controls {
        align-self: flex-end;
    }
    
    .lightbox-content {
        padding: 1rem;
    }
    
    .lightbox-nav {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
    
    .lightbox-prev {
        left: 1rem;
    }
    
    .lightbox-next {
        right: 1rem;
    }
    
    .lightbox-footer {
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .lightbox-counter {
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .gallery-filters {
        padding: 1.5rem;
    }
    
    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.7rem;
    }
    
    .gallery-item-wrapper {
        height: 200px;
    }
    
    .gallery-overlay {
        padding: 1rem;
    }
    
    .gallery-content h3 {
        font-size: 1rem;
    }
    
    .gallery-description {
        font-size: 0.8rem;
    }
    
    .btn-view {
        padding: 0.625rem 1.25rem;
        font-size: 0.75rem;
    }
    
    .lightbox-header {
        padding: 0.75rem;
    }
    
    .lightbox-info h3 {
        font-size: 1.25rem;
    }
    
    .lightbox-meta {
        font-size: 0.75rem;
        gap: 1rem;
    }
    
    .lightbox-btn,
    .lightbox-close {
        width: 40px;
        height: 40px;
    }
    
    .lightbox-nav {
        width: 44px;
        height: 44px;
    }
}

/* ===== ANIMAÇÕES E TRANSIÇÕES ===== */
@keyframes galleryItemEntry {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.gallery-item {
    animation: galleryItemEntry 0.6s ease-out forwards;
}

.gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-item:nth-child(2) { animation-delay: 0.2s; }
.gallery-item:nth-child(3) { animation-delay: 0.3s; }
.gallery-item:nth-child(4) { animation-delay: 0.4s; }
.gallery-item:nth-child(5) { animation-delay: 0.5s; }
.gallery-item:nth-child(6) { animation-delay: 0.6s; }

/* ===== ESTADOS DE CARREGAMENTO ===== */
.gallery-item.loading {
    opacity: 0.5;
    pointer-events: none;
}

.gallery-item.loading .gallery-thumbnail {
    filter: blur(2px);
}

/* ===== ZOOM DO LIGHTBOX ===== */
.lightbox-image.zoomed {
    transform: scale(1.5);
    cursor: grab;
}

.lightbox-image.zoomed:active {
    cursor: grabbing;
}

.lightbox-image.rotated-90 {
    transform: rotate(90deg);
}

.lightbox-image.rotated-180 {
    transform: rotate(180deg);
}

.lightbox-image.rotated-270 {
    transform: rotate(270deg);
}

/* ===== MODO FULLSCREEN ===== */
.lightbox.fullscreen {
    background: black;
}

.lightbox.fullscreen .lightbox-header,
.lightbox.fullscreen .lightbox-footer {
    display: none;
}

.lightbox.fullscreen .lightbox-content {
    padding: 0;
}

.lightbox.fullscreen .lightbox-nav {
    background: rgba(0, 0, 0, 0.8);
}

/* ===== ACESSIBILIDADE ===== */
.filter-btn:focus,
.btn-view:focus,
.btn-load-more:focus,
.lightbox-btn:focus,
.lightbox-close:focus,
.lightbox-nav:focus {
    outline: 2px solid var(--siac-primary);
    outline-offset: 2px;
}

/* ===== SCROLL SUAVE ===== */
.gallery-grid {
    scroll-behavior: smooth;
}

/* Fim dos estilos da galeria */

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 800px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    /* Ajuste para compensar o header fixo */
    padding-top: 80px;
}

.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    animation: slideZoom 20s infinite;
}

@keyframes slideZoom {
    0% { transform: scale(1); }
    50% { transform: scale(1.08); }
    100% { transform: scale(1); }
}

.hero-slide.active {
    opacity: 1;
}

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

/* ===== HERO PARTICLES ===== */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: float-particle 8s infinite linear;
}

.particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 10s;
}

.particle:nth-child(2) {
    left: 30%;
    animation-delay: 2s;
    animation-duration: 12s;
}

.particle:nth-child(3) {
    left: 50%;
    animation-delay: 4s;
    animation-duration: 8s;
}

.particle:nth-child(4) {
    left: 70%;
    animation-delay: 6s;
    animation-duration: 14s;
}

.particle:nth-child(5) {
    left: 90%;
    animation-delay: 8s;
    animation-duration: 11s;
}

@keyframes float-particle {
    0% {
        transform: translateY(100vh) translateX(0px);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-10vh) translateX(50px);
        opacity: 0;
    }
}

/* ===== HERO CONTENT ===== */
.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
    /* Centralização vertical aprimorada */
    margin-top: 30px;
    transform: translateY(-20px);
}

/* ===== HERO BACKGROUND TEXT ===== */

.hero-background-text {
	position: absolute;
	top: 40%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 15rem;
	font-weight: 900;
	color: rgba(255, 255, 255, 0.08);
	text-transform: uppercase;
	letter-spacing: 0.2em;
	pointer-events: none;
	z-index: -1;
	font-family: 'Arial Black', sans-serif;
	line-height: 1;
	user-select: none;
	white-space: nowrap;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 32px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInDown 1s ease-out 0.3s both;
}

.hero-badge i {
    color: var(--siac-yellow);
    font-size: 14px;
}

/* ===== HERO TITLE ===== */
.hero-title {
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.title-line {
    display: block;
    font-size: 1.8rem;
    font-weight: 400;
    opacity: 0.9;
    margin-bottom: 8px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.title-highlight {
    display: block;
    font-size: 4.5rem;
    font-weight: 800;/* 
    color: var(--siac-yellow); */
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    margin-bottom: 12px;
    line-height: 1.1;
}

.title-subtitle {
    display: block;
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.85;
    color: #e2e8f0;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Arial', sans-serif;
}

/* ===== HERO DESCRIPTION ===== */
.hero-description {
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.7s both;
}

.hero-lead {
	font-size: 1.1rem;
	line-height: 1.6;
	margin-bottom: 2.5rem;
	opacity: 0.95;
	text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
	max-width: 921px;
	margin-left: auto;
	margin-right: auto;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    opacity: 0.9;
}

.hero-feature i {
    color: var(--siac-yellow);
    font-size: 16px;
}

/* ===== HERO ACTIONS ===== */
.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.cta-button {
    display: inline-flex !important;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    opacity: 1 !important;
    visibility: visible !important;
}

.cta-button.primary {
    background: var(--siac-primary);
    color: white;
    box-shadow: 0 10px 30px rgba(0, 117, 176, 0.3);
}

.cta-button.primary:hover {
    background: #005a8c;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 117, 176, 0.4);
    color: white;
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    color: white;
}

/* ===== HERO STATS ===== */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out 1.1s both;
}

.stat-card {
    text-align: center;
    padding: 20px 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-smooth);
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--siac-yellow);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

/* ===== CAROUSEL INDICATORS ===== */
.carousel-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    z-index: 4;
}

.carousel-dot {
    position: relative;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-dot.active {
    background: var(--siac-yellow);
    transform: scale(1.3);
}

.dot-label {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0;
    transition: var(--transition-smooth);
    white-space: nowrap;
}

.carousel-dot:hover .dot-label,
.carousel-dot.active .dot-label {
    opacity: 1;
}

/* ===== CAROUSEL DOTS ===== */
.carousel-dots {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 4;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.carousel-dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.1);
}

.carousel-dot.active {
    background: #ffffff;
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
    position: absolute;
    bottom: 80px;
    right: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 4;
    animation: fadeIn 1s ease-out 1.5s both;
}

.scroll-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    animation: bounce 2s infinite;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.scroll-indicator span {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.8;
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-8px);
    }
    60% {
        transform: translateY(-4px);
    }
}

/* ===== ANIMAÇÕES PERSONALIZADAS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ===== RESPONSIVE HERO ===== */
@media (max-width: 992px) {
    .hero {
        min-height: 700px;
        padding-top: 60px;
    }
    
    .hero-content {
        margin-top: -20px;
        transform: translateY(-10px);
    }
    
    .hero-background-text {
        font-size: 18rem;
    }
    
    .title-highlight {
        font-size: 3.5rem;
    }
    
    .hero-lead {
        font-size: 1.2rem;
    }
    
    .hero-features {
        gap: 20px;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .scroll-indicator {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 600px;
        padding-top: 40px;
    }
    
    .hero-content {
        margin-top: 0;
        transform: translateY(0);
    }
    
    .hero-background-text {
        font-size: 12rem;
        letter-spacing: 0.1em;
    }
    
    .title-line {
        font-size: 1.4rem;
    }
    
    .title-highlight {
        font-size: 2.8rem;
    }
    
    .title-subtitle {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }
    
    .hero-lead {
        font-size: 1.1rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .carousel-indicators {
        bottom: 20px;
    }
}

/* ===== PRINCIPAIS SEÇÕES DO SITE ===== */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--siac-dark);
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out forwards;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--siac-primary), var(--siac-accent));
    animation: growLine 1.2s ease-out forwards;
    animation-delay: 0.5s;
}

@keyframes growLine {
    to {
        width: 60px;
    }
}

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

/* ===== AJUSTES GERAIS E BOTÕES PADRONIZADOS ===== */
.btn,
.button,
input[type="submit"],
input[type="button"],
button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--siac-primary);
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    border: none;/* 
    border-radius: 50px; */
    cursor: pointer;
    transition: var(--transition-smooth);/* 
    box-shadow: 0 4px 15px rgba(0, 117, 176, 0.3); */
}

.btn:hover,
.button:hover,
input[type="submit"]:hover,
input[type="button"]:hover,
button:hover {
    background: #005a8c;
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
}

/* Variações de botões */
.btn-secondary,
.button-secondary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover,
.button-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.btn-outline,
.button-outline {
    background: transparent;
    border: 2px solid var(--siac-primary);
    color: var(--siac-primary);
}

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

.card {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition-smooth);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

/* ===== LAYOUT PRINCIPAL ===== */
.site-main {
    min-height: 100vh;
    /* Headers fixos sobrepostos ao hero - sem padding */
    margin-top: 0;
}

/* ===== ABOUT SIAC SECTION ===== */
.about-siac {
    padding: 80px 0;
    background: #f8fbff;
    position: relative;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
}

/* ===== ABOUT HEADER ===== */
.about-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 117, 176, 0.1);
    color: var(--siac-primary);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    border: 1px solid rgba(0, 117, 176, 0.2);
}

.about-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--siac-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.highlight-blue {
    color: var(--siac-primary);
}

.section-subtitle {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* ===== STATS GRID ===== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.stat-card {
    background: white;
    padding: 32px 24px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--siac-primary);
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: var(--siac-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition-smooth);
}

.stat-card:hover .stat-icon {
    transform: scale(1.1);
}

.stat-icon i {
    color: white;
    font-size: 24px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--siac-primary);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--siac-dark);
    margin-bottom: 8px;
}

.stat-description {
    font-size: 13px;
    color: #4a5568;
    line-height: 1.4;
}

/* ===== ABOUT CTA ===== */
.about-cta {
    text-align: center;
    padding: 40px;
    background: rgba(0, 117, 176, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(0, 117, 176, 0.1);
}

.about-cta p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-learn-more {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: var(--siac-primary);
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    border-radius: 50px;
    transition: var(--transition-smooth);
    box-shadow: 0 8px 25px rgba(0, 117, 176, 0.3);
}

.btn-learn-more:hover {
    background: #005a8c;
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 117, 176, 0.4);
    color: white;
    text-decoration: none;
}

.btn-learn-more i {
    transition: var(--transition-smooth);
}

.btn-learn-more:hover i {
    transform: translateX(4px);
}

/* ===== RESPONSIVE ABOUT SIAC ===== */
@media (max-width: 992px) {
    .about-siac {
        padding: 80px 0;
    }
    
    .about-header {
        margin-bottom: 60px;
    }
    
    .about-header h2 {
        font-size: 2.5rem;
    }
}

/* ===== NEW PORTAL SECTION ===== */
.new-portal {
    padding: 120px 0;
    background: #f8fbff;
    position: relative;
    overflow: hidden;
}

.portal-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* ===== PORTAL TEXT SECTION ===== */
.portal-text {
    max-width: 600px;
}

.portal-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--siac-accent);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    box-shadow: 0 4px 15px rgba(214, 30, 40, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.portal-text h2 {
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--siac-dark);
    line-height: 1.2;
    margin-bottom: 32px;
    position: relative;
}

.portal-text .highlight {
    color: var(--siac-primary);
    font-weight: 800;
    position: relative;
}

.portal-description .lead {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 20px;
    font-weight: 400;
}
.about-title::after {
	left: 6%!important;
}
.news-link:hover {
	color: #0075b0 !important;
}
.read-more:hover {
	color: var(--siac-primary-dark) !important;
}
/* ===== PORTAL FEATURES ===== */
.portal-features {
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: -5px;
    padding: 12px 0;
}

.feature-item i {
    color: var(--siac-primary);
    font-size: 16px;
    width: 20px;
    flex-shrink: 0;
}

.feature-item span {
    color: #4a5568;
    font-weight: 500;
    font-size: 15px;
}

/* ===== PORTAL STATS ===== */
.portal-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding: 24px 0;
    border-top: 1px solid #e2e8f0;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--siac-primary);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 13px;
    color: #718096;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== PORTAL VISUAL SECTION ===== */
.portal-visual {
    position: relative;
    height: 600px;
}

.portal-image-container {
    position: relative;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 10px 25px rgba(0, 0, 0, 0.1);
    transform: perspective(1000px) rotateY(-5deg);
    transition: var(--transition-smooth);
}

.portal-image-container:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.portal-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 117, 176, 0.1);
    pointer-events: none;
}

/* ===== PORTAL QUOTE ===== */
.portal-quote {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.quote-content {
    position: relative;
}

.quote-icon {
    color: var(--siac-primary);
    font-size: 24px;
    opacity: 0.3;
    position: absolute;
    top: -10px;
    left: -5px;
}

.portal-quote blockquote {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: var(--siac-dark);
    font-style: italic;
    padding-left: 30px;
}

.portal-quote strong {
    color: var(--siac-primary);
    font-weight: 700;
}

.quote-author {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.author-info strong {
    display: block;
    color: var(--siac-dark);
    font-weight: 600;
    font-size: 14px;
}

.author-info small {
    color: var(--siac-primary);
    font-size: 12px;
    font-weight: 500;
}

/* ===== FLOATING ELEMENTS ===== */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-card {
	position: absolute;
	background: white;
	padding: 16px 20px;
	border-radius: 12px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 13px;
	font-weight: 600;
	color: var(--siac-dark);
	border: 1px solid rgba(0, 0, 0, 0.05);
	animation: floatUpDown 4s ease-in-out infinite !important;
	transform-origin: center;
	/* Garantir que não há rotação */
	will-change: transform;
}

.floating-elements .floating-card {
	/* Especificidade extra para garantir que nossa animação seja aplicada */
	animation: floatUpDown 4s ease-in-out infinite !important;
}

.floating-card:nth-child(1) {
    top: 80px;
    right: -20px;
    animation: floatUpDown 4s ease-in-out infinite !important;
    animation-delay: 0s !important;
}

.floating-card:nth-child(2) {
    top: 200px;
    left: -30px;
    animation: floatUpDown 4s ease-in-out infinite !important;
    animation-delay: 1.3s !important;
}

.floating-card:nth-child(3) {
    bottom: 150px;
    right: -15px;
    animation: floatUpDown 4s ease-in-out infinite !important;
    animation-delay: 2.6s !important;
}

.floating-card i {
    color: var(--siac-primary);
    font-size: 16px;
}

/* Animação clara de up e down - movimento apenas vertical */
@keyframes floatUpDown {
    0% { 
        transform: translateY(0px);
    }
    33% { 
        transform: translateY(-15px);
    }
    66% { 
        transform: translateY(-5px);
    }
    100% { 
        transform: translateY(0px);
    }
}

/* Hover effect para os floating cards */
.floating-card:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
    animation-play-state: paused;
    cursor: pointer;
    transition: all 0.3s ease;
}

.floating-card:hover i {
    color: var(--siac-yellow);
    transform: scale(1.1);
    transition: all 0.3s ease;
}

/* Garantir que não há rotação ou movimento horizontal */
.floating-card {
    transform-style: preserve-3d;
    backface-visibility: hidden;
}

.floating-card * {
    transform-style: preserve-3d;
    backface-visibility: hidden;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
    .new-portal {
        padding: 80px 0;
    }
    
    .portal-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .portal-text h2 {
        font-size: 2.5rem;
    }
    
    .portal-visual {
        height: 500px;
    }
    
    .portal-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .floating-card {
        display: none;
    }
}

@media (max-width: 768px) {
    .new-portal {
        padding: 60px 0;
    }
    
    .portal-text h2 {
        font-size: 2rem;
    }
    
    .portal-description .lead {
        font-size: 1.1rem;
    }
    
    .portal-visual {
        height: 400px;
    }
    
    .portal-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .portal-image-container {
        transform: none;
    }
    
    .portal-quote {
        position: relative;
        bottom: auto;
        left: auto;
        right: auto;
        margin-top: 20px;
    }
}

/* ===== ABOUT SIAC RESPONSIVE ===== */
@media (max-width: 1200px) {
    .stats-grid {
        gap: 24px;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .stat-card {
        padding: 28px 20px;
    }
}

@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .about-cta {
        padding: 32px 24px;
    }
    
    .about-cta p {
        font-size: 1rem;
    }
    
    .btn-learn-more {
        padding: 14px 28px;
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .stat-card {
        padding: 24px 16px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 16px;
    }
    
    .stat-icon i {
        font-size: 20px;
    }
    
    .about-cta {
        padding: 24px 16px;
    }
    
    .about-cta p {
        font-size: 15px;
        margin-bottom: 24px;
    }
}

@media (max-width: 480px) {
    .stat-card {
        padding: 20px 12px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 14px;
    }
    
    .stat-description {
        font-size: 12px;
    }
    
    .btn-learn-more {
        padding: 12px 24px;
        font-size: 14px;
    }
}

/* ===== SERVICES SECTION ===== */
.services-section {
	padding: 100px 0;
	background: #f5f8fa;
	position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(0, 117, 176, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(214, 30, 40, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

/* ===== SERVICES HEADER ===== */
.services-header {
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.services-header .section-badge {
    background: rgba(0, 117, 176, 0.1);
    color: var(--siac-primary);
    border: 1px solid rgba(0, 117, 176, 0.2);
}

.services-header .section-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--siac-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.services-header .highlight {
    color: var(--siac-primary);
    position: relative;
}

.services-header .section-subtitle {
    font-size: 1.2rem;
    color: #4a5568;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* ===== SERVICES GRID ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

/* ===== SERVICE CARD ===== */
.service-card {
	background: #fff !important;
	border: 2px solid #0075b0;
	border-radius: 20px;
	padding: 30px;
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	position: relative;
	overflow: hidden;
	height: 100%;
	opacity: 0;
	transform: translateY(30px);
	animation: fadeInUp 0.8s ease-out forwards;
	z-index: 1;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0075b0, #0075b0);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 117, 176, 0.02), rgba(0, 117, 176, 0.02));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    pointer-events: none;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover::after {
    opacity: 1;
}

.service-card:hover {
    background: white;
    border-color: #0075b0;
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 117, 176, 0.2);
}

.service-card-inner {
    padding: 0px!important;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

/* ===== SERVICE HEADER ===== */
.service-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--siac-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, #0075b0, #0075b0);
    box-shadow: 0 8px 25px rgba(0, 117, 176, 0.3);
}

.service-icon i {
    color: white;
    font-size: 24px;
}

.service-badge {
    background: rgba(214, 30, 40, 0.1);
    color: var(--siac-accent);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(214, 30, 40, 0.2);
}
.services-filters {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.filter-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.filter-btn {
    background: rgba(0, 117, 176, 0.1);
    border: 1px solid rgba(0, 117, 176, 0.2);
    color: var(--siac-primary);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--siac-primary);
    color: white;
    border-color: var(--siac-primary);
}

.all-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.service-item {
    transition: all 0.3s ease;
}

.service-item.hidden {
    display: none;
}

.info-card {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--siac-primary), #004d6b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.info-icon i {
    font-size: 32px;
    color: white;
}

.info-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--siac-dark);
}

.info-card p {
    color: #6b7280;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }
    
    .filter-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .all-services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
.page-title {
	margin-top: 4rem;
}
.service-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--siac-dark);
    margin-bottom: 16px;
    line-height: 1.3;
}

.service-description {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 24px;
}

/* ===== SERVICE FEATURES ===== */
.service-features {
    margin-bottom: 24px;
}

.service-features .feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    padding: 6px 0;
}

.service-features .feature-item i {
    color: var(--siac-primary);
    font-size: 12px;
    width: 16px;
    flex-shrink: 0;
}

.service-features .feature-item span {
    color: #4a5568;
    font-size: 13px;
    font-weight: 500;
}

/* ===== SERVICE FOOTER ===== */
.service-footer {
    margin-top: auto;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 20px;
    position: relative;
    z-index: 3;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    background: rgba(0, 117, 176, 0.08);
    color: var(--siac-primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(0, 117, 176, 0.1);
    position: relative;
    z-index: 3;
    cursor: pointer;
}

.service-btn:hover {
    background: var(--siac-primary);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(0, 117, 176, 0.25);
    text-decoration: none;
}

.service-btn i {
    font-size: 12px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-btn:hover i {
    transform: translateX(2px);
}

/* Link styling for service titles */
.service-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.service-title a:hover {
    color: var(--siac-primary)!important;
    text-decoration: none;
}

/* ===== SERVICES VIEW ALL BUTTON ===== */
.services-view-all {
    margin: 60px 0 40px 0;
    padding: 0 20px;
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--siac-primary) 0%, #004d6b 100%);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    border: none;
    box-shadow: 0 8px 25px rgba(0, 117, 176, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-view-all::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn-view-all:hover::before {
    left: 100%;
}

.btn-view-all:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 117, 176, 0.4);
    color: white;
    text-decoration: none;
}

.btn-view-all i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn-view-all:hover i {
    transform: scale(1.1) rotate(5deg);
}

.view-all-description {
    margin-top: 16px;
    color: #6b7280;
    font-size: 0.95rem;
    font-style: italic;
}

/* ===== SERVICES CTA ===== */
.services-cta {
    padding: 60px 40px;
    background: rgba(0, 117, 176, 0.05);
    border-radius: 24px;
    border: 1px solid rgba(0, 117, 176, 0.1);
    position: relative;
    z-index: 2;
}

.cta-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--siac-dark);
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.cta-content h2 {
	font-weight: 700;
}
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 16px 32px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-smooth);
}

.btn-outline-primary {
    background: transparent;
    color: var(--siac-primary);
    border: 2px solid var(--siac-primary);
    box-shadow: none;
}

.btn-outline-primary:hover {
    background: var(--siac-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 117, 176, 0.3);
}

/* ===== RESPONSIVE SERVICES ===== */
@media (max-width: 1200px) {
    .services-grid {
        gap: 30px;
    }
    
    .service-card-inner {
        padding: 28px;
    }
}

@media (max-width: 992px) {
    .services-section {
        padding: 80px 0;
    }
    
    .services-header {
        margin-bottom: 60px;
    }
    
    .services-header .section-title {
        font-size: 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        margin-bottom: 60px;
    }
    
    .services-view-all {
        margin: 50px 0 35px 0;
    }
    
    .btn-view-all {
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    .services-cta {
        padding: 40px 24px;
    }
    
    .cta-content h3 {
        font-size: 1.6rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 60px 0;
    }
    
    .services-header .section-title {
        font-size: 2rem;
    }
    
    .services-header .section-subtitle {
        font-size: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .services-view-all {
        margin: 40px 0 30px 0;
    }
    
    .btn-view-all {
        padding: 12px 24px;
        font-size: 0.95rem;
        gap: 8px;
    }
    
    .view-all-description {
        font-size: 0.9rem;
    }
    
    .service-card-inner {
        padding: 24px;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
    }
    
    .service-icon i {
        font-size: 20px;
    }
    
    .service-title {
        font-size: 1.2rem;
    }
    
    .service-description {
        font-size: 14px;
    }
    
    .services-cta {
        padding: 32px 20px;
    }
    
    .cta-content h3 {
        font-size: 1.4rem;
    }
    
    .cta-content p {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .services-view-all {
        margin: 30px 0 25px 0;
    }
    .about-title::after {
	left: 50% !important;
}
.stat-label {
	font-size: 0.6rem!important;
}
.stat-number {
	font-size: 2rem!important;
}
    
    .btn-view-all {
        padding: 10px 20px;
        font-size: 0.9rem;
        gap: 6px;
        border-radius: 30px;
    }
    
    .view-all-description {
        font-size: 0.85rem;
        margin-top: 12px;
    }
    
    .service-card-inner {
        padding: 20px;
    }
    
    .service-features .feature-item span {
        font-size: 12px;
        font-size: 12px;
    }
    
    .btn-learn-more {
        padding: 12px 24px;
        font-size: 14px;
    }
}

/* ===== SISTEMA DE FILTROS E BUSCA AVANÇADO ===== */
.services-filters-advanced {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
    border: 1px solid #f0f0f0;
}

.search-container {
    position: relative;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input {
    border: 2px solid #e5e7eb;
    border-radius: 50px;
    padding: 15px 20px 15px 50px;
    font-size: 16px;
    transition: all 0.3s ease;
    width: 100%;
    background: #fafafa;
}

.search-input:focus {
    border-color: var(--siac-primary);
    box-shadow: 0 0 0 0.2rem rgba(0, 117, 176, 0.15);
    outline: none;
    background: white;
}

.search-icon {
    position: absolute;
    left: 18px;
    color: #9ca3af;
    font-size: 16px;
    z-index: 2;
    transition: color 0.3s ease;
}

.search-input:focus + .search-icon {
    color: var(--siac-primary);
}

.clear-search-btn {
    position: absolute;
    right: 15px;
    background: none;
    border: none;
    color: #9ca3af;
    font-size: 14px;
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s ease;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.clear-search-btn:hover {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
}

.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
    margin-top: 5px;
}

.suggestion-item {
    padding: 12px 20px;
    cursor: pointer;
    border-bottom: 1px solid #f3f4f6;
    transition: background-color 0.2s ease;
}

.suggestion-item:hover {
    background-color: #f0f8ff;
}

.suggestion-item:last-child {
    border-bottom: none;
}

.suggestion-item .suggestion-title {
    font-weight: 600;
    color: var(--siac-dark);
    margin-bottom: 2px;
    font-size: 0.95rem;
}

.suggestion-item .suggestion-category {
    font-size: 0.8rem;
    color: #6b7280;
}

.filter-select-wrapper,
.sort-wrapper {
    position: relative;
}

.filter-select,
.sort-select {
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 15px 20px 15px 45px;
    font-size: 16px;
    transition: all 0.3s ease;
    appearance: none;
    background: #fafafa url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e") no-repeat right 12px center/16px 16px;
    width: 100%;
}

.filter-select:focus,
.sort-select:focus {
    border-color: var(--siac-primary);
    box-shadow: 0 0 0 0.2rem rgba(0, 117, 176, 0.15);
    outline: none;
    background-color: white;
}

.filter-icon,
.sort-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 16px;
    z-index: 2;
    transition: color 0.3s ease;
}

.filter-select:focus ~ .filter-icon,
.sort-select:focus ~ .sort-icon {
    color: var(--siac-primary);
}

.active-filters {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
    animation: fadeIn 0.3s ease;
}

.active-filters-label {
    font-weight: 600;
    color: var(--siac-dark);
    margin-right: 15px;
    font-size: 0.95rem;
}

.active-filters-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-right: 15px;
}

.filter-tag {
    background: linear-gradient(135deg, var(--siac-primary), #004d6b);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 5px;
    animation: slideIn 0.3s ease;
}

.filter-tag .remove-tag {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    transition: background-color 0.2s ease;
}

.filter-tag .remove-tag:hover {
    background: rgba(255, 255, 255, 0.3);
}

.clear-all-btn {
    background: #ef4444;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
}

.clear-all-btn:hover {
    background: #dc2626;
    transform: translateY(-1px);
}

.results-counter {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.results-info {
    font-size: 1rem;
    color: var(--siac-dark);
}

.results-info #results-count {
    font-weight: 700;
    color: var(--siac-primary);
    font-size: 1.1rem;
}

.search-term {
    font-style: italic;
    color: #6b7280;
    font-weight: 500;
}

.view-toggle {
    display: flex;
    gap: 5px;
    background: #f3f4f6;
    padding: 4px;
    border-radius: 10px;
}

.view-btn {
    background: transparent;
    border: none;
    padding: 10px 12px;
    border-radius: 8px;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.view-btn:hover,
.view-btn.active {
    background: var(--siac-primary);
    color: white;
    transform: translateY(-1px);
}

/* Visualização em Lista */
.services-grid.list-view {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.services-grid.list-view .service-item {
    width: 100% !important;
    margin-bottom: 0;
}

.services-grid.list-view .service-card {
    display: flex;
    align-items: center;
    text-align: left;
    padding: 25px;
    min-height: auto;
}

.services-grid.list-view .service-icon {
    margin-right: 25px;
    margin-bottom: 0;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
}

.services-grid.list-view .service-content {
    flex: 1;
}

.services-grid.list-view .service-title {
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.services-grid.list-view .service-description {
    margin-bottom: 15px;
    color: #666;
}

.services-grid.list-view .btn-learn-more {
    margin-left: auto;
    white-space: nowrap;
}

/* ===== ESTILOS PARA SERVIÇOS CATEGORIZADOS ===== */
/* Seções de Serviços */
.services-section {
    margin-bottom: 4rem;
}

.section-header {
    margin-bottom: 2.5rem;
}

.section-title {
    color: var(--siac-dark);
    font-weight: 600;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    color: #6b7280;
    font-size: 1.1rem;
    margin: 0;
}

/* Grid para Logos dos Serviços Empresariais */
.services-logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-logo-item {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.service-logo-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    border: 1px solid #e5e7eb;
    transition: var(--transition-smooth);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.service-logo-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: var(--siac-primary);
}

.service-logo-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--siac-primary), #0056b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition-smooth);
}

.service-logo-icon i {
    font-size: 2.5rem;
    color: #fff;
}

.service-logo-card:hover .service-logo-icon {
    transform: scale(1.1);
}

.service-logo-title {
    color: var(--siac-dark);
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.service-logo-desc {
    color: #6b7280;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

/* Animação escalonada para logos */
.service-logo-item:nth-child(1) { animation-delay: 0.1s; }
.service-logo-item:nth-child(2) { animation-delay: 0.2s; }
.service-logo-item:nth-child(3) { animation-delay: 0.3s; }
.service-logo-item:nth-child(4) { animation-delay: 0.4s; }
.service-logo-item:nth-child(5) { animation-delay: 0.5s; }
.service-logo-item:nth-child(6) { animation-delay: 0.6s; }

/* Ícones específicos por tipo de serviço */
.services-section .section-title .fa-building {
    color: var(--siac-primary);
}

.services-section .section-title .fa-handshake {
    color: #16a085;
}

.services-section .section-title .fa-briefcase {
    color: #f39c12;
}

/* Responsividade para logos */
@media (max-width: 768px) {
    .services-logos-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }
    
    .service-logo-card {
        padding: 1.5rem 1rem;
    }
    
    .service-logo-icon {
        width: 70px;
        height: 70px;
    }
    
    .service-logo-icon i {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 576px) {
    .services-logos-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .service-logo-card {
        padding: 1.25rem 0.75rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
}

/* Mensagem de Não Encontrado */
.no-results {
    text-align: center;
    padding: 60px 20px;
    color: #6b7280;
    animation: fadeIn 0.5s ease;
}

.no-results i {
    font-size: 4rem;
    margin-bottom: 20px;
    color: #d1d5db;
}

.no-results h4 {
    color: var(--siac-dark);
    margin-bottom: 10px;
    font-size: 1.5rem;
}

/* Animações */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { 
        opacity: 0;
        transform: translateX(-10px);
    }
    to { 
        opacity: 1;
        transform: translateX(0);
    }
}

/* Estados de Loading */
.search-input.loading {
    background-image: url("data:image/svg+xml,%3csvg width='20' height='20' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M10 3v2a5 5 0 0 0 0 10v2a7 7 0 0 1 0-14z' fill='%230075b0'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 20px center;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Responsividade para Filtros */
@media (max-width: 992px) {
    .services-filters-advanced {
        padding: 25px 20px;
    }
    
    .results-counter .d-flex {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start !important;
    }
    
    .view-toggle {
        align-self: flex-start;
    }
}

@media (max-width: 768px) {
    .services-filters-advanced {
        padding: 20px 15px;
    }
    
    .search-input,
    .filter-select,
    .sort-select {
        padding: 12px 15px 12px 40px;
        font-size: 14px;
    }
    
    .active-filters-label {
        width: 100%;
        margin-bottom: 10px;
        margin-right: 0;
    }
    
    .active-filters .d-flex {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 15px;
    }
    
    .services-grid.list-view .service-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .services-grid.list-view .service-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .services-grid.list-view .btn-learn-more {
        margin-left: 0;
        margin-top: 15px;
    }
}

@media (max-width: 576px) {
    .services-filters-advanced .row {
        margin: 0;
    }
    
    .services-filters-advanced .col-lg-5,
    .services-filters-advanced .col-lg-4,
    .services-filters-advanced .col-lg-3 {
        padding: 0;
        margin-bottom: 15px;
    }
    
    .search-suggestions {
        max-height: 200px;
    }
}

/* ===== SIAC CTA SECTION ===== */
.siac-cta-section {
	position: relative;
	background-attachment: fixed !important;
	background-position: center center !important;
	background-repeat: no-repeat !important;
	background-size: cover !important;
	height: 500px;
	/* padding: 80px 0; */
	display: flex;
	align-items: center;
}

.siac-cta-section .container {
    position: relative;
    z-index: 2;
}

.siac-cta-section .row {
    min-height: 500px;
    position: relative;
    align-items: center;
}

/* ===== COLUNA DIREITA ===== */
.siac-cta-section .col-lg-6:last-child {
    position: relative;
    display: flex;
    align-items: flex-end;
}

/* ===== IMPACT CONTENT ===== */
.siac-cta-section .impact-content {
    padding: 0;
    position: relative;
    z-index: 3;
}

.siac-cta-section .impact-badge {
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
    animation: pulseGlow 2s ease-in-out infinite;
}

.siac-cta-section .badge-text {
    background: linear-gradient(135deg, var(--siac-primary), #005a8b);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 25px rgba(0, 117, 176, 0.4);
}

.siac-cta-section .badge-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, var(--siac-primary), #005a8b);
    border-radius: 50px;
    opacity: 0.3;
    filter: blur(20px);
    z-index: 1;
}

.siac-cta-section .impact-title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.siac-cta-section .title-line {
    display: block;
    color: white;
    opacity: 0.9;
    font-size: 3rem;
    margin-bottom: 10px;
}

.siac-cta-section .title-highlight {
    display: block;
    background: linear-gradient(135deg, var(--siac-primary), #0ea5e9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    animation: shimmer 3s ease-in-out infinite;
}

.siac-cta-section .impact-subtitle {
    font-size: 1.5rem;
    color: white;
    line-height: 1.4;
    margin-bottom: 50px;
    opacity: 0.95;
    font-weight: 300;
}

.siac-cta-section .impact-subtitle strong {
    color: var(--siac-yellow);
    font-weight: 600;
}

.siac-cta-section .portal-signature {
    position: relative;
    padding-top: 30px;
}

.siac-cta-section .signature-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--siac-yellow), transparent);
    margin-bottom: 15px;
}

.siac-cta-section .signature-text {
    color: white;
    opacity: 0.8;
    font-size: 1rem;
    margin: 0;
}

.siac-cta-section .signature-text strong {
    color: var(--siac-yellow);
    font-weight: 600;
}

/* ===== IMPACT IMAGE ===== */
.siac-cta-section .impact-image {
    position: relative;
    height: 100%;
    min-height: 400px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
    z-index: 1;
}

.siac-cta-section .impact-image img {
	max-width: 100%;
	max-height: 650px;
	min-height: 394px;
	width: auto;
	height: auto;
	object-fit: contain;
	object-position: bottom center;
	filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
	animation: floatImage 6s ease-in-out infinite;
	display: block;
	margin-bottom: 7.5rem;
	position: relative;
}

.siac-cta-section .image-effects {
    position: absolute;
    top: 10%;
    left: 10%;
    right: 10%;
    bottom: 10%;
    pointer-events: none;
    z-index: 2;
}

.siac-cta-section .floating-element {
    position: absolute;
    background: rgba(253, 202, 15, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(253, 202, 15, 0.3);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--siac-yellow);
    font-size: 1.5rem;
}

.siac-cta-section .element-1 {
    top: 10%;
    left: 5%;
    animation: float1 4s ease-in-out infinite;
}

.siac-cta-section .element-2 {
    top: 40%;
    right: 5%;
    animation: float2 5s ease-in-out infinite;
}

.siac-cta-section .element-3 {
    bottom: 10%;
    left: 15%;
    animation: float3 6s ease-in-out infinite;
}

/* ===== ANIMATIONS ===== */
@keyframes pulseGlow {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes floatImage {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-10px) scale(1.02); }
}

@keyframes float1 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes float2 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(-180deg); }
}

@keyframes float3 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-25px) rotate(90deg); }
}



/* ===== RESPONSIVE IMPACT DESIGN ===== */
@media (max-width: 991px) {
    .siac-cta-section .impact-title {
        font-size: 3.5rem;
    }
    
    .siac-cta-section .title-line {
        font-size: 2.5rem;
    }
    
    .siac-cta-section .impact-subtitle {
        font-size: 1.3rem;
    }
    
    .siac-cta-section .impact-image {
        position: relative;
        width: 100%;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 20px;
        margin-top: 40px;
    }
    
    .siac-cta-section .impact-image img {
        max-height: 300px;
        width: auto;
    }
}

@media (max-width: 768px) {
    .siac-cta-section {
        height: auto;
        padding: 80px 0;
        background-attachment: scroll !important;
        min-height: auto;
    }
    
    .siac-cta-section .row {
        min-height: auto;
        flex-direction: column;
    }
    
    .siac-cta-section .impact-title {
        font-size: 3rem;
        margin-bottom: 30px;
    }
    
    .siac-cta-section .title-line {
        font-size: 2rem;
    }
    
    .siac-cta-section .impact-subtitle {
        font-size: 1.2rem;
        margin-bottom: 40px;
    }
    
    .siac-cta-section .impact-content {
        text-align: center;
    }
    
    .siac-cta-section .impact-image {
        position: relative;
        width: 100%;
        height: auto;
        display: block;
        text-align: center;
        padding: 15px;
        margin-top: 30px;
    }
    
    .siac-cta-section .impact-image img {
        max-height: 250px;
        position: relative;
    }
    
    .siac-cta-section .floating-element {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .siac-cta-section .col-lg-6:last-child {
        position: relative;
        overflow: visible;
    }
}

@media (max-width: 576px) {
    .siac-cta-section {
        height: auto;
        padding: 60px 0;
    }
    
    .siac-cta-section .impact-content {
        text-align: center;
    }
    
    .siac-cta-section .impact-title {
        font-size: 2.5rem;
        margin-bottom: 25px;
    }
    
    .siac-cta-section .title-line {
        font-size: 1.8rem;
    }
    
    .siac-cta-section .impact-subtitle {
        font-size: 1.1rem;
        margin-bottom: 35px;
    }
    
    .siac-cta-section .badge-text {
        font-size: 0.8rem;
        padding: 10px 20px;
    }
    
    .siac-cta-section .signature-text {
        font-size: 0.9rem;
    }
    
    .siac-cta-section .impact-image {
        position: relative;
        width: 100%;
        height: auto;
        display: block;
        text-align: center;
        padding: 10px;
        margin-top: 25px;
    }
    
    .siac-cta-section .impact-image img {
        max-height: 200px;
        position: relative;
    }
    
    .siac-cta-section .floating-element {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .siac-cta-section .col-lg-6:last-child {
        position: relative;
        overflow: visible;
    }
}

/* ===== SIAC NEWS SECTION ===== */
.siac-news-section {
    padding: 120px 0;
    background: #ffffff;
    position: relative;
}

.siac-news-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23e9ecef" fill-opacity="0.1"><circle cx="7" cy="7" r="7"/></g></g></svg>') repeat;
    opacity: 0.3;
}

.siac-news-section .container {
    position: relative;
    z-index: 2;
}

/* ===== NEWS HEADER ===== */
.news-header {
    margin-bottom: 80px;
}

.news-header .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--siac-primary);
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 117, 176, 0.3);
}

.news-header .section-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--siac-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.news-header .section-title .highlight {
    color: var(--siac-primary);
}

.news-header .section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===== FEATURED NEWS ===== */
.featured-news {
    margin-bottom: 80px;
}

.featured-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: stretch;
}

.featured-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.featured-image {
    flex: 1;
    position: relative;
    min-height: 300px;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-image .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
     display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 20px;
}

.featured-image .category-badge {
    background: rgba(255, 255, 255, 0.9);
    color: var(--siac-primary);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.featured-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-content .news-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.featured-content .news-date {
    color: #666;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.featured-content .news-category {
    background: var(--siac-yellow);
    color: var(--siac-dark);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.featured-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--siac-dark);
    margin-bottom: 20px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.featured-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.featured-title a:hover {
    color: var(--siac-primary);
    text-decoration: none;
}

.featured-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.btn-read-more {
    background: var(--siac-primary);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    align-self: flex-start;
    cursor: pointer;
    pointer-events: auto;
    position: relative;
    z-index: 10;
}

.btn-read-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 117, 176, 0.3);
    color: white;
    text-decoration: none;
}

/* ===== NEWS GRID ===== */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.news-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 0.8s ease-out forwards;
    position: relative;
}

.news-card:nth-child(1) { animation-delay: 0.1s; }
.news-card:nth-child(2) { animation-delay: 0.2s; }
.news-card:nth-child(3) { animation-delay: 0.3s; }
.news-card:nth-child(4) { animation-delay: 0.4s; }

.news-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 117, 176, 0.05), rgba(253, 202, 15, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.news-card:hover {
    transform: translateY(-10px) rotateX(2deg);
    box-shadow: 0 30px 60px rgba(0, 117, 176, 0.2);
}

.news-card:hover::before {
    opacity: 1;
}

.card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .card-image img {
    transform: scale(1.05);
}

.card-image .category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--siac-yellow);
    color: var(--siac-dark);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.card-content {
    padding: 25px;
    position: relative;
    z-index: 10;
}

.card-content .news-meta {
    margin-bottom: 15px;
}

.card-content .news-date {
    color: #666;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.news-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--siac-dark);
    margin-bottom: 15px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-title a:hover {
    color: var(--siac-primary);
    text-decoration: none;
}

.news-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.news-link {
    color: var(--siac-primary);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    pointer-events: auto;
    position: relative;
    z-index: 10;
}

.news-link:hover {
    color: var(--siac-yellow);
    text-decoration: none;
    transform: translateX(5px);
}

/* ===== READ MORE BUTTON (PÁGINA NOTÍCIAS) ===== */
.read-more {
    color: var(--siac-primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    pointer-events: auto;
    position: relative;
    z-index: 10;
    font-size: 0.9rem;
}

.read-more:hover {
    color: var(--siac-yellow);
    text-decoration: none;
    transform: translateX(5px);
}

.read-more i {
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(3px);
}

/* ===== NEWS FOOTER ===== */
.news-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.news-time {
    color: #999;
    font-size: 0.85rem;
}

/* ===== PÁGINA NOTÍCIAS - GARANTIR CLIQUES ===== */
.news-page .read-more,
.news-page .news-title a,
.news-page a {
    pointer-events: auto !important;
    position: relative;
    z-index: 15 !important;
}

.news-page .card-content {
    position: relative;
    z-index: 10;
}

.news-page .news-footer {
    position: relative;
    z-index: 15;
}

/* ===== NEWS CTA ===== */
.news-cta .btn {
    padding: 15px 40px;
    font-size: 1.1rem;
    border-radius: 50px;
    margin-bottom: 20px;
    background: var(--siac-primary);
    color: white;
    border: none;
    transition: all 0.3s ease;
}

.news-cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 117, 176, 0.3);
}

.news-cta .cta-description {
    color: #666;
    font-size: 1rem;
    margin: 0;
    max-width: 500px;
    margin: 0 auto;
}

/* ===== RESPONSIVE NEWS DESIGN ===== */
@media (max-width: 991px) {
    .news-header .section-title {
        font-size: 2.5rem;
    }
    
    .featured-card {
        flex-direction: column;
    }
    
    .featured-image {
        min-height: 250px;
    }
    
    .featured-content {
        padding: 30px;
    }
    
    .featured-title {
        font-size: 1.75rem;
    }
    
    .news-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .siac-news-section {
        padding: 80px 0;
    }
    
    .news-header {
        margin-bottom: 60px;
    }
    
    .news-header .section-title {
        font-size: 2rem;
    }
    
    .featured-news {
        margin-bottom: 60px;
    }
    
    .featured-content {
        padding: 25px;
    }
    
    .featured-title {
        font-size: 1.5rem;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 60px;
    }
}

@media (max-width: 576px) {
    .news-header .section-title {
        font-size: 1.75rem;
    }
    
    .news-header .section-subtitle {
        font-size: 1rem;
    }
    
    .featured-content {
        padding: 20px;
    }
    
    .featured-title {
        font-size: 1.3rem;
    }
    
    .featured-description {
        font-size: 1rem;
    }
    
    .card-content {
        padding: 20px;
    }
    
    .news-cta .btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

/* ===== SIAC LOCATIONS GALLERY ===== */
.siac-locations-gallery {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.siac-locations-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23e9ecef" fill-opacity="0.05"><circle cx="5" cy="5" r="5"/></g></g></svg>') repeat;
    opacity: 0.5;
}

.siac-locations-gallery .container {
    position: relative;
    z-index: 2;
}

/* ===== LOCATIONS HEADER ===== */
.locations-header .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--siac-primary);
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 117, 176, 0.3);
}

.locations-header .section-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--siac-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.locations-header .section-title .highlight {
    color: var(--siac-primary);
}

.locations-header .section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===== SIAC PANELS GALLERY ===== */
.siac-locations-gallery {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 0;
    margin-bottom: 0;
}

.siac-locations-gallery .container-fluid {
    padding: 0 !important;
    margin: 0 !important;
    max-width: none !important;
    width: 100% !important;
}

.siac-panels-gallery {
    display: flex;
    /* margin: 60px 0 0 0; */
    width: 100%;
    height: 750px;
    overflow: hidden;
    position: relative;
    box-sizing: border-box;
}

.siac-panel {
    flex: 1;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    transition: flex 0.6s cubic-bezier(0.4, 0.0, 0.2, 1), 
                filter 0.4s cubic-bezier(0.4, 0.0, 0.2, 1),
                transform 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    overflow: hidden;
    height: 750px;
    min-height: 750px;
    max-height: 750px;
    box-sizing: border-box;
    z-index: 1;
    border-radius: 0;
    opacity: 0;
    transform: scale(0.96);
    animation: panelFadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}


.siac-panel:nth-child(1) { animation-delay: 0.05s; }
.siac-panel:nth-child(2) { animation-delay: 0.1s; }
.siac-panel:nth-child(3) { animation-delay: 0.15s; }
.siac-panel:nth-child(4) { animation-delay: 0.2s; }
.siac-panel:nth-child(5) { animation-delay: 0.25s; }

.siac-panel:hover {
    flex: 5;
    z-index: 10;
    transform: scale(1.01);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.siac-panel:hover::before {
    opacity: 0.5;
}

.siac-panel:not(:hover) {
    flex: 0.7;
    filter: brightness(0.8) grayscale(0.2);
    transition: flex 0.5s cubic-bezier(0.4, 0.0, 0.2, 1), 
                filter 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.siac-panel.active {
    flex: 6;
    height: 600px !important;
    min-height: 600px !important;
    max-height: 600px !important;
}

/* ===== PANEL CONTENT ===== */
.panel-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    color: white;
    z-index: 3;
    transition: opacity 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 50%, transparent 100%);
}


/* ===== PANEL TEXT ELEMENTS ===== */
.panel-top,
.panel-middle,
.panel-bottom {
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s cubic-bezier(0.4, 0.0, 0.2, 1),
                opacity 0.2s cubic-bezier(0.4, 0.0, 0.2, 1);
    opacity: 1;
    transform: translateY(0);
    position: relative;
    z-index: 10;
}

.panel-top {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    margin-bottom: 10px;
    transform: translateY(0);
    letter-spacing: 0.5px;
}

.panel-top i {
    color: #d71f29;
    font-size: 16px;
}

.panel-middle {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: white;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
    line-height: 1.1;
}

.panel-bottom {
    font-size: 1.3rem;
    transform: translateY(20px);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    margin-bottom: 3rem;
}
.w-10 {
    width: 10rem !important;
}

/* ===== PANEL DETAILS (HIDDEN BY DEFAULT) ===== */
.panel-details {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s cubic-bezier(0.4, 0.0, 0.2, 1) 0.1s,
                transform 0.3s cubic-bezier(0.4, 0.0, 0.2, 1) 0.1s,
                max-height 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    max-height: 0;
    overflow: hidden;
}

.siac-panel:not(:hover) .panel-content {
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.siac-panel:hover .panel-content {
    opacity: 1;
    transition: opacity 0.2s cubic-bezier(0.4, 0.0, 0.2, 1) 0.1s;
}

.detail-text {
    font-size: 1.2rem;
    margin-bottom: 15px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
}

.detail-address {
    font-size: 1rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--siac-yellow);
    font-weight: 600;
}

.detail-btn {
    background: var(--siac-primary);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.detail-btn:hover {
    background: #005a8c;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 117, 176, 0.3);
    color: white;
    text-decoration: none;
}

/* ===== PANEL STATISTICS ===== */
.detail-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 15px;
}

.panel-details .stat-item {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 8px 12px;
    font-size: 0.85rem;
    font-weight: 500;
    color: white;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.panel-details .stat-item:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.panel-details .stat-item i {
    font-size: 0.9rem;
    color: var(--siac-yellow);
}

/* ===== PANEL SERVICES ===== */
.detail-services {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.service-tag {
    background: var(--siac-primary);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-tag:hover {
    background: #005a8c;
    transform: translateY(-1px);
}

/* ===== PANEL HOVER/ACTIVE STATES ===== */
.siac-panel:hover .panel-top,
.siac-panel.active .panel-top {
    transform: translateY(-15px);
    opacity: 0.8;
    font-size: 1.1rem;
}

.siac-panel:hover .panel-middle,
.siac-panel.active .panel-middle {
    transform: translateY(-8px);
    font-size: 2.6rem;
}

.siac-panel:hover .panel-bottom,
.siac-panel.active .panel-bottom {
    transform: translateY(-5px);
    opacity: 0.85;
    font-size: 1.6rem;
}

.siac-panel:hover .panel-details,
.siac-panel.active .panel-details {
    opacity: 1;
    transform: translateY(0);
}

/* Botão sempre visível nos painéis */
.panel-details .btn {
    opacity: 1 !important;
    transform: none !important;
    position: relative;
    z-index: 10;
    margin-top: 15px;
}

/* ===== PANEL ACTION BUTTON ===== */
.panel-action {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 5;
    opacity: 1;
    transform: none;
}

.panel-action .btn {
    width: 100%;
    background: rgba(0, 117, 176, 0.9);
    border: none;
    color: white;
    font-weight: 600;
    border-radius: 25px;
    padding: 10px 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.panel-action .btn:hover {
    background: var(--siac-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 117, 176, 0.4);
    color: white;
}

/* ===== NON-ACTIVE PANELS ===== */
.siac-panel:not(:hover):not(.active) {
    filter: brightness(0.85) contrast(1.1);
}

.siac-panels-gallery:hover .siac-panel:not(:hover):not(.active) {
    flex: 0.1;
    filter: brightness(0.6) grayscale(0.5) contrast(1.1);
    transform: scale(0.98);
    transition: flex 0.4s cubic-bezier(0.4, 0.0, 0.2, 1), 
                filter 0.3s cubic-bezier(0.4, 0.0, 0.2, 1),
                transform 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
}

/* ===== BACKGROUND ANIMATION ===== */
.siac-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
    transition: opacity 0.4s cubic-bezier(0.4, 0.0, 0.2, 1), 
                background 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    z-index: 2;
    pointer-events: none;
}

.siac-panel:hover::before,
.siac-panel.active::before {
    background: rgba(0, 0, 0, 0.2);
}

/* ===== LOCATION MODAL ===== */
.location-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.location-modal.active {
    display: flex;
    opacity: 1;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    max-width: 90vw;
    max-height: 90vh;
    width: 800px;
    display: flex;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    animation: modalSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.modal-close:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.05);
}

.modal-image-container {
    flex: 1;
    position: relative;
}

.modal-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== BACK TO TOP BUTTON - Estilo do CodePen ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--siac-primary);
    color: white;
    border: none;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 117, 176, 0.25);
    transform: translateY(20px);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top .progress-ring {
    position: absolute;
    top: 0;
    left: 0;
    transform: rotate(-90deg);
    width: 50px;
    height: 50px;
}

.back-to-top .progress-ring__circle {
    stroke: rgba(255, 255, 255, 0.3);
    stroke-width: 3;
    fill: transparent;
    transition: stroke-dashoffset 0.1s linear;
    stroke-linecap: round;
}

.back-to-top .progress-ring__progress {
    stroke: #ffffff;
    stroke-width: 3;
    fill: transparent;
    stroke-linecap: round;
    transition: stroke-dashoffset 0.1s linear;
}

.back-to-top i {
    position: relative;
    z-index: 2;
    font-size: 16px;
    transition: all 0.3s ease;
    color: white;
}

.back-to-top:hover {
    background: #005a8c;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 117, 176, 0.4);
}

.back-to-top:hover i {
    transform: translateY(-2px);
}

.back-to-top:active {
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(0, 117, 176, 0.3);
}

/* Animação de pulso para indicar interatividade */
.back-to-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.back-to-top:hover::before {
    opacity: 1;
    transform: scale(1);
}

/* Efeito de ripple no clique */
.back-to-top::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.back-to-top:active::after {
    width: 60px;
    height: 60px;
}

/* Micro-animação no ícone */
@keyframes chevron-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

.back-to-top:hover i {
    animation: chevron-bounce 1s infinite;
}

/* Ajuste para preferências de redução de movimento */
@media (prefers-reduced-motion: reduce) {
    .back-to-top {
        transition: opacity 0.2s linear;
        transform: none !important;
    }
    
    .back-to-top:hover i {
        transform: none;
        animation: none;
    }
    
    .back-to-top .progress-ring__circle,
    .back-to-top .progress-ring__progress {
        transition: none;
    }
    
    .back-to-top::before,
    .back-to-top::after {
        display: none;
    }
}

.modal-info {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modal-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--siac-dark);
    margin-bottom: 20px;
}

.modal-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.modal-address {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--siac-primary);
    font-size: 1rem;
    font-weight: 600;
}

/* ===== ANIMATIONS ===== */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(10px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 991px) {
    .siac-locations-gallery {
        padding: 100px 0;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
    }
    
    .locations-header .section-title {
        font-size: 2.5rem;
    }
    
    .siac-panels-gallery {
        height: 550px !important;
        min-height: 550px !important;
        max-height: 550px !important;
    }
    
    .siac-panel {
        height: 550px !important;
        min-height: 550px !important;
        max-height: 550px !important;
    }
    
    .siac-panel:hover,
    .siac-panel.active {
        height: 550px !important;
        min-height: 550px !important;
        max-height: 550px !important;
    }
    
    .panel-content {
        height: 550px !important;
        min-height: 550px !important;
        max-height: 550px !important;
    }
    
    .panel-middle {
        font-size: 2.5rem;
    }
    
    .siac-panel:hover .panel-middle,
    .siac-panel.active .panel-middle {
        font-size: 2rem;
    }
    
    .detail-text {
        font-size: 1.1rem;
    }
    
    .modal-content {
        flex-direction: column;
        max-width: 95vw;
        max-height: 85vh;
    }
    
    .modal-image-container {
        min-height: 300px;
    }
    
    .modal-info {
        padding: 30px;
    }
    
    .modal-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    .siac-locations-gallery {
        padding: 80px 0;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
    }
    
    .locations-header .section-title {
        font-size: 2rem;
    }
    
    .locations-header .section-subtitle {
        font-size: 1.1rem;
    }
    
    .siac-panels-gallery {
        flex-direction: column;
        height: auto !important;
        min-height: auto !important;
        max-height: none !important;
    }
    
    .siac-panel {
        height: 200px !important;
        min-height: 200px !important;
        max-height: 200px !important;
        flex: none;
        transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                   filter 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .siac-panel:hover,
    .siac-panel.active {
        flex: none;
        height: 300px !important;
        min-height: 300px !important;
        max-height: 300px !important;
    }
    
    .panel-middle {
        font-size: 2rem;
    }
    
    .panel-top,
    .panel-bottom {
        font-size: 1.2rem;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .siac-panel:hover .panel-middle,
    .siac-panel.active .panel-middle {
        font-size: 1.8rem;
    }
    
    .panel-details {
        bottom: 20px;
        left: 20px;
        right: 20px;
    }
    
    .detail-text {
        font-size: 1rem;
    }
    
    .detail-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    .modal-content {
        margin: 20px;
        width: auto;
    }
    
    .modal-info {
        padding: 25px;
    }
    
    .modal-title {
        font-size: 1.5rem;
    }

    .modal-description {
        font-size: 1rem;
    }
}

/* ===== PREFERÊNCIAS DE MOVIMENTO REDUZIDO ===== */
@media (prefers-reduced-motion: reduce) {
    .siac-panel {
        transition: flex 0.3s ease, filter 0.2s ease;
        animation: none;
    }
    
    .panel-top,
    .panel-middle,
    .panel-bottom,
    .panel-details {
        transition: all 0.2s ease;
    }
    
    .detail-btn,
    .modal-close,
    .service-tag {
        transition: all 0.1s ease;
    }
    
    .modal-content {
        animation: none;
    }
    
    .panel-details .stat-item {
        transition: all 0.1s ease;
    }
}@media (max-width: 576px) {
    .siac-locations-gallery {
        width: 100vw;
        margin-left: calc(-50vw + 50%);
    }
    
    .locations-header .section-title {
        font-size: 1.75rem;
    }
    
    .siac-panel {
        height: 150px !important;
        min-height: 150px !important;
        max-height: 150px !important;
    }
    
    .siac-panel:hover,
    .siac-panel.active {
        height: 250px !important;
        min-height: 250px !important;
        max-height: 250px !important;
    }
    
    .panel-middle {
        font-size: 1.8rem;
    }
    
    .panel-top,
    .panel-bottom {
        font-size: 1rem;
    }
    
    .siac-panel:hover .panel-middle,
    .siac-panel.active .panel-middle {
        font-size: 1.5rem;
    }
    
    .panel-details {
        bottom: 15px;
        left: 15px;
        right: 15px;
    }
    
    .detail-text {
        font-size: 0.9rem;
    }
    
    .detail-address {
        font-size: 0.85rem;
    }
    
    .detail-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    
    .modal-image-container {
        min-height: 250px;
    }
    
    .modal-info {
        padding: 20px;
    }
}

/* ===== SEÇÃO DE PARCEIROS - CAROUSEL SIMPLES ===== */
.siac-partners-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.siac-partners-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--siac-primary);
    margin-bottom: 20px;
}

.siac-partners-section .section-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===== CAROUSEL DE PARCEIROS ===== */
.partners-carousel-wrapper {
    margin-top: 40px;
}

.partners-carousel {
    padding: 20px 0;
}

/* Fallback: Grid layout se o carousel não carregar */
.partners-carousel:not(.owl-carousel),
.partners-carousel.carousel-fallback {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    max-width: 100%;
    overflow-x: auto;
    animation: slideInFromLeft 0.8s ease-out;
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.partners-carousel.owl-carousel .owl-nav {
    display: none;
}

.partners-carousel.owl-carousel .owl-dots {
    display: none;
}

/* Remover espaçamento padrão do Owl */
.partners-carousel.owl-carousel .owl-stage-outer {
    padding: 0;
}

.partner-logo {
	width: auto;
	height: 74px;
	object-fit: contain;
	filter: grayscale(50%);
	transition: all 0.3s ease;
	opacity: 0.8;
}

.partner-slide {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out forwards;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.partner-slide:nth-child(1) { animation-delay: 0.1s; }
.partner-slide:nth-child(2) { animation-delay: 0.2s; }
.partner-slide:nth-child(3) { animation-delay: 0.3s; }
.partner-slide:nth-child(4) { animation-delay: 0.4s; }
.partner-slide:nth-child(5) { animation-delay: 0.5s; }
.partner-slide:nth-child(6) { animation-delay: 0.6s; }

.partner-slide:hover .partner-logo {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1) rotate(2deg);
}

/* Parceiros clicáveis */
.partner-slide[data-website] {
    cursor: pointer;
    transition: all 0.3s ease;
}

.partner-slide[data-website]:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.partner-slide[data-website]:active {
    transform: translateY(-2px);
}

/* Responsividade - Parceiros */
@media (max-width: 768px) {
    .siac-partners-section {
        padding: 60px 0;
    }
    
    .siac-partners-section .section-title {
        font-size: 2rem;
    }
    
    .siac-partners-section .section-subtitle {
        font-size: 1rem;
    }
    
    .partner-slide {
        height: 100px;
        padding: 15px;
    }
    
    .partner-logo {
	max-width: 17rem;
	max-height: 100%;
}
}

/* ===== PÁGINA DE SUBUNIDADES - LAYOUT DUAS COLUNAS ===== */

/* Container Principal */
.subunidades-page {
    display: flex;
    min-height: 100vh;
    background: #f8f9fa;
}

/* ===== COLUNA DE NAVEGAÇÃO (ESQUERDA) ===== */
.navigation-column {
	width: 250px;
	background: white;
	padding: 20px;
	box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
	position: sticky;
	top: 20px;
	/* height: fit-content; */
	/* max-height: calc(100vh - 40px); */
	/* overflow-y: auto; */
	border-radius: 8px;
	z-index: 100;
	align-self: flex-start;
}

.navigation-column h3 {
    color: #333;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 5px;
}

/* Navegação */
.subunidades-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

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

.nav-link {
    display: block;
    color: #333;
    text-decoration: none;
    padding: 10px 15px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background: rgba(0, 117, 176, 0.1);
    color: var(--siac-primary);
    text-decoration: none;
}

.nav-link.active {
    background: var(--siac-primary);
    color: white;
}

/* Downloads */
.downloads-section {
    margin-bottom: 30px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.download-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    margin-bottom: 8px;
    background: #f8f9fa;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.download-item:hover {
    background: #e9ecef;
}

.download-item i {
    color: #dc3545;
    font-size: 16px;
}

.download-item span {
    font-size: 13px;
    font-weight: 500;
    color: #333;
}

/* CTA Agendamento */
.agendamento-section {
    background: #343a40;
    color: white;
    padding: 20px;
    border-radius: 8px;
}

.agendamento-section h4 {
    color: white;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.agendamento-section p {
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.btn-clique-aqui {
    display: inline-block;
    background: #007bff;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn-clique-aqui:hover {
    background: #0056b3;
    color: white;
    text-decoration: none;
}

/* ===== COLUNA DE CONTEÚDO (DIREITA) ===== */
.content-column {
    flex: 1;
    background: white;
}

/* Seções de Conteúdo */
.content-section {
    display: none;
    padding: 0;
}

.content-section.active {
    display: block;
}

/* ===== SEÇÃO DE INTRODUÇÃO ===== */
.intro-layout {
    display: flex;
    height: 100vh;
}

.intro-image {
    flex: 1;
}

.intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro-services {
    flex: 1;
    display: flex;
}

/* Serviços Públicos */
.services-publicos {
    flex: 1;
    padding: 40px 30px;
    background: white;
    border-right: 1px solid #e9ecef;
}

.identificacao-badge {
    background: #dc3545;
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: inline-block;
}

.services-publicos h3 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: #333;
}

.services-publicos ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.services-publicos li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 12px;
    font-weight: 500;
    color: #333;
    border-bottom: 1px solid #f0f0f0;
}

.services-publicos li:last-child {
    border-bottom: none;
}

.services-publicos i {
    color: #dc3545;
    font-size: 12px;
    width: 14px;
    text-align: center;
}

.badges {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.badge {
    background: rgba(0, 117, 176, 0.1);
    color: var(--siac-primary);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    border: 1px solid rgba(0, 117, 176, 0.2);
}

/* Serviços Privados */
.services-privados {
    flex: 1;
    padding: 40px 30px;
    background: #343a40;
    color: white;
}

.services-privados h3 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: white;
}

.services-privados ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.services-privados li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    font-size: 13px;
    font-weight: 500;
    color: white;
}

.services-privados i {
    color: #28a745;
    font-size: 12px;
    width: 14px;
    text-align: center;
}

/* ===== OUTRAS SEÇÕES ===== */
.content-section h1 {
	padding: 10px;
	margin: 8px;
	font-size: 2rem;
	font-weight: 700;
	color: var(--siac-dark);
	/* background: #f8f9fa; */
	/* border-bottom: 1px solid #e9ecef; */
}

.content-section p {
    padding: 40px;
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 768px) {
    .subunidades-page {
        flex-direction: column;
    }
    
    .navigation-column {
        width: 100%;
        order: 2;
        position: relative;
        top: auto;
        max-height: none;
        overflow-y: visible;
    }
    
    .content-column {
        order: 1;
    }
    
    .intro-layout {
        flex-direction: column;
        height: auto;
    }
    
    .intro-services {
        flex-direction: column;
    }
    
    .services-publicos,
    .services-privados {
        padding: 20px;
    }
    
    .content-section h1 {
        padding: 20px;
        font-size: 1.5rem;
    }
    
    .content-section p {
        padding: 20px;
    }
}

/* Mobile Menu Toggle (opcional) */
@media (max-width: 768px) {
    .navigation-column {
        position: relative;
        left: auto;
        height: auto;
        z-index: 100;
        transition: none;
    }
    
    .navigation-column.open {
        left: 0;
    }
}

/* ============================== */
/* MELHORIAS NAVEGAÇÃO FIXA */
/* ============================== */

/* Container principal com layout melhorado */
.services-page .row {
    display: flex;
    align-items: flex-start;
}

/* Garante que a coluna de conteúdo ocupe o espaço restante */
.content-column {
    flex: 1;
    min-width: 0; /* Importante para flex-wrap */
}

/* Scroll suave para navegação */
.navigation-column {
    scrollbar-width: thin;
    scrollbar-color: #e53e3e transparent;
}

.navigation-column::-webkit-scrollbar {
    width: 6px;
}

.navigation-column::-webkit-scrollbar-track {
    background: transparent;
}

.navigation-column::-webkit-scrollbar-thumb {
    background: #e53e3e;
    border-radius: 3px;
}

/* ===== MENU DE NAVEGAÇÃO DE CATEGORIAS DE SERVIÇOS ===== */
.services-category-navigation {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 2px solid #dee2e6;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: var(--header-height);
    z-index: 100;
}

.services-category-navigation .btn-group {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.services-category-navigation .btn {
    padding: 12px 20px;
    font-weight: 500;
    border: none;
    transition: var(--transition-smooth);
    text-decoration: none;
    position: relative;
}

.services-category-navigation .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.services-category-navigation .btn.btn-primary {
    background: linear-gradient(135deg, var(--siac-primary), #0056b3);
}

.services-category-navigation .btn.btn-success {
    background: linear-gradient(135deg, #28a745, #1e7e34);
}

.services-category-navigation .btn.btn-warning {
    background: linear-gradient(135deg, #ffc107, #e0a800);
    color: #212529;
}

.services-category-navigation .btn.btn-warning:hover {
    color: #212529;
}

/* Responsividade do menu */
@media (max-width: 768px) {
    .services-category-navigation {
        position: relative;
        top: auto;
    }
    
    .services-category-navigation .btn-group {
        flex-direction: column;
        width: 100%;
    }
    
    .services-category-navigation .btn {
        border-radius: 0 !important;
        margin: 1px 0;
        padding: 10px 16px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .services-category-navigation .btn {
        font-size: 0.85rem;
        padding: 8px 12px;
    }
    
    .services-category-navigation .btn i {
        display: none;
    }
}

.navigation-column::-webkit-scrollbar-thumb:hover {
    background: #c53030;
}

/* Indicador visual do item ativo na navegação */
.nav-link.active {
    background: linear-gradient(90deg, #e53e3e, #ff6b6b);
    color: white;
    border-left: 4px solid #c53030;
    transform: translateX(4px);
    box-shadow: 0 2px 8px rgba(229, 62, 62, 0.3);
}
.related-post-title a:hover {
	color: #0075b0 !important;
}


/* Responsividade aprimorada */
@media (min-width: 992px) {

}

@media (max-width: 991px) {
    .services-page .row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .navigation-column {
        position: relative;
        top: auto;
        max-height: 300px;
        order: 2;
    }
    
    .content-column {
        order: 1;
    }
}

@media (max-width: 576px) {
    .siac-partners-section .section-title {
        font-size: 1.8rem;
    }
    
    .partner-slide {
        height: 80px;
        padding: 10px;
    }
    
    .partner-logo {
	max-width: 17rem;
	max-height: 100%;
}
.partners-carousel-pagination {
	display: none;
}
.partners-carousel-nav {
	margin-top: -1rem;
}
.partner-logo {
	position: relative;
	left: 15%;
}
}
.partners-carousel-pagination {
	display: none;
}
.partners-carousel-nav {
	display: none!important;
}
/* ===== FOOTER SIAC ===== */
.siac-footer {
    background: var(--siac-secondary);
    color: #e9ecef;
    position: relative;
    overflow: hidden;
}

/* ===== FOOTER HEADER ===== */

.footer-brand-single {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 15px;
}

.brand-logo-single {
    max-height: 90px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: all 0.3s ease;
}

.institutional-tagline {
    margin: 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    line-height: 1.4;
    max-width: 600px;
}
.footer-credits span {
	color: #646c73;
}
.footer-credits strong {
	color: #fff;
	font-weight: 500;
}
@media (max-width: 768px) {
    .footer-header {
        padding: 20px 0;
    }
    
    .brand-logo-single {
        max-height: 60px;
    }
    
    .institutional-tagline {
        font-size: 0.85rem;
    }
}

/* ===== FOOTER MAIN ===== */
.footer-main {
    padding: 60px 0px 10px 0px;
    position: relative;
    z-index: 2;
}

.footer-brand {
    margin-bottom: 30px;
}

.footer-logo img {
    max-height: 50px;
    margin-bottom: 20px;
}

.logo-fallback .logo-text {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #adb5bd;
    margin-bottom: 25px;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.contact-item i {
    color: var(--siac-yellow);
    width: 16px;
}

/* ===== FOOTER SECTIONS ===== */
.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--siac-yellow);
}

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

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

.footer-links a {
    color: #adb5bd;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a i {
    font-size: 0.7rem;
    color: var(--siac-yellow);
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: var(--siac-yellow);
    transform: translateX(5px);
}

.footer-links a:hover i {
    transform: translateX(3px);
}

/* ===== FOOTER CONTACT ===== */
.footer-contact {
    margin-top: 20px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-detail i {
    color: var(--siac-yellow);
    font-size: 1.1rem;
    margin-top: 2px;
    width: 20px;
}

.contact-text strong {
    display: block;
    color: white;
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.contact-text span {
    display: block;
    color: #adb5bd;
    font-size: 0.85rem;
    line-height: 1.4;
}

/* ===== NEWSLETTER ===== */

.newsletter-content {
   /*  display: grid; */
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.newsletter-text h4 {
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.newsletter-text p {
    color: #adb5bd;
    font-size: 0.95rem;
    margin: 0;
}

.newsletter-form {
    display: flex;
    justify-content: flex-end;
}

.input-group {
    display: flex;
    width: 100%;
    max-width: 400px;
    border-radius: 25px;
    overflow: hidden;
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.input-group input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    outline: none;
    font-size: 0.9rem;
    background: transparent;
}

.input-group button {
    background: linear-gradient(135deg, var(--siac-yellow), #B8955F);
    color: white;
    border: none;
    padding: 12px 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.input-group button:hover {
    background: linear-gradient(135deg, #B8955F, var(--siac-yellow));
    transform: translateX(-2px);
}

/* ===== FOOTER BOTTOM ===== */
.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright p {
    margin: 0;
    font-size: 0.8rem;
    color: #adb5bd;
    margin-bottom: 8px;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
}

.footer-legal a {
    color: #6c757d;
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--siac-yellow);
}

.footer-legal .separator {
    color: #495057;
    margin: 0 5px;
}

/* ===== SOCIAL LINKS ===== */
.footer-social {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}

.social-text span {
    font-size: 0.85rem;
    color: #adb5bd;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-link.facebook {
    background: #3b5998;
    color: white;
}

.social-link.twitter {
    background: #1da1f2;
    color: white;
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
}

.social-link.linkedin {
    background: #0077b5;
    color: white;
}

.social-link.youtube {
    background: #ff0000;
    color: white;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border-color: var(--siac-yellow);
}

/* ===== GOVERNMENT SEAL ===== */
.government-seal {
    background: rgba(0, 0, 0, 0.5);
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.seal-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.seal-content img {
    max-height: 30px;
    opacity: 0.7;
}

.seal-text small {
    color: #6c757d;
    font-size: 0.75rem;
}

/* ===== RESPONSIVIDADE DO FOOTER ===== */
@media (max-width: 991px) {
    .footer-main {
        padding: 50px 0 30px;
    }
    
    .newsletter-content {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    .newsletter-form {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .footer-main {
        padding: 40px 0 25px;
    }
    
    .footer-newsletter {
        padding: 25px;
        margin-top: 30px;
    }
    
    .newsletter-text h4 {
        font-size: 1.1rem;
    }
    
    .contact-detail {
        margin-bottom: 15px;
    }
    
    .footer-social {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .input-group {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .footer-contact-quick {
        text-align: center;
    }
    
    .footer-title {
        text-align: center;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links {
        text-align: center;
    }
    
    .contact-detail {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .footer-copyright {
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
}

/* ==========================================================================
   PARTNERS SECTION - ADDITIONAL ANIMATIONS & ACCESSIBILITY
   ========================================================================== */

/* Additional Partner Animations */
.partner-item {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.partner-item:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Loading States */
.partner-item.loading {
    opacity: 0.6;
    pointer-events: none;
}

.partner-item.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #2c5aa0;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Accessibility Improvements */
.partner-item:focus {
    outline: 3px solid #2c5aa0;
    outline-offset: 2px;
}

.partner-item:focus-visible {
    outline: 3px solid #2c5aa0;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .partner-item {
        border: 2px solid #000;
    }
    
    .partner-item:hover {
        background: #f0f0f0;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .partner-item,
    .stat-number {
        transition: none;
        animation: none;
    }
    
    .partner-item:hover {
        transform: none;
    }
}

/* ===== PLACEHOLDER LINKS ===== */
.placeholder-link {
    cursor: default !important;
    opacity: 0.7;
    position: relative;
}

.placeholder-link:hover {
    opacity: 0.5;
    text-decoration: none !important;
}

.placeholder-link::after {
    content: ' (em breve)';
    font-size: 0.8em;
    color: #666;
    font-style: italic;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* ===== NEWS ARCHIVE PAGE ===== */
.page-hero {
    background: linear-gradient(135deg, var(--siac-primary) 0%, var(--siac-secondary) 100%);
    color: white;
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="80" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="60" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.breadcrumb {
    margin-bottom: 20px;
    font-size: 0.9rem;
    opacity: 0.9;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: white;
}

.breadcrumb .separator {
    margin: 0 10px;
    opacity: 0.6;
}

.breadcrumb .current {
    color: var(--siac-yellow);
    font-weight: 500;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.page-title i {
    color: var(--siac-yellow);
}

.page-description {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    line-height: 1.6;
}

/* Archive Header */
.archive-header {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.archive-title {
    color: var(--siac-dark);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.archive-meta {
    color: #666;
    font-size: 0.95rem;
}

.posts-count {
    display: flex;
    align-items: center;
    gap: 8px;
}

.posts-count i {
    color: var(--siac-primary);
}

/* News List */
.news-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 60px;
}

.news-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    display: flex;
    opacity: 0;
    transform: translateY(30px);
}

.news-item.animate-visible {
    opacity: 1;
    transform: translateY(0);
}

.news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.news-item-image {
    flex: 0 0 300px;
    position: relative;
    overflow: hidden;
}

.news-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.news-item:hover .news-item-image img {
    transform: scale(1.05);
}

.news-item-image .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 117, 176, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.news-item:hover .image-overlay {
    opacity: 1;
}

.image-overlay i {
    color: white;
    font-size: 2rem;
}

.category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--siac-yellow);
    color: var(--siac-dark);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.news-item-content {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.news-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: #666;
}

.news-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.news-meta i {
    color: var(--siac-primary);
}

.news-item-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.4;
}

.news-item-title a {
    color: var(--siac-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-item-title a:hover {
    color: var(--siac-primary);
}

.news-item-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.news-item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #666;
}

.author-info img {
    border-radius: 50%;
}

.read-more-btn {
    color: var(--siac-primary);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    color: var(--siac-yellow);
    transform: translateX(5px);
}

/* Archive Pagination */
.archive-pagination {
    text-align: center;
    margin: 60px 0;
}

.archive-pagination .page-numbers {
    display: inline-flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 10px;
}

.archive-pagination .page-numbers li {
    margin: 0;
}

.archive-pagination .page-numbers a,
.archive-pagination .page-numbers span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.archive-pagination .page-numbers a {
    background: white;
    color: var(--siac-primary);
    border: 2px solid var(--siac-primary);
}

.archive-pagination .page-numbers a:hover,
.archive-pagination .page-numbers .current {
    background: var(--siac-primary);
    color: white;
}

.archive-pagination .prev,
.archive-pagination .next {
    width: auto;
    padding: 0 20px;
    border-radius: 25px;
}

/* No Posts */
.no-posts {
    text-align: center;
    padding: 80px 20px;
}

.no-posts-content {
    max-width: 400px;
    margin: 0 auto;
}

.no-posts i {
    font-size: 4rem;
    color: var(--siac-primary);
    margin-bottom: 20px;
}

.no-posts h3 {
    color: var(--siac-dark);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.no-posts p {
    color: #666;
    margin-bottom: 30px;
}

/* Sidebar Widgets */
.news-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: white;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.widget-title {
    color: var(--siac-dark);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--siac-primary);
}

.widget-title i {
    color: var(--siac-primary);
}

/* Search Widget */
.search-form {
    position: relative;
}

.search-input-group {
    display: flex;
    position: relative;
}

.search-input-group input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 50px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.search-input-group input:focus {
    outline: none;
    border-color: var(--siac-primary);
}

.search-input-group button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--siac-primary);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-input-group button:hover {
    background: var(--siac-secondary);
}

/* Categories Widget */
.categories-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.categories-list li {
    margin-bottom: 10px;
}

.categories-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    background: #f8fafc;
    border-radius: 10px;
    text-decoration: none;
    color: var(--siac-dark);
    transition: all 0.3s ease;
}

.categories-list a:hover {
    background: rgba(0, 117, 176, 0.8)!important;
    color: white!important;
    transform: translateX(5px);
}

.category-count {
    background: var(--siac-yellow);
    color: var(--siac-dark);
    padding: 4px 8px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.categories-list a:hover .category-count {
    background: white;
    color: var(--siac-primary);
}

/* Recent Posts Widget */
.recent-posts-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recent-post-item {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e5e7eb;
}

.recent-post-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.recent-post-link {
    display: flex;
    gap: 15px;
    text-decoration: none;
    color: var(--siac-dark);
    transition: color 0.3s ease;
}

.recent-post-link:hover {
    color: var(--siac-primary);
}

.recent-post-meta {
    flex: 0 0 50px;
    text-align: center;
}

.recent-post-date {
    background: var(--siac-primary);
    color: white;
    padding: 8px 6px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    display: block;
}

.recent-post-content {
    flex: 1;
}

.recent-post-title {
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.4;
    margin: 0;
}

/* Tags Widget */
.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-item {
    background: #f8fafc;
    color: var(--siac-dark);
    padding: 8px 15px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tag-item:hover {
    background: var(--siac-primary);
    color: white;
    transform: translateY(-2px);
}

/* ===== SINGLE POST PAGE ===== */
.single-post-wrapper {
    min-height: 100vh;
}

/* Post Hero */
.post-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
}

.post-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.post-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
}

.post-hero-content {
    position: relative;
    z-index: 2;
}
.page-header .breadcrumb-item.active {
	color: var(--siac-yellow)!important;
	opacity: 0.9;
}

.post-category {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--siac-yellow);
    color: var(--siac-dark);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    margin-top: 4rem;
}

.post-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    font-size: 1rem;
    opacity: 0.9;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 15px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.meta-item i {
    color: var(--siac-yellow);
}

/* Post Content Section */
.post-content-section {
    padding: 80px 0;
    background: #f8fafc;
}

.single-post-content {
    background: white;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Social Share */
.social-share-top {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e7eb;
}

.share-label {
    font-weight: 600;
    color: var(--siac-dark);
}

.share-buttons {
    display: flex;
    gap: 10px;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
}

.share-btn.facebook { background: #1877f2; }
.share-btn.twitter { background: #1da1f2; }
.share-btn.linkedin { background: #0077b5; }
.share-btn.whatsapp { background: #25d366; }

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Post Text Content */
.post-text-content {
    color: var(--siac-dark);
    line-height: 1.8;
    font-size: 1.1rem;
}

.post-text-content p {
    margin-bottom: 20px;
}

.post-text-content h2,
.post-text-content h3,
.post-text-content h4 {
    color: var(--siac-dark);
    margin: 30px 0 20px;
    font-weight: 600;
}

.post-text-content h2 {
    font-size: 2rem;
    border-bottom: 3px solid var(--siac-primary);
    padding-bottom: 10px;
}

.post-text-content h3 {
    font-size: 1.5rem;
}

.post-text-content h4 {
    font-size: 1.3rem;
}

.post-text-content ul,
.post-text-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.post-text-content li {
    margin-bottom: 8px;
}

.post-text-content blockquote {
    background: #f8fafc;
    border-left: 4px solid var(--siac-primary);
    padding: 20px 30px;
    margin: 30px 0;
    font-style: italic;
    border-radius: 0 10px 10px 0;
}

.post-text-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 20px 0;
}

/* Post Tags */
.post-tags {
    margin: 40px 0;
    padding: 30px;
    background: #f8fafc;
    border-radius: 15px;
}

.tags-title {
    color: var(--siac-dark);
    font-size: 1.2rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tags-title i {
    color: var(--siac-primary);
}

.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tags-list .tag-item {
    background: white;
    color: var(--siac-dark);
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    border: 2px solid var(--siac-primary);
    transition: all 0.3s ease;
}

.tags-list .tag-item:hover {
    background: var(--siac-primary);
    color: white;
    transform: translateY(-2px);
}

/* Author Box */
.author-box {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: #f8fafc;
    border-radius: 15px;
    margin: 40px 0;
}

.author-avatar img {
    border-radius: 50%;
    border: 3px solid var(--siac-primary);
}

.author-info {
    flex: 1;
}

.author-name {
    color: var(--siac-dark);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.author-bio {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.author-links {
    display: flex;
    gap: 15px;
}

.author-links a {
    color: var(--siac-primary);
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.author-links a:hover {
    color: var(--siac-secondary);
}

/* Social Share Bottom */
.social-share-bottom {
    text-align: center;
    padding: 40px;
    background: var(--siac-primary);
    color: white;
    border-radius: 15px;
    margin: 40px 0;
}

.social-share-bottom h4 {
    color: white;
    margin-bottom: 20px;
}

.social-share-bottom .share-buttons {
    justify-content: center;
    gap: 15px;
}

.social-share-bottom .share-btn {
    width: auto;
    padding: 12px 20px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.social-share-bottom .share-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Post Navigation */
.post-navigation {
    background: white;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.navigation-title {
    color: var(--siac-dark);
    font-size: 1.3rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.navigation-title i {
    color: var(--siac-primary);
}

.navigation-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.nav-item {
    padding: 20px;
    background: #f8fafc;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.nav-item:hover {
    background: var(--siac-primary);
    color: white;
}

.nav-label {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #666;
    margin-bottom: 8px;
}

.nav-item:hover .nav-label {
    color: rgba(255, 255, 255, 0.8);
}

.nav-link {
    color: var(--siac-dark);
    text-decoration: none;
    font-weight: 500;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.nav-item:hover .nav-link {
    color: white;
}

.nav-next {
    text-align: right;
}

/* Related Posts */
.related-posts {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.related-title {
    color: var(--siac-dark);
    font-size: 1.5rem;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.related-title i {
    color: var(--siac-primary);
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.related-post-item {
    background: #f8fafc;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.related-post-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.related-post-image {
    height: 150px;
    overflow: hidden;
}

.related-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-post-item:hover .related-post-image img {
    transform: scale(1.05);
}

.related-post-content {
    padding: 20px;
}

.related-post-meta {
    margin-bottom: 10px;
}

.related-post-meta .post-date {
    color: #666;
    font-size: 0.85rem;
}

.related-post-title {
    margin-bottom: 15px;
}

.related-post-title a {
    color: var(--siac-dark);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.related-post-title a:hover {
    color: var(--siac-primary);
}

.related-read-more {
    color: var(--siac-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}
.member-name a:hover {
	color: #111 !important;
}
.related-read-more:hover {
    color: var(--siac-secondary)!important;
    transform: translateX(5px);
}

/* Sidebar for Single Post */
.single-post-sidebar {
    position: sticky;
    top: 100px;
}

.back-to-news {
    margin-bottom: 30px;
}

.back-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--siac-primary);
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    justify-content: center;
}

.back-btn:hover {
    color: var(--siac-light);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }
    
    .news-item {
        flex-direction: column;
    }
    
    .news-item-image {
        flex: none;
        height: 200px;
    }
    
    .post-title {
        font-size: 2.5rem;
    }
    
    .post-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .navigation-links {
        grid-template-columns: 1fr;
    }
    
    .related-posts-grid {
        grid-template-columns: 1fr;
    }
    
    .author-box {
        flex-direction: column;
        text-align: center;
    }
    
    .social-share-bottom .share-buttons {
        flex-wrap: wrap;
    }
    
    .archive-pagination .page-numbers {
        flex-wrap: wrap;
    }
}

.placeholder-link:hover::after {
    opacity: 1;
}

/* Sticky Header - Media Queries Responsivas */
@media (max-width: 991.98px) {
    .siac-header.sticky {
        top: 0 !important;
        padding: 8px 0;
    }
    
    .siac-header.sticky .logo img {
        height: 40px;
    }
    
    .siac-header.sticky .navbar-nav .nav-link {
        padding: 8px 12px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
   
    .siac-header.sticky {
        top: 0 !important;
        padding: 5px 0;
        background: #fff !important;
    }
    
    .siac-header.sticky .logo img {
        height: 35px;
    }
    
    .page-header {
        margin-top: 0;
    }
    
    .siac-topbar {
        height: 70px;
        display: flex;
        align-items: center;
    }
}

@media (max-width: 576px) {
    
    
    .siac-header.sticky {
        padding: 3px 0;
    }
    
    .siac-header.sticky .logo img {
        height: 30px;
    }
    
    .siac-header.sticky .navbar-toggler {
        padding: 2px 4px;
        font-size: 14px;
    }
    
    .siac-topbar {
        height: 60px;
        font-size: 12px;
    }
}

/* ===== MELHORIAS FINAIS DO MOBILE TOGGLE ===== */

/* Animação suave para o botão */
@keyframes togglePulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.mobile-toggle.active {
    animation: togglePulse 0.3s ease;
}

/* Efeito ripple no clique */
.mobile-toggle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(0, 117, 176, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
    pointer-events: none;
}

.mobile-toggle:active::after {
    width: 60px;
    height: 60px;
}

/* Melhor acessibilidade */
.mobile-toggle[aria-expanded="true"] {
    box-shadow: 0 0 0 3px rgba(0, 117, 176, 0.4);
}

/* States para dispositivos touch */
@media (hover: none) {
    .mobile-toggle:hover {
        transform: none;
    }
    
    .mobile-toggle:active {
        transform: scale(0.95);
        transition: transform 0.1s ease;
    }
}

/* ===== MENU RESPONSIVO SIMPLES ===== */
.navbar-toggler {
    border: 1px solid var(--siac-primary);
    padding: 4px 6px;
    background: white;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 2px rgba(0, 117, 176, 0.2);
}

.navbar-toggler[aria-expanded="true"] {
    background: var(--siac-primary);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    filter: invert(1);
}

.navbar-collapse {
    background: white;
    border: 1px solid #ddd;
    padding: 10px;
    margin-top: 5px;
}

.navbar-nav .nav-link {
    padding: 8px 12px;
    color: var(--siac-dark);
    border-left: 3px solid transparent;
}

.navbar-nav .nav-link:hover {
    color: var(--siac-primary);
    border-left-color: var(--siac-primary);
}

.dropdown-menu {
    background: #f5f5f5;
    border: 1px solid #ddd;
    padding: 5px;
}

.dropdown-item:hover {
    background: white;
    color: var(--siac-primary);
}

@media (max-width: 991px) {
    .navbar-toggler {
        display: block;
    }
}

/* ===== PERFIL CIRCULAR - DESIGN UNIFICADO ===== */
.profile-image {
    width: 480px;
    height: 480px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-radius: 50%;
    border: 8px solid white;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: var(--transition-smooth);
    object-position: top;
}

.profile-image img:hover {
    transform: scale(1.1);
}

.profile-image-placeholder {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--siac-primary), var(--siac-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border: 8px solid white;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.profile-image-placeholder i {
    font-size: 5rem;
    color: white;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
    .profile-image,
    .profile-image-placeholder {
        width: 220px;
        height: 220px;
    }
    
    .profile-image-placeholder i {
        font-size: 3.5rem;
    }
}

@media (max-width: 576px) {
    .profile-image,
    .profile-image-placeholder {
        width: 180px;
        height: 180px;
        border-width: 6px;
    }
    
    .profile-image-placeholder i {
        font-size: 2.5rem;
    }
}

/* ===== DESIGN CIRCULAR PARA ADJUNTOS ===== */
.team-card {
    text-align: center;
    padding: 2rem 1rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.team-card .profile-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem;
}

.team-card .profile-image-placeholder {
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem;
}
.member-info-circular {
	text-align: center;
	max-width: 32vw;
	padding: 2em;
}

.member-info-circular .member-name {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--siac-dark);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.member-info-circular .member-position {
    font-size: 0.9rem;
    color: var(--siac-primary);
    font-weight: 500;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.member-info-circular .member-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

.member-info-circular .btn-profile {
    background: var(--siac-primary);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 8px;
}

.member-info-circular .btn-profile:hover {
    background: var(--siac-secondary);
    transform: translateY(-2px);
}

.member-info-circular .btn-linkedin {
    background: #0077b5;
    color: white;
    padding: 10px;
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition-smooth);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.member-info-circular .btn-linkedin:hover {
    background: #005885;
    transform: translateY(-2px);
}

/* Grid responsivo para adjuntos */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Responsive para cards dos adjuntos */
@media (max-width: 768px) {
    .team-card .profile-image,
    .team-card .profile-image-placeholder {
        width: 160px;
        height: 160px;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .member-info-circular .member-name {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .team-card .profile-image,
    .team-card .profile-image-placeholder {
        width: 140px;
        height: 140px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .team-card {
        padding: 1.5rem 1rem;
    }
    
    .member-info-circular .member-actions {
        flex-direction: column;
        gap: 10px;
    }
}

/* ===== LINKEDIN HOVER EFFECT ===== */
.member-photo-container {
    position: relative;
    display: inline-block;
}

.linkedin-hover-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #0077b5;
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8) translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    box-shadow: 0 8px 25px rgba(0, 119, 181, 0.3);
}

.member-photo-container:hover .linkedin-hover-btn {
    opacity: 1;
    visibility: visible;
    transform: scale(1) translateY(0);
}

.linkedin-hover-btn:hover {
    background: #005885;
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 119, 181, 0.4);
}

/* Responsive para o hover effect */
@media (max-width: 768px) {
    .linkedin-hover-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        top: 10px;
        right: 10px;
    }
}

@media (max-width: 576px) {
    .linkedin-hover-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
        top: 8px;
        right: 8px;
    }
}

/* ===== NEWSLETTER SECTION ===== */
.newsletter-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #2271b1 0%, #1e5a8a 100%);
    padding: 80px 0;
}

.newsletter-wrapper {
    position: relative;
    z-index: 2;
}

/* Newsletter Icon */
.newsletter-icon {
    margin-bottom: 30px;
}

.newsletter-icon-wrapper {
    background: rgba(255,255,255,0.1);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.newsletter-icon-wrapper:hover {
    background: rgba(255,255,255,0.15);
    transform: scale(1.05);
    box-shadow: 0 8px 32px rgba(255,255,255,0.1);
}

.newsletter-icon-wrapper i {
    font-size: 36px;
    color: #ffffff;
    animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Newsletter Content */
.newsletter-title {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.newsletter-description {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Newsletter Form */
.newsletter-form {
    margin-bottom: 30px;
}

.newsletter-input-group {
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
}

.newsletter-input {
    width: 100%;
    padding: 18px 24px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    background: rgba(255,255,255,0.95);
    color: #333;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    padding-right: 160px;
    transition: all 0.3s ease;
    outline: none;
}

.newsletter-input:focus {
    background: rgba(255,255,255,1);
    box-shadow: 0 0 0 3px rgba(255,255,255,0.3), 0 8px 30px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}

.newsletter-input::placeholder {
    color: #999;
}

.newsletter-button {
    position: absolute;
    right: 6px;
    top: 6px;
    bottom: 6px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 0 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 10px rgba(255,107,53,0.3);
    min-width: 150px;
    justify-content: center;
}

.newsletter-button:hover {
    background: linear-gradient(135deg, #ff5722 0%, #f57c00 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255,107,53,0.4);
}

.newsletter-button:active {
    transform: translateY(0);
}

.newsletter-button i {
    font-size: 14px;
}

/* Newsletter Features */
.newsletter-features {
    margin-top: 30px;
}

.newsletter-feature-item {
    color: rgba(255,255,255,0.8);
    margin-bottom: 15px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.newsletter-feature-item:hover {
    color: rgba(255,255,255,1);
    transform: translateY(-2px);
}

.newsletter-feature-item i {
    color: #4ade80;
    font-size: 16px;
}

/* Newsletter Background Effects */
.newsletter-bg-effects {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.newsletter-float-element {
    position: absolute;
    border-radius: 50%;
    opacity: 0.5;
}

.newsletter-float-1 {
    top: 20%;
    left: 10%;
    width: 100px;
    height: 100px;
    background: rgba(255,255,255,0.05);
    animation: float 6s ease-in-out infinite;
}

.newsletter-float-2 {
    top: 60%;
    right: 15%;
    width: 150px;
    height: 150px;
    background: rgba(255,255,255,0.03);
    animation: float 8s ease-in-out infinite reverse;
}

.newsletter-float-3 {
    bottom: 20%;
    left: 20%;
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.04);
    animation: float 7s ease-in-out infinite;
    animation-delay: 2s;
}

/* Animação Float para elementos decorativos */
@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Efeitos de partículas adicionais */
.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="80" r="1" fill="rgba(255,255,255,0.08)"/><circle cx="40" cy="70" r="1.5" fill="rgba(255,255,255,0.06)"/><circle cx="90" cy="30" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="10" cy="90" r="1.2" fill="rgba(255,255,255,0.07)"/></svg>') repeat;
    animation: particleFloat 20s linear infinite;
    pointer-events: none;
}

@keyframes particleFloat {
    0% {
        transform: translateY(0px);
    }
    100% {
        transform: translateY(-100px);
    }
}

/* Efeito de brilho no botão */
.newsletter-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.newsletter-button:hover::before {
    left: 100%;
}

/* Efeito de ondas no background */
.newsletter-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M0,50 C300,100 900,0 1200,50 L1200,120 L0,120 Z" fill="rgba(255,255,255,0.05)"/></svg>') no-repeat;
    background-size: cover;
    pointer-events: none;
}

/* Animação de entrada dos elementos */
.newsletter-wrapper > * {
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.8s ease-out forwards;
}

.newsletter-icon {
    animation-delay: 0.2s;
}

.newsletter-content .newsletter-text {
    animation-delay: 0.4s;
}

.newsletter-form {
    animation-delay: 0.6s;
}

.newsletter-features {
    animation-delay: 0.8s;
}

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

/* Melhorias de acessibilidade */
.newsletter-input:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
}

.newsletter-button:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
}

/* Responsividade da newsletter */
@media (max-width: 768px) {
    .newsletter-section {
        padding: 60px 0;
    }
    
    .newsletter-title {
        font-size: 2rem !important;
    }
    
    .newsletter-description {
        font-size: 1.1rem !important;
        margin-bottom: 30px !important;
    }
    
    .newsletter-input-group {
        max-width: 100% !important;
        flex-direction: column;
        gap: 15px;
    }
    
    .newsletter-input {
        padding-right: 24px !important;
        width: 100%;
    }
    
    .newsletter-button {
        position: static !important;
        width: 100%;
        border-radius: 50px !important;
        padding: 18px 30px !important;
        justify-content: center;
        min-width: auto;
    }
    
    .newsletter-features .col-6 {
        margin-bottom: 10px;
    }
    
    .newsletter-feature-item {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .newsletter-section {
        padding: 50px 0;
    }
    
    .newsletter-icon-wrapper {
        width: 60px !important;
        height: 60px !important;
    }
    
    .newsletter-icon-wrapper i {
        font-size: 24px !important;
    }
    
    .newsletter-title {
        font-size: 1.8rem !important;
        margin-bottom: 15px !important;
    }
    
    .newsletter-description {
        font-size: 1rem !important;
        margin-bottom: 25px !important;
    }
    
    .newsletter-input {
        font-size: 14px;
        padding: 16px 20px;
    }
    
    .newsletter-button {
        padding: 16px 25px !important;
        font-size: 14px;
    }
    
    .newsletter-feature-item {
        font-size: 12px;
        margin-bottom: 10px;
    }
    
    .newsletter-float-1,
    .newsletter-float-2,
    .newsletter-float-3 {
        display: none;
    }
}

/* ===== NEWSLETTER SECTION ADJUSTMENTS ===== */

.newsletter-section .newsletter-text h4 {
    color: #ffffff;
}

.newsletter-section .newsletter-text p {
    color: rgba(255, 255, 255, 0.85);
}

/* Responsividade da newsletter section */
@media (max-width: 768px) {
    .newsletter-section {
        padding: 60px 0 !important;
    }
    
    .newsletter-section .newsletter-content {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        text-align: center;
    }
    
    .newsletter-section .newsletter-form {
        justify-content: center !important;
    }
    
    .newsletter-section .input-group {
        max-width: 100% !important;
    }
}

@media (max-width: 576px) {
    .newsletter-section {
        padding: 50px 0 !important;
    }
    
    .newsletter-section .footer-newsletter {
        padding: 25px 20px !important;
        margin-top: 0 !important;
    }
    
    .newsletter-section .newsletter-text h4 {
        font-size: 1.2rem !important;
    }
    
    .newsletter-section .newsletter-text p {
        font-size: 0.9rem !important;
    }
    
    .newsletter-section .input-group {
        flex-direction: column !important;
        border-radius: 12px !important;
    }
    
    .newsletter-section .input-group input {
        padding: 15px 20px !important;
        border-radius: 12px 12px 0 0 !important;
    }
    
    .newsletter-section .input-group button {
        border-radius: 0 0 12px 12px !important;
        padding: 15px 20px !important;
        justify-content: center !important;
    }
}

/* Newsletter Section - Simple Design */
.newsletter-info {
    float: left;
    margin-bottom: 0;
}

.newsletter-info h3 {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.newsletter-info p {
    color: #fff;
    font-size: 16px;
    margin-bottom: 0;
}

.newsletter-element {
    float: right;
    width: 66.66%;
}

.newsletter-element form {
    display: flex;
    align-items: center;
    margin: 0;
}

.newsletter-element p {
    margin: 0;
    padding: 0 5px;
    float: left;
}

.input-text {
    width: 100%;
    padding: 12px 20px;
    border: none;
    border-radius: 50px;
    font-size: 14px;
    background: #fff;
    color: #333;
    outline: none;
}

.input-text::placeholder {
    color: #999;
}

.newsletter-submit {
    width: 100%;
    padding: 12px 24px;
    border: none;
    background: var(--siac-primary);
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 117, 176, 0.3);
    transition: var(--transition-smooth);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.newsletter-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.1);
    transition: left 0.5s;
}

.newsletter-submit:hover {
    background: #005a8c;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 117, 176, 0.4);
    color: white;
}

.newsletter-submit:hover::before {
    left: 100%;
}

/* Responsive */
@media (max-width: 768px) {
    .quick_newsletter {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-info {
        width: 100%;
        margin-bottom: 20px;
        float: none;
    }
    
    .newsletter-element {
        width: 100%;
        float: none;
    }
    
    .newsletter-element form {
        flex-direction: column;
        gap: 15px;
    }
    
    .newsletter-element p {
        width: 100%;
        margin-bottom: 0;
        float: none;
    }
}

/* =============================================
   NOVO MENU HAMBURGER ACCORDION 
   ============================================= */

/* Reset */
ul { 
    list-style: none; 
    margin: 0;
    padding: 0;
}

a { 
    text-decoration: none; 
    color: inherit;
}

/* ===== NAVIGATION SYSTEM - RESPONSIVO REAL ===== */

/* Container principal da navegação */
.main-navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

/* ===== MENU DESKTOP ===== */
.desktop-menu {
    display: flex;
    align-items: center;
}

.main-nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
}

.main-nav-list > li {
    position: relative;
}

.main-nav-list > li > a {
    display: block;
    padding: 15px 20px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.main-nav-list > li > a:hover,
.main-nav-list > li.current-menu-item > a {
    background: rgba(255, 255, 255, 0.1);
    border-bottom-color: var(--siac-yellow);
    color: var(--siac-yellow);
}

/* Submenus Desktop */
.main-nav-list .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-radius: 0 0 8px 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 999;
    list-style: none;
    margin: 0;
    padding: 10px 0;
}

.main-nav-list > li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-nav-list .sub-menu li a {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.main-nav-list .sub-menu li a:hover {
    background: #f8f9fa;
    border-left-color: var(--siac-blue);
    color: var(--siac-blue);
    padding-left: 25px;
}

/* ===== MENU RESPONSIVO SIMPLES ===== */

/* Menu Desktop */
.main-navigation {
    display: flex;
    align-items: center;
}

.desktop-nav .nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.desktop-nav .nav-menu li {
    position: relative;
}

.desktop-nav .nav-menu li a:hover {
    color: var(--siac-yellow);
}

/* Menu Toggle Button (Hamburger) */
#menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
    width: 40px;
    height: 40px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#menu-toggle:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

/* Linhas do hambúrguer */
.hamburger-line {
	display: block;
	width: 24px;
	height: 2px;
	background-color: #111 !important;
	margin: 0px 0;
	transition: all 0.3s ease;
	border-radius: 2px;
	border: 1.5px solid #0075b0;
}
#menu-toggle:hover .hamburger-line {
    background-color: var(--siac-yellow);
}

/* Animação quando menu aberto */
#menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

#menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

#menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mostrar botão em dispositivos móveis */
@media (max-width: 991px) {
    #menu-toggle {
        display: flex !important;
        position: relative !important;
        z-index: 1000 !important;
    }
    
    /* Ocultar menu desktop */
    .desktop-nav {
        display: none !important;
    }
    
    /* Garantir que o header content seja visível */
    .header-content {
        position: relative;
        z-index: 999;
    }
}

/* Dropdown Arrow */
.desktop-nav .nav-menu li.menu-item-has-children > a::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

/* Submenu Dropdown */
.submenu li a {
	color: #111 !important;
}
.desktop-nav .nav-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
    margin: 0;
    padding: 0.5rem 0;
    border-top: 3px solid var(--siac-primary);
}

.desktop-nav .nav-menu .sub-menu li a {
    color: #333;
    padding: 0.75rem 1.5rem;
    border-bottom: 1px solid #f0f0f0;
    font-weight: 400;
    font-size: 0.95rem;
}

.desktop-nav .nav-menu .sub-menu li:last-child a {
    border-bottom: none;
}

.desktop-nav .nav-menu .sub-menu li a:hover {
    background: #f8f9fa;
    color: var(--siac-primary);
    padding-left: 2rem;
}

/* Show dropdown on hover */
.desktop-nav .nav-menu li.menu-item-has-children:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.desktop-nav .nav-menu li.menu-item-has-children:hover > a::after {
    transform: rotate(180deg);
}

/* Sub-submenu (terceiro nível) */
.desktop-nav .nav-menu .sub-menu .menu-item-has-children {
    position: relative;
}

.desktop-nav .nav-menu .sub-menu .menu-item-has-children > a::after {
    content: '\f105';
    float: right;
}

.desktop-nav .nav-menu .sub-menu .sub-menu {
    top: 0;
    left: 100%;
    margin-left: 0.5rem;
}

.desktop-nav .nav-menu .sub-menu .menu-item-has-children:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


/* ===== RESPONSIVIDADE ===== */
.siac-cta-section {
	display: none;
}
#slide-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: #fff;
    z-index: 9999;
    transition: right 0.3s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
}

#slide-menu.active {
    right: 0;
}

/* Overlay do menu */
#menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

#menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Header do slide menu */
.slide-menu-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa;
}

.slide-menu-logo {
    max-height: 40px;
    display: flex;
    align-items: center;
}

.slide-menu-logo-img,
.slide-menu-logo .custom-logo {
    max-height: 40px;
    width: auto;
}

/* Fallback text logo no slide menu */
.slide-brand-text {
    text-align: left;
}

.slide-brand-siac {
    font-size: 20px;
    font-weight: 800;
    color: var(--siac-primary);
    display: block;
    line-height: 1;
}

.slide-brand-tagline {
    font-size: 10px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-top: 2px;
}

#menu-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
    padding: 5px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

#menu-close:hover {
    background: rgba(0, 0, 0, 0.1);
    color: var(--siac-yellow);
}

/* Navegação do slide menu */
.slide-menu-nav {
    padding: 20px 0;
}

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

.slide-menu-nav ul li {
    border-bottom: 1px solid #eee;
}

.slide-menu-nav ul li:last-child {
    border-bottom: none;
}

.slide-menu-nav ul li a {
	display: block;
	padding: 15px 20px;
	color: #333;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	position: relative;
	text-transform: uppercase;
}

.slide-menu-nav ul li a:hover,
.slide-menu-nav ul li a:focus {
    background: #f8f9fa;
    color: var(--siac-primary);
    padding-left: 30px;
}

.slide-menu-nav ul li.current-menu-item > a {
    color: var(--siac-primary);
    background: rgba(255, 193, 7, 0.1);
}

/* Estilo especial para itens com submenu */
.slide-menu-nav li.menu-item-has-children > a {
    position: relative;
    font-weight: 600;
}

.slide-menu-nav li.menu-item-has-children > a:hover {
    background: #e9ecef;
}

.slide-menu-nav li.menu-item-has-children.active > a {
    background: #e3f2fd;
    color: var(--siac-primary);
}

/* Estilos específicos para submenus de segundo nível */
.slide-menu-nav .sub-menu li.menu-item-has-children > a {
    font-weight: 600;
    background: #f8f9fa;
}

.slide-menu-nav .sub-menu li.menu-item-has-children > a:hover {
    background: #e9ecef;
}

.slide-menu-nav .sub-menu li.menu-item-has-children.active > a {
    background: #e8f4fd;
    color: #007bff;
}

/* Submenus no slide menu */
.slide-menu-nav .sub-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: #f8f9fa;
    border-left: 3px solid transparent;
}

.slide-menu-nav li.menu-item-has-children.active .sub-menu {
    max-height: 500px;
    border-left-color: var(--siac-primary);
}

.slide-menu-nav .sub-menu li {
    border-bottom: 1px solid #e9ecef;
}

.slide-menu-nav .sub-menu li:last-child {
    border-bottom: none;
}

.slide-menu-nav .sub-menu li a {
    padding: 12px 40px;
    font-size: 14px;
    color: #666;
    transition: all 0.3s ease;
    position: relative;
}

.slide-menu-nav .sub-menu li a:hover {
    color: var(--siac-primary);
    background: #fff;
    padding-left: 50px;
}

.slide-menu-nav .sub-menu li a::before {
    content: '→';
    position: absolute;
    left: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: var(--siac-primary);
}

.slide-menu-nav .sub-menu li a:hover::before {
    opacity: 1;
}

/* Seta para submenus */
.slide-menu-nav li.menu-item-has-children > a::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 20px;
    transition: transform 0.3s ease;
}

.slide-menu-nav li.menu-item-has-children.active > a::after {
    transform: rotate(180deg);
}

/* Submenus de terceiro nível */
.slide-menu-nav .sub-menu .sub-menu {
    background: #e9ecef;
    border-left: 3px solid #dee2e6;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.slide-menu-nav .sub-menu li.menu-item-has-children.active .sub-menu {
    max-height: 400px;
    border-left-color: #007bff;
}

.slide-menu-nav .sub-menu .sub-menu li {
    border-bottom: 1px solid #d6d8db;
}

.slide-menu-nav .sub-menu .sub-menu li:last-child {
    border-bottom: none;
}

.slide-menu-nav .sub-menu .sub-menu li a {
    padding: 10px 60px;
    font-size: 13px;
    color: #555;
    transition: all 0.3s ease;
    position: relative;
}

.slide-menu-nav .sub-menu .sub-menu li a:hover {
    color: #007bff;
    background: #f8f9fa;
    padding-left: 70px;
}

.slide-menu-nav .sub-menu .sub-menu li a::before {
    content: '•';
    position: absolute;
    left: 40px;
    color: #007bff;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.slide-menu-nav .sub-menu .sub-menu li a:hover::before {
    opacity: 1;
}

/* Setas para submenus de terceiro nível */
.slide-menu-nav .sub-menu li.menu-item-has-children > a::after {
    right: 40px;
    font-size: 12px;
}

/* Indicador visual de nível */
.slide-menu-nav .sub-menu li.menu-item-has-children > a {
    border-left: 2px solid transparent;
}

.slide-menu-nav .sub-menu li.menu-item-has-children.active > a {
    border-left-color: #007bff;
    background: #f1f3f4;
}

/* Footer do slide menu */
.slide-menu-footer {
    padding: 20px;
    border-top: 1px solid #eee;
    background: #f8f9fa;
    margin-top: auto;
}

.slide-menu-footer .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 24px;
    background: var(--siac-primary);
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 117, 176, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.slide-menu-footer .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.1);
    transition: left 0.5s;
}

.slide-menu-footer .btn:hover {
    background: #005a8c;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 117, 176, 0.4);
    color: white;
}

.slide-menu-footer .btn:hover::before {
    left: 100%;
}

/* Tablet e Mobile */
@media (max-width: 991px) {
    .desktop-nav {
        display: none;
    }
    .hero-features {
	display: none;
}
    
    /* Ajustar header actions em mobile */
    .header-actions .btn-perfil {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .header-actions .btn-perfil span {
        display: none;
    }
}

/* Desktop grande */
@media (min-width: 1200px) {
    .main-nav-list > li > a {
        padding: 15px 25px;
        font-size: 16px;
    }
    
    .main-nav-list .sub-menu {
        min-width: 250px;
    }
}

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

/* Indicador de submenu no desktop */
.main-nav-list > li.menu-item-has-children > a::after {
    content: '\25BC';
    font-size: 10px;
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.main-nav-list > li.menu-item-has-children:hover > a::after {
    transform: rotate(180deg);
}

/* Loading states */
.main-navigation.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .main-nav-list > li > a {
        border: 1px solid;
    }
}

/* ===== LOGO TEXTO FALLBACK ===== */
.brand-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.brand-siac {
    font-size: 2.2rem;
    font-weight: 800;
    color: white;
    letter-spacing: 1px;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.brand-tagline {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
    font-weight: 500;
    max-width: 200px;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .brand-siac {
        font-size: 1.8rem;
    }
    .section-title {
	text-align: center !important;
}
.feature-item {
	display: block;
}
.contact-detail {
	display: block;
}
    .brand-tagline {
        font-size: 0.65rem;
        max-width: 160px;
    }
}

@media (max-width: 480px) {
    .brand-text {
        align-items: center;
        text-align: center;
    }
    
    .brand-siac {
        font-size: 1.6rem;
    }
    
    .brand-tagline {
        font-size: 0.6rem;
        max-width: 140px;
    }
}

/* ===== LOGO MENU SLIDE ===== */
.slide-brand-text {
    display: flex;
    align-items: center;
}

.slide-brand-siac {
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}


/* ============================== */
/* TEMPLATE PADRÃO DE SUBUNIDADE - SEGUINDO IMAGEM DE REFERÊNCIA */
/* ============================== */

/* Container Principal */
.subunit-container {
    max-width: 100%;
    background: white;
    border-radius: 0;
    overflow: hidden;
}

/* Hero Principal da Subunidade */
.subunit-hero-main {
    position: relative;
    margin-bottom: 2rem;
}

.hero-image-wrapper {
    position: relative;
    height: 600px;
    overflow: hidden;
    border-radius: 8px;
}

.hero-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay e estilos antigos (NÃO MAIS USADOS - movidos para seção separada) */
/*
.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
    padding: 2rem 1.5rem 1rem;
}

.subunit-main-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 0 0 0.5rem 0;
    color: white;
}

.inauguration-info {
    font-size: 1rem;
    margin: 0;
    opacity: 0.9;
    color: #ccc;
}
*/

/* ============================== */
/* TEAM CARDS - DESIGN MODERNO INSPIRADO NO CODEPEN */
/* ============================== */

.team-photos-section {
    margin: 3rem 0;
    padding: 2rem 0;
}

.team-photos-grid {
    display: flex;
    justify-content: space-around;
    gap: 2rem;
    flex-wrap: wrap;
}

.team-card {
    width: 280px;
    height: 360px;
    border-radius: 15px;
    padding: 1.5rem;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.team-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.team-card-image {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1rem;
    position: relative;
}

.team-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.team-card:hover .team-card-image img {
    transform: scale(1.1);
}

.team-card-info {
    text-align: center;
    padding: 0.5rem 0;
}

.team-card-info h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2d3748;
    margin: 0 0 0.5rem 0;
    transition: color 0.3s ease;
}

.team-card-info p {
    font-size: 1rem;
    color: #718096;
    margin: 0 0 1.5rem 0;
    font-weight: 500;
}

.team-card-btn {
    background: linear-gradient(135deg, #e53e3e, #ff6b6b);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.team-card-btn:hover {
    background: linear-gradient(135deg, #c53030, #e53e3e);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(229, 62, 62, 0.4);
}

.team-card-btn:active {
    transform: translateY(0);
}

/* Efeito de brilho no botão */
.team-card-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.team-card:hover .team-card-btn::before {
    left: 100%;
}

/* Efeito de borda animada */
.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 15px;
    padding: 2px;
    background: linear-gradient(45deg, #e53e3e, #ff6b6b, #38b2ac, #4299e1);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-card:hover::before {
    opacity: 1;
    animation: borderGlow 2s linear infinite;
}

@keyframes borderGlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Responsividade */
@media (max-width: 992px) {
    .team-photos-grid {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .team-card {
        width: 260px;
        height: 340px;
    }
}

@media (max-width: 768px) {
    .team-photos-section {
        margin: 2rem 0;
        padding: 1rem 0;
    }
    
    .team-photos-grid {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    
    .team-card {
        width: 300px;
        max-width: 90vw;
    }
}

@media (max-width: 480px) {
    .team-card {
        width: 280px;
        height: 320px;
        padding: 1rem;
    }
    
    .team-card-image {
        height: 180px;
    }
    
    .team-card-info h3 {
        font-size: 1.2rem;
    }
    
    .team-card-btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.8rem;
    }
}

/* Wrapper das Seções de Serviços */
.services-sections-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

/* Serviços Administrativos Públicos */
.services-admin-section {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.admin-header {
    margin-bottom: 1.5rem;
}

.identification-tag {
    background: #e53e3e;
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    margin-bottom: 0.8rem;
}

.admin-header h3 {
    font-size: 1.1rem;
    font-weight: bold;
    color: #333;
    margin: 0;
    line-height: 1.3;
}

.admin-services-list {
    margin-bottom: 1rem;
}

.admin-service-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.admin-service-item:last-child {
    border-bottom: none;
}

.admin-service-item i {
    font-size: 1rem;
    width: 16px;
    flex-shrink: 0;
}

.admin-service-item span {
    font-size: 0.85rem;
    color: #333;
    line-height: 1.3;
}

.igaesc-tag {
    background: #f8f9fa;
    color: #333;
    padding: 0.5rem;
    text-align: center;
    font-weight: bold;
    border-radius: 4px;
    font-size: 0.9rem;
}

/* Serviços Empresariais - Seção Escura */
.services-business-section {
	background: #0075b0;
	color: white;
	padding: 1.5rem;
	border-radius: 8px;
}

.business-header h3 {
    font-size: 1.1rem;
    font-weight: bold;
    color: white;
    margin: 0 0 1.5rem 0;
    line-height: 1.3;
}

.business-services-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.business-service-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.business-service-item i {
    font-size: 1rem;
    width: 16px;
    flex-shrink: 0;
}

.business-service-item span {
    font-size: 0.9rem;
    color: white;
}

/* Galeria de Imagens Inferior */
.bottom-gallery-section {
    margin-top: 2rem;
}

.gallery-images-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

.gallery-image-item {
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 16/10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-image-item:hover {
    transform: translateY(-3px);
}

.gallery-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Indicadores de Navegação */
.gallery-navigation-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.nav-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-dot.active {
    background: #3182ce;
}

.nav-dot:hover {
    background: #3182ce;
    transform: scale(1.2);
}

/* Responsividade Template Subunidades */
@media (max-width: 768px) {
    .services-sections-wrapper {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .team-photos-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .gallery-images-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .subunit-main-title {
        font-size: 1.8rem;
    }
    
    .hero-image-wrapper {
        height: 200px;
    }
}
.leadership-actions a {
	border-radius: 50px!important;
}
.recent-post-title:hover {
	color: #0075b0;
}
/* ============================== */
/* SEÇÃO PRESENÇA NACIONAL */
/* ============================== */

.presenca-nacional {
    background-color: #f8fafc;
    padding: 4rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.presenca-content {
    padding-right: 2rem;
}

.presenca-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.presenca-description {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 500px;
}

/* Grid de Estatísticas */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.stat-number {
    font-size: 2.6rem;
    font-weight: 800;
    color: #3182ce;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.66rem;
    font-weight: 600;
    color: #718096;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Container do Mapa */
.map-container {
    background: white;
    padding: 3rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.map-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #3182ce, #2c5282);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.map-icon::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
    animation: shimmer 3s infinite;
}

.map-icon i {
    color: white;
    font-size: 3rem;
    position: relative;
    z-index: 2;
}

.map-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #3182ce;
    margin: 0;
}

/* Animação de Shimmer */
@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Responsividade */
@media (max-width: 992px) {
    .presenca-content {
        padding-right: 0;
        margin-bottom: 3rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .stat-card {
        padding: 1.5rem 1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .presenca-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 300px;
        margin: 2rem auto 0;
    }
    
    .stat-card {
        padding: 2rem;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .presenca-nacional {
        padding: 3rem 0;
    }
    
    .map-icon {
        width: 100px;
        height: 100px;
    }
    
    .map-icon i {
        font-size: 2.5rem;
    }
}

/* ============================== */
/* INFORMAÇÕES DA SUBUNIDADE - DESIGN MINIMALISTA */
/* ============================== */

.subunit-info-section {
    margin: 1.5rem 0;
}

.subunit-info-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 2rem;
}

.subunit-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin: 0 0 1.5rem 0;
    letter-spacing: -0.02em;
    line-height: 1.2;
    position: relative;
}

.inauguration-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(229, 62, 62, 0.1);
    transition: all 0.3s ease;
    font-weight: 500;
    color: #4a5568;
}

.inauguration-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.inauguration-badge i {
    color: #fff;
    font-size: 1.1rem;
}

.inauguration-badge span {
    font-size: 1rem;
    color: #fff;
}

/* Responsividade */
@media (max-width: 768px) {
    .subunit-info-section {
        margin: 1rem 0;
        padding: 1.5rem 0;
    }
    
    .subunit-info-container {
        padding: 0 1rem;
    }
    
    .subunit-main-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .inauguration-badge {
        padding: 0.8rem 1.5rem;
        gap: 0.5rem;
    }
    
    .inauguration-badge span {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .subunit-main-title {
        font-size: 1.75rem;
    }
    
    .inauguration-badge {
        flex-direction: column;
        gap: 0.5rem;
        padding: 1rem;
        text-align: center;
    }
    
    .inauguration-badge i {
        font-size: 1.2rem;
    }
}

/* ============================== */
/* TEAM CARDS - DESIGN ORIGINAL CODEPEN VERONICA */
/* ============================== */
/* CARDS DA EQUIPE - ESTILOS COMPLETOS */
/* ============================== */

.cards {
    width: 100%;
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    -webkit-justify-content: center;
    max-width: 820px;
}

.card--1 .card__img, .card--1 .card__img--hover {
    background-image: url('https://images.pexels.com/photos/45202/brownie-dessert-cake-sweet-45202.jpeg?auto=compress&cs=tinysrgb&h=750&w=1260');
}

.card--2 .card__img, .card--2 .card__img--hover {
    background-image: url('https://images.pexels.com/photos/307008/pexels-photo-307008.jpeg?auto=compress&cs=tinysrgb&h=750&w=1260');
}

.card__like {
    width: 18px;
}

.card__clock {
    width: 15px;
    vertical-align: middle;
    fill: #AD7D52;
}

.card__time {
    font-size: 12px;
    color: #AD7D52;
    vertical-align: middle;
    margin-left: 5px;
}

.card__clock-info {
    float: right;
}

.card__img {
    visibility: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 23rem;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.card__info-hover {
    position: absolute;
    padding: 16px;
    width: 100%;
    opacity: 0;
    top: 0;
}

.card__img--hover {
    visibility: hidden;
    transition: 0.2s all ease-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    position: absolute;
    height: 23rem;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    top: 0;
    background-position: top;
}

.card {
    margin-right: 25px;
    transition: all .4s cubic-bezier(0.175, 0.885, 0, 1);
    background-color: #fff;
    width: 33.3%;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0px 13px 10px -7px rgba(0, 0, 0,0.1);
}

.card:hover {
    box-shadow: 0px 30px 18px -8px rgba(0, 0, 0,0.1);
    transform: scale(1.10, 1.10);
}

.card__info {
    z-index: 2;
    background-color: #fff;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    padding: 16px 24px 24px 24px;
}

.card__category {
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: 500;
    color: #868686;
}

.card__title {
    margin-top: 5px;
    margin-bottom: 10px;
}

.card__by {
    font-size: 12px;
    font-weight: 500;
}

.card__author {
    font-weight: 600;
    text-decoration: none;
    color: #AD7D52;
}

.card:hover .card__img--hover {
    height: 100%;
    opacity: 0.8;
}

.card:hover .card__info {
    background-color: transparent;
    position: relative;
}

.card:hover .card__info-hover {
    opacity: 1;
}

/* IMPORTANTE: Garantir que imagens dinâmicas dos membros apareçam */
.card__img[style*="background-image"] {
    visibility: visible !important;
}

/* Também aplicar o background na camada hover para o efeito funcionar */
.card__img--hover[style*="background-image"] {
    visibility: visible !important;
}

.card {
    /* margin-right: 25px; */
    transition: all .4s cubic-bezier(0.175, 0.885, 0, 1);
    background-color: #fff;
    width: 33.3%;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0px 13px 10px -7px rgba(0, 0, 0,0.1);
}

.card:last-child {
    margin-right: 0;
}

.card:hover {
    box-shadow: 0px 30px 18px -8px rgba(0, 0, 0,0.1);
    transform: scale(1.10, 1.10);
}

.card__info {
    z-index: 2;
    background-color: #fff;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    padding: 16px 24px 24px 24px;
}

.card__category {
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: 500;
    color: #e53e3e;
}

.card__title {
    margin-top: 5px;
    margin-bottom: 10px;
    color: #2d3748;
    font-weight: 700;
}

.card__by {
    font-size: 12px;
    font-weight: 500;
    color: #666;
}

.card__author {
    font-weight: 600;
    text-decoration: none;
    color: #e53e3e;
}

.card:hover .card__img--hover {
    height: 100%;
    opacity: 0.3;
}

.card:hover .card__info {
    background-color: transparent;
    position: relative;
}

.card:hover .card__info-hover {
    opacity: 1;
}

/* Responsividade */
@media (max-width: 992px) {
    .cards {
        max-width: 600px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .card {
        width: calc(50% - 12.5px);
        margin-right: 25px;
        margin-bottom: 25px;
    }
    
    .card:nth-child(2n) {
        margin-right: 0;
    }
}

@media (max-width: 768px) {
    .cards {
        max-width: 350px;
        gap: 20px;
    }
    
    .card {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .cards {
        margin: 2rem auto;
        padding: 0 1rem;
    }
    
    .card__img,
    .card__img--hover {
        height: 200px;
    }
    
    .card__info {
        padding: 12px 16px 16px 16px;
    }
    
    .card__title {
        font-size: 1.1rem;
    }
}
