        /* Import NHaas Grotesk Fonts */
        @import url('assets/css/nhaas-fonts.css');
        
        :root {
            --primary-color: #343a40;
            --secondary-color: #4a76b8;
            /* Cor da barra de idiomas */
            --accent-color: #3a5998;
            --text-light: #ffffff;
            --text-dark: #212529;
            --gray-light: #e9ecef;
            --gray-medium: #6c757d;
            --danger-color: #dc3545;
            --danger-light: #ff6b6b;
        }

        body {
            font-family: 'NHaasGroteskTXPro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            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 {
            background-color: var(--secondary-color);
            padding: 0;
            /* Removido padding para centralizar melhor o widget */
            text-align: right;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1035;
            height: 40px;
            /* Altura da barra */
            display: flex;
            /* Para alinhar o container */
            align-items: center;
            /* Para alinhar o container */
            justify-content: flex-end;
            /* Para alinhar o container à direita */
        }

        .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-color: var(--primary-color);
            color: var(--text-light);
            padding: 0.75rem 0;
            position: relative;
            z-index: 1030;
            /* margin-top: 40px; /* Compensa a altura da barra de idiomas - Removido, padding-top no body já faz isso */
        }

        /* 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: 80px;
            /* Aumentado para 80px */
            transition: height 0.3s ease;
        }

        /* 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-weight: 500;
            padding: 0.5rem 1rem;
            border-radius: 0.375rem;
            transition: background-color 0.15s ease-in-out;
        }

        .navbar-nav .nav-link:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }

        .navbar-nav .dropdown-toggle::after {
            margin-left: 0.5rem;
        }

        /* Menu dropdown com fundo azul */
        .dropdown-menu {
            min-width: 200px;
            border: none;
            box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
            border-radius: 0.5rem;
            overflow: hidden;
            background-color: var(--secondary-color) !important;
        }

        .dropdown-item {
            padding: 0.75rem 1rem;
            transition: background-color 0.15s ease-in-out;
            border: none;
            color: white !important;
        }

        .dropdown-item:hover {
            background-color: rgba(255, 255, 255, 0.1) !important;
            color: white !important;
        }

        .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;
        }

        /* Estilo para o círculo do usuário */
        .user-circle {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background-color: var(--gray-light);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 8px;
            overflow: hidden;
            box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
        }

        .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);
        }

        /* Menu mobile de navegação inferior */
        .bottom-nav {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: var(--primary-color);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
            z-index: 1030;
            display: none;
        }

        .bottom-nav-item {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            display: flex;
            flex-direction: column;
            align-items: center;
            font-size: 0.75rem;
            padding: 5px 0;
        }

        .bottom-nav-item i {
            font-size: 1.25rem;
            margin-bottom: 4px;
        }

        .bottom-nav-item.active {
            color: white;
        }

        /* Menu "Mais" lateral */
        .more-menu {
            background-color: var(--accent-color);
        }

        .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: 16px;
            display: flex;
            align-items: center;
            text-decoration: none;
        }

        .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-weight: 500;
            font-size: 1.1rem;
            margin-bottom: 4px;
        }

        .more-user-email {
            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;
        }

        .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 */
        .site-footer {
            background-color: #343a40;
            color: white;
            padding: 60px 0 0;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .footer-row {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-column {
            display: flex;
            flex-direction: column;
        }

        .footer-logo {
            margin-bottom: 20px;
        }

        .footer-logo img {
            max-height: 60px;
        }

        .footer-about {
            color: #ccc;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .footer-title {
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            font-size: 1.2rem;
            margin-bottom: 20px;
            color: white;
            position: relative;
        }

        .footer-title:after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 40px;
            height: 3px;
            background: linear-gradient(90deg, #3b5998, #4c6db3);
            border-radius: 2px;
        }

        .footer-menu, .footer-social {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .footer-menu li {
            margin-bottom: 10px;
        }

        .footer-menu li a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .footer-menu li a:hover {
            color: #3b5998;
        }

        .footer-social {
            display: flex;
            gap: 15px;
        }

        .footer-social a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: #3b5998;
            color: white;
            border-radius: 50%;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-social a:hover {
            background-color: #4c6db3;
            transform: translateY(-2px);
        }

        .footer-contact {
            color: #ccc;
        }

        .footer-contact-item {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 15px;
            line-height: 1.4;
        }

        .footer-contact-item i {
            color: #3b5998;
            width: 20px;
            text-align: center;
        }

        .footer-bottom {
            background-color: #2c3136;
            padding: 20px 0;
            text-align: center;
            color: #ccc;
            border-top: 1px solid #404040;
        }

        /* 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;
            }
        } 