/* Import Google Fonts - Inter (Alternativa gratuita à NHaas Grotesk) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');

:root {
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-secondary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    --primary-color: #8B2635;
    --secondary-color: #A53D4A;
    --accent-color: #CD5C5C;
    --orange-accent: #FF7F50;
    --gradient-start: #8B2635;
    --gradient-end: #CD5C5C;
    --text-light: #ffffff;
    --text-dark: #212529;
    --gray-light: #e9ecef;
    --gray-medium: #6c757d;
    --danger-color: #dc3545;
    --danger-light: #ff6b6b;
    --shadow-color: rgba(139, 38, 53, 0.3);
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
}

/* Scrollbar personalizada */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--primary-color);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--secondary-color), var(--accent-color));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(var(--accent-color), var(--orange-accent));
}

body {
    font-family: var(--font-primary);
    padding-bottom: 60px;
    /* Espaço para o menu mobile */
    padding-top: 40px;
    /* Espaço para a barra de idiomas fixa */
    top: 0 !important;
    /* Importante para o GTranslate não adicionar margem no topo */
}

/* Barra superior de idiomas - FIXA */
.language-bar {
    padding: 0;
    text-align: right;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1035;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    box-shadow: 0 2px 8px rgba(108, 117, 125, 0.3);
}

.language-bar .container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
    /* Para o wrapper ocupar a altura */
    padding-right: 15px;
    /* Espaçamento à direita */
}

/* Estilos para o cabeçalho principal */
header.main-header {
    background: linear-gradient(135deg, #FF6B4A 0%, #FF7F50 50%, #FF8C69 100%);
    color: var(--text-light);
    padding: 1rem 0;
    position: relative;
    z-index: 1030;
    box-shadow: 0 4px 15px rgba(255, 107, 74, 0.3);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    overflow: visible;
}

header.main-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="sparkle" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="5" cy="5" r="0.5" fill="%23fff" opacity="0.3"><animate attributeName="opacity" values="0.3;0.8;0.3" dur="3s" repeatCount="indefinite"/></circle><circle cx="15" cy="15" r="0.3" fill="%23FF7F50" opacity="0.4"><animate attributeName="opacity" values="0.4;0.9;0.4" dur="2s" repeatCount="indefinite"/></circle></pattern></defs><rect width="100" height="100" fill="url(%23sparkle)"/></svg>');
    pointer-events: none;
    opacity: 0.6;
}

/* Ajuste no container do header para garantir alinhamento */
.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* Logo maior - TAMANHO AUMENTADO */
.logo img {
    height: 85px;
    transition: height 0.3s ease, filter 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.logo img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
}

/* Menu desktop alinhado à direita */
.desktop-menu .navbar-nav {
    margin-left: auto;
}

/* Estilo para links do menu principal */
.navbar-nav .nav-link {
    color: var(--text-light) !important;
    font-family: var(--font-primary) !important;
    font-weight: 500 !important;
    padding: 0.75rem 1.25rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.navbar-nav .nav-link::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;
}

.navbar-nav .nav-link:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--shadow-color);
}

.navbar-nav .nav-link:hover::before {
    left: 100%;
}

.navbar-nav .dropdown-toggle::after {
    margin-left: 0.5rem;
}

/* Menu dropdown com fundo azul */
.dropdown-menu {
    min-width: 220px;
    border: none;
    box-shadow: 0 8px 25px var(--shadow-color);
    border-radius: 15px;
    overflow: hidden;
    background: linear-gradient(145deg, var(--secondary-color), var(--accent-color)) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1040 !important;
}

.dropdown-item {
    padding: 0.875rem 1.25rem;
    transition: all 0.3s ease;
    border: none;
    color: white !important;
    font-family: var(--font-primary);
    font-weight: 400;
    position: relative;
}

.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    color: white !important;
    transform: translateX(5px);
}

.dropdown-item i {
    width: 20px;
    text-align: center;
    margin-right: 8px;
}

