



:root {
            --primary-color: #0056b3;
            --secondary-color: #003366;
            --accent-color: #ffcc00;
            --light-color: #f8f9fa;
            --dark-color: #343a40;
        }
        
        body {
            font-family: 'Roboto', sans-serif;
            color: #333;
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
        }
        
        .header {
            background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
            color: white;
            padding: 15px 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
        
        .navbar {
            background-color: white !important;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            padding: 0;
        }
        
        .navbar-brand {
            display: none;
        }
        
        .nav-link {
            color: var(--dark-color) !important;
            font-weight: 500;
            padding: 1rem 1.5rem !important;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .nav-link:hover, .nav-link.active {
            color: var(--primary-color) !important;
        }
        
        .nav-link.active:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 20%;
            width: 60%;
            height: 3px;
            background-color: var(--accent-color);
        }
        
        .hero-carousel {
            height: 500px;
            overflow: hidden;
        }
        
        .hero-carousel .carousel-item {
            height: 500px;
            background-size: cover;
            background-position: center;
        }
        
        .hero-carousel .carousel-caption {
            background: rgba(0, 51, 102, 0.8);
            padding: 2rem;
            bottom: 30%;
            left: 10%;
            right: 10%;
            text-align: left;
            border-left: 5px solid var(--accent-color);
        }
        
        .section-title {
            position: relative;
            margin-bottom: 3rem;
            text-align: center;
            color: var(--secondary-color);
        }
        
        .section-title:after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: var(--accent-color);
            margin: 15px auto;
        }
        
        .card-service {
            border: none;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
        }
        
        .card-service:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }
        
        .card-service .icon {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        
        .video-container {
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }
        
        .video-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }
        
        .news-card {
            border: none;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .news-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }
        
        .news-card .badge {
            position: absolute;
            top: 10px;
            right: 10px;
            background-color: var(--accent-color);
            color: var(--dark-color);
        }
        
        .admin-message {
            background: linear-gradient(135deg, rgba(0, 86, 179, 0.1), rgba(0, 51, 102, 0.1));
            border-left: 5px solid var(--primary-color);
            border-radius: 0 10px 10px 0;
        }
        
        .quick-links {
            background-color: var(--light-color);
            border-radius: 10px;
            padding: 2rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .quick-links .link-item {
            padding: 0.75rem 0;
            border-bottom: 1px solid #eee;
            transition: all 0.3s ease;
        }
        
        .quick-links .link-item:hover {
            background-color: rgba(0, 86, 179, 0.05);
            padding-left: 10px;
        }
        
        .quick-links .link-item i {
            color: var(--primary-color);
            margin-right: 10px;
        }
        
        .footer {
            background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
            color: white;
            padding: 3rem 0 1rem;
        }
        
        .footer a {
            color: white;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer a:hover {
            color: var(--accent-color);
        }
        
        .footer-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 20px;
        }
        
        .footer-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: var(--accent-color);
        }
        
        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            margin-right: 10px;
            transition: all 0.3s ease;
        }
        
        .social-icons a:hover {
            background-color: var(--accent-color);
            color: var(--dark-color);
            transform: translateY(-3px);
        }
        
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background-color: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 999;
        }
        
        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }
        
        .back-to-top:hover {
            background-color: var(--secondary-color);
            transform: translateY(-5px);
        }
        
        @media (max-width: 991.98px) {
            .navbar-brand {
                display: block;
            }
            
            .hero-carousel, .hero-carousel .carousel-item {
                height: 400px;
            }
            
            .hero-carousel .carousel-caption {
                bottom: 20%;
                left: 5%;
                right: 5%;
            }
        }
        
        @media (max-width: 767.98px) {
            .hero-carousel, .hero-carousel .carousel-item {
                height: 300px;
            }
            
            .hero-carousel .carousel-caption {
                padding: 1rem;
                bottom: 10%;
            }
        }


/* Estilos para o dropdown de áreas reservadas */
.dropdown-menu {
    min-width: 300px;
    padding: 0.5rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    border: none;
}

.dropdown-item {
    padding: 0.75rem 1rem;
    border-radius: 0.25rem;
    transition: all 0.2s;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
}