/* Submenu dropdown */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -1px;
    border-radius: 0.375rem;
    z-index: 1041 !important;
}

/* Estilo para o círculo do usuário */
.user-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px var(--shadow-color);
    transition: all 0.3s ease;
}

.user-circle:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px var(--shadow-color);
}

.user-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Cabeçalho do dropdown do usuário */
.user-info-header {
    background-color: var(--primary-color);
    color: white !important;
    padding: 1rem;
}

.user-info-header strong,
.user-info-header div {
    color: white !important;
}

/* Estilo para ícone de usuário no circle */
.user-circle .fas {
    font-size: 16px;
    color: var(--gray-medium);
}

/* Estilos para botões primários */
.btn-primary {
    background: linear-gradient(135deg, #6c757d, #495057);
    border: none;
    border-radius: 25px;
    padding: 10px 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(108, 117, 125, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary::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;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #495057, #343a40);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(73, 80, 87, 0.4);
}

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

.btn-primary:focus {
    box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.25);
}

/* Menu mobile de navegação inferior */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #495057, #6c757d);
    display: flex;
    justify-content: space-around;
    padding: 12px 0;
    box-shadow: 0 -4px 20px rgba(73, 80, 87, 0.3);
    z-index: 1030;
    display: none;
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.bottom-nav-item {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: var(--font-primary);
    font-size: 0.75rem;
    font-weight: 400;
    padding: 8px 5px;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.bottom-nav-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transform: scale(0);
    transition: transform 0.3s ease;
}

.bottom-nav-item:hover::before,
.bottom-nav-item.active::before {
    transform: scale(1);
}

.bottom-nav-item i {
    font-size: 1.4rem;
    margin-bottom: 4px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.bottom-nav-item.active {
    color: white;
    transform: translateY(-2px);
}

.bottom-nav-item.active i {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Menu "Mais" lateral */
.more-menu {
    background: linear-gradient(145deg, #495057, #6c757d);
    backdrop-filter: blur(10px);
}

.more-menu .offcanvas-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.more-menu-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.more-menu-link {
    color: white;
    padding: 18px 16px;
    display: flex;
    align-items: center;
    text-decoration: none;
    font-family: var(--font-primary);
    font-weight: 400;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin: 2px 8px;
    position: relative;
    overflow: hidden;
}

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

.more-menu-link:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}

.more-menu-link:hover::before {
    left: 100%;
}

.more-menu-link i:first-child {
    width: 24px;
    margin-right: 12px;
    text-align: center;
    font-size: 1.2rem;
}

.more-menu-link .chevron {
    margin-left: auto;
    opacity: 0.5;
}

/* Submenu colapsável */
.submenu-collapse {
    background-color: rgba(0, 0, 0, 0.1);
}

.submenu-item {
    padding-left: 36px;
}

/* Perfil do usuário no menu "Mais" */
.more-user-profile {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--secondary-color);
    text-align: center;
}

.more-user-photo {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    margin-bottom: 10px;
    overflow: hidden;
    border: 2px solid white;
}

.more-user-name {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.more-user-email {
    font-family: var(--font-primary);
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Esconder elementos desnecessários do Google Translate */
.goog-te-banner-frame,
.goog-te-menu-frame {
    display: none !important;
}

.skiptranslate {
    /* Container principal do Google Translate, geralmente é bom escondê-lo */
    display: none !important;
}

/* Estilos para o GTranslate Wrapper e suas bandeiras */
.gtranslate_wrapper {
    display: flex !important;
    /* Para alinhar as bandeiras */
    align-items: center !important;
    /* Alinhamento vertical */
    height: 100%;
    /* Ocupar altura da barra */
}

.gtranslate_wrapper a {
    margin: 0 3px;
    /* Espaçamento entre as bandeiras */
    display: inline-block !important;
    vertical-align: middle;
}

.gtranslate_wrapper img {
    vertical-align: middle !important;
    /* Alinhar as imagens das bandeiras */
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    border-radius: 2px;
}

/* Ajustes para dispositivos móveis */
@media (max-width: 767px) {
    body {
        padding-top: 35px;
        /* Espaço menor em mobile para a barra de idiomas */
    }

    .language-bar {
        height: 35px;
        /* Altura menor da barra no mobile */
    }

    .bottom-nav {
        display: flex;
        padding-bottom: calc(10px + env(safe-area-inset-bottom));
    }

    .desktop-menu {
        display: none;
    }


    .logo img {
        height: 65px;
        /* Logo menor no mobile */
    }

    .main-header .container {
        padding: 0 15px;
    }
}

/* Novo media query para tablets - até 991px */
@media (min-width: 768px) and (max-width: 991px) {
    body {
        padding-bottom: 60px;
        /* Manter espaço para o menu inferior */
    }

    .desktop-menu {
        display: none;
        /* Esconder o menu desktop em tablets */
    }

    .bottom-nav {
        display: flex;
        /* Mostrar o menu inferior em tablets */
    }
}

/* Ajustar o breakpoint para desktop para 992px ou maior */
@media (min-width: 992px) {
    body {
        padding-bottom: 0;
    }

    .bottom-nav {
        display: none;
    }

    .desktop-menu {
        display: flex;
    }
}

/* ################################################# Estilos do Slider, Notícias e Eventos ####################################################### */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Poppins:wght@300;400;500&display=swap');

/* Slider */
.slider-section {
    background-color: #ffffff;
    padding: 0;
    margin-bottom: 60px;
    overflow: hidden;
}

.modern-slider {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 15px 15px;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s ease, transform 1.2s ease, visibility 1s ease;
    z-index: 1;
    transform: scale(1.1);
}

.slider-item.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
    transform: scale(1);
}

.slider-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85);
}

.slider-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
    pointer-events: none;
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 50px 60px;
    color: white;
    z-index: 2;
    transform: translateY(40px);
    opacity: 0;
    transition: all 1s ease 0.3s;
}

.slider-item.active .slide-caption {
    opacity: 1;
    transform: translateY(0);
}

.slide-caption h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 3.2rem;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    max-width: 800px;
    line-height: 1.2;
}

.slide-caption p {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 1.3rem;
    max-width: 600px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    right: 60px;
    display: flex;
    gap: 12px;
    z-index: 10;
}

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

.dot.active {
    background-color: white;
    transform: scale(1.2);
}

.slider-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
}

.slider-prev,
.slider-next {
    background-color: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.6);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
}

.modern-slider:hover .slider-prev,
.modern-slider:hover .slider-next {
    opacity: 1;
}

.slider-prev:hover,
.slider-next:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* Notícias */
.noticias-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: #333;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3b5998, #4c6db3);
    border-radius: 2px;
}

.noticia-link {
    text-decoration: none;
    color: inherit;
}

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

.noticia-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.noticia-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

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

.noticia-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.noticia-card:hover .noticia-image-wrapper img {
    transform: scale(1.1);
}

.noticia-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.noticia-card:hover .noticia-overlay {
    opacity: 1;
}

.noticia-content {
    padding: 25px;
}

.noticia-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
    line-height: 1.4;
}

.noticia-meta {
    display: flex;
    gap: 20px;
    font-size: 0.9rem;
    color: #666;
}

.noticia-date,
.noticia-time {
    display: flex;
    align-items: center;
    gap: 5px;
}

.noticia-date i,
.noticia-time i {
    color: #3b5998;
}

.ver-todas-wrapper {
    text-align: center;
}

.ver-todas {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: linear-gradient(135deg, #3b5998, #4c6db3);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(59, 89, 152, 0.3);
}

.ver-todas:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 89, 152, 0.4);
    color: white;
}

.ver-todas i {
    transition: transform 0.3s ease;
}

.ver-todas:hover i {
    transform: translateX(5px);
}

/* Eventos */
.eventos-section {
    padding: 60px 0;
    background-color: white;
}