.dropdown-item .rounded-circle {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dropdown-item h6 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.15rem;
}

.dropdown-item small {
    font-size: 0.75rem;
    opacity: 0.8;
}

/* Cores específicas para cada departamento */
.bg-primary { background-color: #0d6efd!important; }
.bg-success { background-color: #198754!important; }
.bg-warning { background-color: #ffc107!important; color: #212529!important; }
.bg-info { background-color: #0dcaf0!important; }
.bg-danger { background-color: #dc3545!important; }

/* Responsividade */
@media (max-width: 576px) {
    .dropdown-menu {
        min-width: 260px;
    }
}


        /* Estilos para a página de notícia */
.noticia-detalhe {
    background-color: #f8f9fa;
}

.noticia-conteudo {
    background: white;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.noticia-titulo {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.2;
}

.noticia-meta {
    color: #6c757d;
    font-size: 0.9rem;
}

.noticia-imagem img {
    max-height: 500px;
    width: 100%;
    object-fit: cover;
}

.noticia-texto {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #495057;
}

.noticia-texto p {
    margin-bottom: 1.5rem;
}

.noticia-texto img {
    max-width: 100%;
    height: auto;
    margin: 1.5rem 0;
    border-radius: 0.25rem;
}

.noticia-sidebar .card {
    border-radius: 0.5rem;
    overflow: hidden;
}

.relacionada-item:hover {
    opacity: 0.8;
}

.relacionada-item h6 {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
    color: #2c3e50;
    transition: color 0.2s;
}

.relacionada-item:hover h6 {
    color: #3498db;
}

/* Botões de compartilhamento */
.btn-facebook {
    background-color: #3b5998;
    color: white;
}

.btn-twitter {
    background-color: #1da1f2;
    color: white;
}

.btn-whatsapp {
    background-color: #25d366;
    color: white;
}

/* Responsividade */
@media (max-width: 992px) {
    .noticia-titulo {
        font-size: 1.75rem;
    }
    
    .noticia-sidebar {
        margin-top: 3rem;
        padding-left: 0 !important;
    }
}

/* Estilos para a Agenda Municipal */
.agenda-municipal {
    background-color: #f8f9fa;
}

.event-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 0.5rem;
    overflow: hidden;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.event-date {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.event-date .day {
    line-height: 1;
}

.event-date .month {
    font-size: 1.1rem;
    font-weight: 600;
}

.event-date .year {
    opacity: 0.8;
}

.event-date .time {
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

/* Responsividade */
@media (max-width: 767.98px) {
    .event-card .col-md-4 {
        height: 120px;
    }
    
    .event-date {
        flex-direction: row;
        justify-content: space-around;
        align-items: center;
        padding: 1rem !important;
    }
    
    .event-date .day,
    .event-date .month,
    .event-date .year,
    .event-date .time {
        margin: 0 0.5rem;
    }
}

/* Filtros */
#filtroAgenda .form-label {
    font-weight: 500;
}

/* Paginação */
.pagination .page-item.active .page-link {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

/* Estilos para a página de detalhes do evento */
.evento-detalhe {
    background-color: #f8f9fa;
}

.evento-conteudo {
    font-size: 1.1rem;
    line-height: 1.8;
}

.evento-conteudo p {
    margin-bottom: 1.5rem;
}

.evento-conteudo img {
    max-width: 100%;
    height: auto;
    margin: 1.5rem 0;
    border-radius: 0.25rem;
}

.relacionado-item:hover {
    opacity: 0.8;
}

.relacionado-item h6 {
    transition: color 0.2s;
}

.relacionado-item:hover h6 {
    color: #0d6efd;
}

/* Botões de compartilhamento */
.btn-facebook {
    background-color: #3b5998;
    color: white;
}

.btn-twitter {
    background-color: #1da1f2;
    color: white;
}

.btn-whatsapp {
    background-color: #25d366;
    color: white;
}

/* Responsividade */
@media (max-width: 991.98px) {
    .evento-detalhe .col-lg-4 {
        margin-top: 3rem;
        padding-left: 0 !important;
    }
}