.ver-todos-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #3b5998;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.ver-todos-link:hover {
    color: #4c6db3;
}

.ver-todos-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #3b5998;
    transition: width 0.3s ease;
}

.ver-todos-link:hover::after {
    width: 100%;
}

/* Cards de Eventos - Design Moderno */
.evento-card {
    background: white;
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    position: relative;
    height: 100%;
}

.evento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.card-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.evento-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 2;
}

.evento-badge .badge {
    border: none;
    padding: 8px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.evento-data {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    z-index: 2;
}

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

.evento-card:hover .card-img-top {
    transform: scale(1.05);
}

.evento-card .card-body {
    padding: 25px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.evento-card .card-title {
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2c3e50;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-meta {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: #6c757d;
    font-size: 0.9rem;
    font-weight: 500;
}

.card-meta i {
    width: 20px;
    margin-right: 8px;
    color: #4a76b8;
    font-size: 0.95rem;
}

.card-meta span {
    flex: 1;
}

.evento-card .card-text {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-top: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.evento-card .card-footer {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: none;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.evento-card .badge {
    padding: 8px 12px;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.evento-card .badge.bg-success {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%) !important;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.evento-card .badge.bg-danger {
    background: linear-gradient(135deg, #dc3545 0%, #fd7e14 100%) !important;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.evento-card .badge.bg-secondary {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%) !important;
    box-shadow: 0 4px 15px rgba(108, 117, 125, 0.3);
}

.evento-card .btn {
    border-radius: 25px;
    padding: 10px 20px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid;
}

.evento-card .btn-outline-primary {
    color: #4a76b8;
    border-color: #4a76b8;
    background: transparent;
}

.evento-card .btn-outline-primary:hover {
    background: linear-gradient(135deg, #4a76b8 0%, #667eea 100%);
    border-color: #4a76b8;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(74, 118, 184, 0.3);
}

/* Melhorias para o estado vazio */
.evento-card .bg-secondary {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
}

.evento-card .bg-secondary i {
    opacity: 0.7;
    color: rgba(255, 255, 255, 0.8);
}

/* Footer */

/* Estilos para logos de lojas de aplicativos */
.store-badges,
.app-store-badges {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.store-badge,
.app-store-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: 8px;
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Google Play Store */
.store-badge[href*="play.google"],
.app-store-badge[href*="play.google"] {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    border: 1px solid #34a853;
}

/* Apple App Store */
.store-badge[href*="apps.apple"],
.app-store-badge[href*="apps.apple"] {
    background: linear-gradient(135deg, #000000, #1c1c1e);
    border: 1px solid #ffffff;
}

.store-badge:hover,
.app-store-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Responsividade para slider, notícias e eventos */
@media (max-width: 1199px) {
    .modern-slider {
        height: 500px;
    }

    .slide-caption h3 {
        font-size: 2.8rem;
    }

    .slide-caption p {
        font-size: 1.2rem;
    }
}

@media (max-width: 991px) {
    .modern-slider {
        height: 450px;
    }

    .slide-caption {
        padding: 40px 40px;
    }

    .slide-caption h3 {
        font-size: 2.4rem;
    }

    .slide-caption p {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .noticias-container {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 767px) {
    .modern-slider {
        height: 400px;
    }

    .slide-caption {
        padding: 30px 20px;
    }

    .slide-caption h3 {
        font-size: 2rem;
    }

    .slide-caption p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .noticias-container {
        grid-template-columns: 1fr;
    }

    .slider-dots {
        bottom: 20px;
        right: 20px;
    }

    .slider-prev,
    .slider-next {
        width: 50px;
        height: 50px;
    }

    .welcome-section,
    .noticias-section,
    .eventos-section {
        padding: 40px 0;
    }
}

@media (max-width: 575px) {
    .modern-slider {
        height: 350px;
    }

    .slide-caption {
        padding: 25px 15px;
    }

    .slide-caption h3 {
        font-size: 1.8rem;
    }

    .slide-caption p {
        font-size: 0.9rem;
    }

    .slider-dots {
        bottom: 15px;
        right: 15px;
        gap: 8px;
    }

    .dot {
        width: 10px;
        height: 10px;
    }

    .slider-prev,
    .slider-next {
        width: 45px;
        height: 45px;
    }

    .noticias-container {
        gap: 20px;
    }

    .welcome-section,
    .noticias-section,
    .eventos-section {
        padding: 30px 0;
    }
}

/* Responsividade para cards */
@media (max-width: 767px) {
    .evento-card {
        margin-bottom: 20px;
    }

    .evento-card .card-body {
        padding: 20px;
    }

    .evento-card .card-footer {
        padding: 15px 20px;
        flex-direction: column;
        align-items: stretch;
    }

    .evento-card .card-title {
        font-size: 1.1rem;
    }

    .card-img-wrapper {
        height: 180px;
    }

    /* Header responsivo */
    .main-header {
        padding: 0.75rem 0;
    }

    .logo img {
        height: 65px;
    }

    .navbar-nav .nav-link {
        padding: 0.5rem 0.75rem;
        font-size: 0.9rem;
    }

    .btn-primary {
        padding: 8px 20px;
        font-size: 0.9rem;
    }


    .footer-heading {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }

    .footer-social a,
    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}

/* Estilos específicos para tablets */
@media (min-width: 768px) and (max-width: 991px) {
    .main-header {
        padding: 0.9rem 0;
    }

    .logo img {
        height: 75px;
    }

    .navbar-nav .nav-link {
        padding: 0.6rem 1rem;
    }

    .dropdown-menu {
        min-width: 200px;
        z-index: 1040 !important;
    }

    .bottom-nav-item {
        padding: 10px 8px;
    }

    .bottom-nav-item i {
        font-size: 1.3rem;
    }
}


/* Footer Moderno - Nova Identidade Visual */
.site-footer {
    position: relative;
    background: linear-gradient(135deg, #6c757d 0%, #495057 35%, #343a40 100%);
    color: #fff;
    padding: 0px 0 0;
    box-shadow: 0 -5px 30px rgba(108, 117, 125, 0.3);
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.1) 2px, transparent 2px);
    background-size: 20px 20px;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="4" height="4" patternUnits="userSpaceOnUse"><rect width="4" height="4" fill="%23000" opacity="0.03"/><circle cx="1" cy="1" r="0.5" fill="%23fff" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.footer-waves {
    display: none !important;
}

.waves {
    position: relative;
    display: block;
    width: 100%;
    height: 100px;
    pointer-events: none;
}

.footer-content {
    background: rgba(255, 255, 255, 0.98);
    color: #333;
    padding: 40px 0 0px;
    position: relative;
    z-index: 2;
    border-radius: 0;
    backdrop-filter: blur(10px);
}

.footer-logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 20px;
}

.about-text {
    color: #666;
    line-height: 1.6;
    font-family: var(--font-primary);
    font-weight: 400;
}

.footer-heading {
    color: #495057;
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    font-family: var(--font-primary);
    font-weight: 700;
    text-transform: uppercase;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #6c757d, #6c757d);
    border-radius: 2px;
}

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

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

.footer-links a {
    color: #333 !important;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    visibility: visible !important;
    opacity: 1 !important;
    font-family: var(--font-primary);
    font-weight: 700;
}

.footer-links a i {
    margin-right: 8px;
    font-size: 12px;
    color: #6c757d;
}

.footer-links a:hover {
    color: #495057;
    transform: translateX(5px);
}

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

.footer-schedule li {
    display: flex;
    align-items: start;
    margin-bottom: 20px;
}

.footer-schedule i {
    color: #6c757d;
    margin-right: 15px;
    margin-top: 5px;
    font-size: 1.1rem;
}

.footer-schedule div {
    display: flex;
    flex-direction: column;
}

.footer-schedule strong {
    color: #495057 !important;
    font-weight: 700;
    margin-bottom: 5px;
    visibility: visible !important;
    opacity: 1 !important;
    font-family: var(--font-primary);
}

.footer-schedule span {
    color: #333 !important;
    font-size: 0.9rem;
    margin-bottom: 2px;
    visibility: visible !important;
    opacity: 1 !important;
    font-family: var(--font-primary);
    font-weight: 400;
}

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

.footer-contact li {
    display: flex;
    align-items: start;
    margin-bottom: 15px;
}

.footer-contact i {
    color: #6c757d;
    margin-right: 12px;
    margin-top: 3px;
    font-size: 1.1rem;
    min-width: 20px;
}

.footer-contact a {
    color: #333 !important;
    text-decoration: none;
    transition: color 0.3s ease;
    visibility: visible !important;
    opacity: 1 !important;
    font-family: var(--font-primary);
    font-weight: 400;
}

.footer-contact a:hover {
    color: #495057;
}

.footer-contact span {
    color: #333 !important;
    visibility: visible !important;
    opacity: 1 !important;
    font-family: var(--font-primary);
    font-weight: 400;
}

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

.footer-social a,
.social-links a,
.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: #6c757d;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(108, 117, 125, 0.3);
}

/* Cores específicas das redes sociais */
.footer-social a[href*="facebook"],
.social-links a[href*="facebook"] {
    background: #1877F2;
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.3);
}

.footer-social a[href*="instagram"],
.social-links a[href*="instagram"] {
    background: linear-gradient(45deg, #E4405F, #C13584, #833AB4);
    box-shadow: 0 4px 15px rgba(225, 48, 108, 0.3);
}

.footer-social a[href*="twitter"],
.social-links a[href*="twitter"] {
    background: #1DA1F2;
    box-shadow: 0 4px 15px rgba(29, 161, 242, 0.3);
}

.footer-social a[href*="youtube"],
.social-links a[href*="youtube"] {
    background: #FF0000;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

.footer-social a[href*="whatsapp"],
.social-links a[href*="whatsapp"] {
    background: #25D366;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.footer-social a[href*="linkedin"],
.social-links a[href*="linkedin"] {
    background: #0077B5;
    box-shadow: 0 4px 15px rgba(0, 119, 181, 0.3);
}

.footer-social a[href*="telegram"],
.social-links a[href*="telegram"] {
    background: #0088CC;
    box-shadow: 0 4px 15px rgba(0, 136, 204, 0.3);
}

.footer-social a[href*="tiktok"],
.social-links a[href*="tiktok"] {
    background: #000000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Estilos para os ícones de contato */
.footer-schedule i,
.footer-contact i {
    color: #ff7f50;
}

.footer-social a:hover,
.social-links a:hover,
.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    filter: brightness(1.1);
}

.app-download-section {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
}

.app-heading {
    color: #D32F2F;
    font-size: 1rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.app-badges {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.app-badge {
    display: inline-block;
    text-decoration: none;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    min-width: 180px;
    height: 60px;
}

.app-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Google Play Badge */
.google-play {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    border: 1px solid #34a853;
}

.google-play:hover {
    background: linear-gradient(135deg, #2a5298 0%, #3b82f6 100%);
}

/* App Store Badge */
.app-store {
    background: linear-gradient(135deg, #000000 0%, #1c1c1e 100%);
    border: 1px solid #ffffff;
}

.app-store:hover {
    background: linear-gradient(135deg, #1c1c1e 0%, #374151 100%);
}

.badge-content {
    display: flex;
    align-items: center;
    padding: 8px 16px;
    height: 100%;
    color: #fff;
}

.badge-icon {
    margin-right: 12px;
    font-size: 24px;
    display: flex;
    align-items: center;
}

.google-play .badge-icon i {
    background: linear-gradient(45deg, #ff6b35, #f7931e, #4caf50, #2196f3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.app-store .badge-icon i {
    color: #fff;
}

.badge-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.badge-small {
    font-size: 10px;
    color: #ccc;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-large {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-top: 2px;
}

/* Responsividade para badges */
@media (max-width: 768px) {
    .app-badges {
        flex-direction: row;
        gap: 8px;
    }

    .app-badge {
        min-width: 140px;
        height: 50px;
    }

    .badge-content {
        padding: 6px 12px;
    }

    .badge-icon {
        font-size: 20px;
        margin-right: 8px;
    }

    .badge-small {
        font-size: 9px;
    }

    .badge-large {
        font-size: 14px;
    }
}

.footer-bottom {
    background: #212529;
    padding: 20px 0;
    font-size: 0.9rem;
    position: relative;
    z-index: 2;
}

.footer-bottom p {
    margin: 0;
    color: #adb5bd;
    font-weight: 600;
}

.footer-bottom-links {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.footer-bottom-links a {
    color: #6c757d;
    text-decoration: none;
    transition: color 0.3s ease;
    cursor: pointer;
    font-weight: 500;
}

.footer-bottom-links a:hover {
    color: #adb5bd;
}


.footer-top-pattern {
    height: 80px;
    background-color: #121212;
    /* fallback */
    background-image:
        radial-gradient(circle, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(135deg, #6c757d 0%, #495057 35%, #343a40 100%);

}




/* Cookie Banner Moderno */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(30, 30, 30, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px;
    z-index: 1000;
    display: none;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cookie-text {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.cookie-icon {
    font-size: 2rem;
    color: #0d6efd;
}

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

.cookie-text a {
    color: #0d6efd;
    text-decoration: none;
    cursor: pointer;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-buttons .btn {
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .footer-content {
        padding: 40px 0 20px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-text {
        flex-direction: column;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .footer-bottom-links {
        justify-content: center;
        margin-top: 15px;
    }
}

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

    /* Ocultar footer em dispositivos móveis */
    .site-footer {
        display: none;
    }

    /* Ajuste do padding do body para a navegação mobile */
    body {
        padding-bottom: 70px;
    }

    /* Mantém o banner de cookies visível mesmo com footer oculto */
    .cookie-banner {
        position: fixed;
        bottom: 70px;
        z-index: 1001;
    }
}

/* Se quiser manter apenas o copyright em mobile */
@media (max-width: 768px) {

    .site-footer .footer-content,
    .site-footer .footer-waves {
        display: none;
    }

    .site-footer {
        display: block;
        padding-top: 0;
    }

    .site-footer .footer-bottom {
        padding: 10px 0;
        margin-bottom: 70px;
    }

    .site-footer .footer-bottom p {
        font-size: 0.8rem;
    }

    .site-footer .footer-bottom_links {
        display: none;
    }
}

.site-footer {
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .site-footer {
        opacity: 0;
        visibility: hidden;
        height: 0;
        overflow: hidden;
    }

    body {
        padding-bottom: 70px;
    }
}





/* custom__section-title_color inicio */
/* Customização automática - 2025-08-16 02:49:02 */
.section-title {
    color: #ff0000 !important;
}

/* custom__section-title_color fim */




/* custom_language-bar_background inicio */
/* Customização automática - 2025-08-16 12:11:29 */
/* Aplicando background: #6c757d para .language-bar */
/* Esta regra deve sobrescrever o CSS original */
/* PRIORIDADE MÁXIMA - Deve ser aplicada por último */
.language-bar {
    background: #6c757d !important;
}

/* custom_language-bar_background fim */

/* custom_navbar-nav_nav-link_color inicio */
/* Customização automática - 2025-08-16 12:11:29 */
/* Aplicando color: #fff8f6 para .navbar-nav .nav-link */
/* Esta regra deve sobrescrever o CSS original */
/* PRIORIDADE MÁXIMA - Deve ser aplicada por último */
.navbar-nav .nav-link {
    color: #fff8f6 !important;
}

/* custom_navbar-nav_nav-link_color fim */

/* custom_header_main-header_background inicio */
/* Customização automática - 2025-08-16 12:12:29 */
/* Aplicando background: linear-gradient(135deg, #ff825c 0%, #f95d24 50%, #ff5b29 100%) para header.main-header */
/* Esta regra deve sobrescrever o CSS original */
/* PRIORIDADE MÁXIMA - Deve ser aplicada por último */
header.main-header {
    background: linear-gradient(135deg, #ff825c 0%, #f95d24 50%, #ff5b29 100%) !important;
}

/* custom_header_main-header_background fim */

/* custom_btn-primary_background inicio */
/* Customização automática - 2025-08-16 12:13:08 */
/* Aplicando background: linear-gradient(135deg, #545454 0%, #292929 100%) para .btn-primary */
/* Esta regra deve sobrescrever o CSS original */
/* PRIORIDADE MÁXIMA - Deve ser aplicada por último */
.btn-primary {
    background: linear-gradient(135deg, #545454 0%, #292929 100%) !important;
}

/* custom_btn-primary_background fim */

/* custom_section-title_color inicio */
/* Customização automática - 2025-08-16 12:14:33 */
/* Aplicando color: #333333 para .section-title */
/* Esta regra deve sobrescrever o CSS original */
/* PRIORIDADE MÁXIMA - Deve ser aplicada por último */
.section-title {
    color: #333333 !important;
}

/* custom_section-title_color fim */

/* custom_ver-todas_background inicio */
/* Customização automática - 2025-08-16 12:14:33 */
/* Aplicando background: linear-gradient(135deg, #3d5c9c 0%, #4b6bb1 100%) para .ver-todas */
/* Esta regra deve sobrescrever o CSS original */
/* PRIORIDADE MÁXIMA - Deve ser aplicada por último */
.ver-todas {
    background: linear-gradient(135deg, #3d5c9c 0%, #4b6bb1 100%) !important;
}

/* custom_ver-todas_background fim */

/* custom_footer-content_background inicio */
/* Customização automática - 2025-08-16 12:14:33 */
/* Aplicando background: #ffffff para .footer-content */
/* Esta regra deve sobrescrever o CSS original */
/* PRIORIDADE MÁXIMA - Deve ser aplicada por último */
.footer-content {
    background: #ffffff !important;
}

/* custom_footer-content_background fim */

/* custom_about-text_color inicio */
/* Customização automática - 2025-08-16 12:15:59 */
/* Aplicando color: #666666 para .about-text */
/* Esta regra deve sobrescrever o CSS original */
/* PRIORIDADE MÁXIMA - Deve ser aplicada por último */
.about-text {
    color: #666666 !important;
}

/* custom_about-text_color fim */

/* custom_footer-heading_color inicio */
/* Customização automática - 2025-08-16 12:15:59 */
/* Aplicando color: #495057 para .footer-heading */
/* Esta regra deve sobrescrever o CSS original */
/* PRIORIDADE MÁXIMA - Deve ser aplicada por último */
.footer-heading {
    color: #495057 !important;
}

/* custom_footer-heading_color fim */

/* custom_footer-links_a_color inicio */
/* Customização automática - 2025-08-16 12:15:59 */
/* Aplicando color: #333333 para .footer-links a */
/* Esta regra deve sobrescrever o CSS original */
/* PRIORIDADE MÁXIMA - Deve ser aplicada por último */
.footer-links a {
    color: #333333 !important;
}

/* custom_footer-links_a_color fim */

/* custom_footer-top-pattern_background inicio */
/* Customização automática - 2025-08-16 12:16:25 */
/* Aplicando background: linear-gradient(135deg, #121212 0%, #2b2b2b 50%, #3b3b3b 100%) para .footer-top-pattern */
/* Esta regra deve sobrescrever o CSS original */
/* PRIORIDADE MÁXIMA - Deve ser aplicada por último */
.footer-top-pattern {
    background: linear-gradient(135deg, #121212 0%, #2b2b2b 50%, #3b3b3b 100%) !important;
}

/* custom_footer-top-pattern_background fim */