* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #e9e9e9;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    background-size: cover;
    background-position: center;
}

/* Header Styles */
header {
    background: #5e8c81;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
    width: 100%;

}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    height: 70px;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #FFFFFF;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
    flex-wrap: nowrap;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: #FFFFFF;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 5px;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-size: 0.95rem;
}

nav a:hover,
nav a.active {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.mobile-menu {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #FFFFFF;
    cursor: pointer;
    padding: 10px;
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #5e8c81;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.mobile-nav ul {
    flex-direction: column;
    gap: 0;
}

.mobile-nav a {
    display: block;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: none;
}

/* Hero Section */


.cta-button {
    display: inline-block;
    background: #5e8c81;
    color: #FFFFFF;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #4a756b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(94, 140, 129, 0.3);
}

/* City Filter Section */
.city-filter {
    padding: 40px 0;
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid #eee;
}

.city-filter h2 {
    text-align: center;
    font-size: 1.8rem;
    color: #5e8c81;
    margin-bottom: 30px;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.filter-btn {
    background: transparent;
    border: 2px solid #5e8c81;
    color: #5e8c81;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: #5e8c81;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(94, 140, 129, 0.3);
}

/* Weekly Highlight Section - Carrossel */
.weekly-highlight {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.95);
    overflow: hidden;
}

.carousel-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.carousel-wrapper {
    overflow: hidden;
    border-radius: 20px;
}

.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
    min-width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: #FFFFFF;
    opacity: 0.5;
    transition: opacity 0.6s ease;
    min-height: 450px;
    padding: 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #f7f7f7f7;
}

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

.highlight-image {
    position: relative;
    background: linear-gradient(135deg, #5e8c81, #4a756b);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 16px;
    min-height: 450px;
    transition: transform 0.6s ease;
}

.carousel-slide.active .highlight-image {
    animation: zoomIn 0.8s ease-out;
}

@keyframes zoomIn {
    from {
        transform: scale(1.1);
    }
    to {
        transform: scale(1);
    }
}

.image-placeholder {
    font-weight: 500;
    opacity: 0.8;
}

.highlight-badge {
    position: absolute;
    top: 25px;
    left: 25px;
    background: #ff6b35;
    color: #FFFFFF;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    animation: pulse 2s infinite;
}

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

.highlight-content {
    padding: 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.carousel-slide.active .highlight-content {
    animation: slideInRight 0.8s ease-out;
}

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

.highlight-category {
    color: #5e8c81;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    display: inline-block;
    background-color: #f7f7f7;
    border-radius: 12px;
}

.carousel-slide  a {
    font-size: 1.9rem;
    font-weight: 700;
    color: #f7f7f7f7;
    margin-bottom: 18px;
    line-height: 1.3;
}

.highlight-excerpt {
    color: #666;
    margin-bottom: 25px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.highlight-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 48px;
    font-size: 0.9rem;
    color: #f7f7f7f7;
}

.highlight-meta span {
    position: relative;
}

.highlight-meta span:not(:last-child)::after {
    content: '•';
    position: absolute;
    right: -11px;
    color: #ddd;
}

.highlight-read-more {
    color: #5e8c81;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    align-self: flex-start;
    font-size: 1.05rem;
}

.highlight-read-more:hover {
    border-bottom-color: #5e8c81;
    transform: translateX(5px);
}

/* Botões de Navegação */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    color: #5e8c81;
}

.carousel-btn:hover {
    background: #5e8c81;
    color: #FFFFFF;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(94, 140, 129, 0.4);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

.carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
}

/* Indicadores */
.carousel-indicators {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

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

.indicator:hover {
    transform: scale(1.2);
    background: rgba(255, 255, 255, 0.8);
}

.indicator.active {
    width: 35px;
    border-radius: 10px;
    background: #FFFFFF;
    border-color: #FFFFFF;
}

/* Events Section */
.events-section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #5e8c81;
    margin-bottom: 20px;
    font-weight: 700;
}

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

.event-card {
    background: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
}

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.event-date {
    background: #5e8c81;
    color: #FFFFFF;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 80px;
}

.event-date .day {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.event-date .month {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-content {
    padding: 25px;
    flex: 1;
}

.event-city {
    color: #5e8c81;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.event-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin: 8px 0 10px;
    line-height: 1.3;
}

.event-content p {
    color: #666;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.event-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: #888;
}

.event-btn {
    display: inline-block;
    background: #5e8c81;
    color: #FFFFFF;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background 0.3s ease;
}

.event-btn:hover {
    background: #4a756b;
}

/* Featured Articles Section */
.featured-articles {
    padding: 80px 0;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

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

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

.article-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(45deg, #5e8c81, #4a756b);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 500;
}

.article-content {
    padding: 25px;
}

.article-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #5e8c81;
    margin-bottom: 10px;
    line-height: 1.3;
}

.article-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.author-name {
    color: #5e8c81;
    font-weight: 600;
}

.article-date {
    color: #888;
}

.article-content p {
    color: #666666;
    margin-bottom: 15px;
}

.read-more {
    color: #5e8c81;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.read-more:hover {
    border-bottom-color: #5e8c81;
}

/* News Section */
.news-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.95);
    overflow-x: hidden;
    width: 100%;
}

.news-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-bottom: 1px solid #eee;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.share-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.share-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid #5e8c81;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.share-btn:hover {
    background: #5e8c81;
    transform: scale(1.1);
}

.share-btn img {
    width: 55%;
    height: 55%;
    object-fit: contain;
    transition: filter 0.3s ease;
}

.share-btn:hover img {
    filter: brightness(0) invert(1);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
    width: 100%;
}

.news-card {
    background: #FFFFFF;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #5e8c81;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.news-card:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.news-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
    line-height: 1.4;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: 0.85rem;
    color: #888;
}

.news-city {
    color: #5e8c81;
    font-weight: 600;
}

.news-card p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.news-read-more {
    color: #5e8c81;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.news-read-more:hover {
    border-bottom-color: #5e8c81;
}

/* Newsletter Section */
.newsletter {
    padding: 80px 0;
    background: #5e8c81;
    color: #FFFFFF;
    text-align: center;
}

.newsletter h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.newsletter p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
}

.newsletter-form button {
    background: #FFFFFF;
    color: #5e8c81;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

/* Footer */
footer {
    background: #f5f5f5;
    padding: 60px 0 30px;
    border-top: 1px solid #eee;
}

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

.footer-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.footer-section h3 {
    color: #5e8c81;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-section p {
    color: #666;
    line-height: 1.7;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #666666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #5e8c81;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    background: none;
    width: 40px;
    height: 40px;
    padding: 0;
}

.social-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

.social-icon:hover {
    background: #4a756b;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #eee;
    color: #666666;
    font-size: 0.9rem;
}

.projects-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.section-subtitle {
    text-align: center;
    color: #6c757d;
    font-size: 1.1rem;
    margin-top: -1rem;
    margin-bottom: 3rem;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.project-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.project-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

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

.project-status {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.status-ativo {
    background: rgba(16, 185, 129, 0.9);
    color: white;
}

.status-concluído,
.status-concluido {
    background: rgba(59, 130, 246, 0.9);
    color: white;
}

.status-planejamento {
    background: rgba(251, 191, 36, 0.9);
    color: white;
}

.status-suspenso {
    background: rgba(107, 114, 128, 0.9);
    color: white;
}

.project-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.project-category {
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.category-psicologia {
    background: #e8dff5;
    color: #6b4c9a;
}

.category-nutrição,
.category-nutricao {
    background: #d4edda;
    color: #4a9d5f;
}

.project-location {
    color: #6c757d;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.project-content h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.project-description {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex: 1;
}

.project-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    padding: 1rem 0;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6c757d;
    font-size: 0.9rem;
}

.meta-item i {
    color: #416961;
}

.project-coordinator {
    margin-bottom: 1rem;
}

.coordinator-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.coordinator-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.coordinator-avatar-placeholder {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #416961 0%, #2d4d47 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.coordinator-info div {
    display: flex;
    flex-direction: column;
}

.coordinator-info strong {
    font-size: 0.9rem;
    color: #2c3e50;
}

.coordinator-info span {
    font-size: 0.8rem;
    color: #6c757d;
}

.project-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    background: linear-gradient(135deg, #416961 0%, #2d4d47 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: auto;
}

.project-btn:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(65, 105, 97, 0.3);
}

.section-more {
    text-align: center;
    margin-top: 3rem;
}

.btn-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    background: white;
    color: #416961;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    border: 2px solid #416961;
    transition: all 0.3s ease;
}

.btn-more:hover {
    background: #416961;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(65, 105, 97, 0.3);
}

.section-more {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
}

.btn-more {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: white;
    color: #416961;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    border: 2px solid #416961;
    transition: all 0.3s ease;
}

.btn-more:hover {
    background: #416961;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(65, 105, 97, 0.3);
}

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

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





/* Banner de Cookies */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.98);
            border-top: 1px solid #e0e0e0;
            padding: 20px;
            box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
            z-index: 9999;
            display: none;
            animation: slideUp 0.4s ease-out;
        }

        .cookie-banner.show {
            display: block;
        }

        @keyframes slideUp {
            from {
                transform: translateY(100%);
            }
            to {
                transform: translateY(0);
            }
        }

        .cookie-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .cookie-icon {
            font-size: 40px;
            flex-shrink: 0;
        }

        .cookie-text {
            flex: 1;
            min-width: 300px;
        }

        .cookie-text p {
            color: #333;
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 8px;
        }

        .cookie-text a {
            color: #1a73e8;
            text-decoration: none;
            font-weight: 500;
        }

        .cookie-text a:hover {
            text-decoration: underline;
        }

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

        .btn {
            padding: 12px 24px;
            border: none;
            border-radius: 4px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }

        .btn-accept {
            background: #1a73e8;
            color: white;
        }

        .btn-accept:hover {
            background: #1557b0;
        }

        .btn-settings {
            background: white;
            color: #333;
            border: 1px solid #dadce0;
        }

        .btn-settings:hover {
            background: #f8f9fa;
        }

        .btn-reject {
            background: white;
            color: #5f6368;
            border: 1px solid #dadce0;
        }

        .btn-reject:hover {
            background: #f8f9fa;
        }

        /* Modal de Configurações */
        .cookie-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            z-index: 10000;
            align-items: center;
            justify-content: center;
        }

        .cookie-modal.show {
            display: flex;
        }

        .modal-content {
            background: white;
            border-radius: 8px;
            max-width: 600px;
            width: 90%;
            max-height: 80vh;
            overflow-y: auto;
            padding: 30px;
        }

        .modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }

        .modal-header h2 {
            color: #333;
            font-size: 24px;
        }

        .close-btn {
            background: none;
            border: none;
            font-size: 28px;
            cursor: pointer;
            color: #666;
            line-height: 1;
        }

        .cookie-option {
            padding: 15px;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            margin-bottom: 15px;
        }

        .cookie-option-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 8px;
        }

        .cookie-option h3 {
            font-size: 16px;
            color: #333;
        }

        .cookie-option p {
            font-size: 14px;
            color: #666;
            line-height: 1.5;
        }

        .toggle {
            position: relative;
            display: inline-block;
            width: 50px;
            height: 24px;
        }

        .toggle input {
            opacity: 0;
            width: 0;
            height: 0;
        }

        .slider {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: #ccc;
            transition: 0.4s;
            border-radius: 24px;
        }

        .slider:before {
            position: absolute;
            content: "";
            height: 18px;
            width: 18px;
            left: 3px;
            bottom: 3px;
            background-color: white;
            transition: 0.4s;
            border-radius: 50%;
        }

        input:checked + .slider {
            background-color: #1a73e8;
        }

        input:checked + .slider:before {
            transform: translateX(26px);
        }

        input:disabled + .slider {
            background-color: #e0e0e0;
            cursor: not-allowed;
        }

        .modal-footer {
            margin-top: 20px;
            display: flex;
            gap: 10px;
            justify-content: flex-end;
        }

        @media (max-width: 768px) {
            .cookie-container {
                flex-direction: column;
                align-items: flex-start;
            }

            .cookie-buttons {
                width: 100%;
            }

            .btn {
                flex: 1;
            }
        }
/* Responsivo */
@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .project-meta {
        flex-direction: column;
        gap: 0.75rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Smooth scrolling for sections */
html {
    scroll-behavior: smooth;
}

section {
    scroll-margin-top: 80px;
}

/* Responsive Design */
@media (max-width: 900px) {
    .mobile-menu {
        display: block;
    }

    nav ul {
        display: none;
    }
}

@media (max-width: 768px) {
    /* Container mais estreito */
    .container {
        padding: 0 15px;
        width: 100%;
    }
    .logo-container{
        order: 1;
    }

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

    /* Carrossel compacto em formato vertical */
    .carousel-container {
        max-width: 100%;
        width: calc(100vw - 30px);
        margin: 0 auto;
    }

    .carousel-slide {
        grid-template-columns: 1fr;
        min-height: 220px;
        width: 100%;
    }

    .highlight-image {
        min-height: 250px;
        max-height: 250px;
    }

    .highlight-content {
        padding: 25px 20px;
    }

    .highlight-content h3 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }

    .highlight-excerpt {
        font-size: 0.95rem;
        margin-bottom: 15px;
        line-height: 1.5;
    }

    .highlight-meta {
        gap: 12px;
        font-size: 0.8rem;
        margin-bottom: 18px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
    }

    .carousel-prev {
        left: 10px;
    }

    .carousel-next {
        right: 10px;
    }

    .carousel-indicators {
        bottom: 15px;
    }

    /* Grids - Uma coluna no mobile */
    .articles-grid {
        grid-template-columns: 1fr;
        width: 100%;
    }

    .events-grid {
        grid-template-columns: 1fr;
        width: 100%;
    }

    .news-grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }

    .news-card {
        width: 100%;
        max-width: 100%;
        padding: 20px;
    }

    .news-image {
        height: 180px;
    }

    /* Newsletter */
    .newsletter-form {
        flex-direction: column;
    }

    .newsletter h2 {
        font-size: 2rem;
    }

    /* Filter buttons */
    .filter-buttons {
        justify-content: center;
        width: 100%;
        padding: 0 10px;
    }

    .filter-btn {
        font-size: 0.9rem;
        padding: 8px 16px;
    }

    /* Event cards */
    .event-card {
        flex-direction: column;
    }

    .event-date {
        flex-direction: row;
        justify-content: center;
        gap: 10px;
        padding: 15px;
        min-width: auto;
    }

    .event-date .day {
        font-size: 1.5rem;
    }

    .event-content {
        padding: 20px;
    }

    /* Footer */
     .footer-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
        width: 100%;
    }

   
    .featured-articles,
    .newsletter,
    .events-section,
    .news-section,
    .weekly-highlight {
        padding: 60px 0;
    }

    .city-filter {
        padding: 30px 0;
    }

    .filter-buttons {
        gap: 10px;
    }

    .filter-btn {
        font-size: 0.85rem;
        padding: 8px 12px;
    }

    /* Carrossel ainda mais compacto */
    .carousel-container {
        width: calc(100vw - 20px);
    }

    .highlight-image {
        min-height: 200px;
        max-height: 200px;
    }

    .highlight-content {
        padding: 20px 15px;
    }

    .highlight-content h3 {
        font-size: 1.15rem;
    }

    .highlight-excerpt {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .highlight-meta {
        font-size: 0.75rem;
        flex-direction: column;
        gap: 5px;
    }

    .highlight-meta span::after {
        display: none;
    }

    /* Botões do carrossel menores */
    .carousel-btn {
        width: 35px;
        height: 35px;
    }

    .carousel-prev {
        left: 5px;
    }

    .carousel-next {
        right: 5px;
    }

    /* News cards menores */
    .news-card {
        padding: 15px;
    }

    .news-image {
        height: 150px;
    }

    .news-card h4 {
        font-size: 1.05rem;
    }

    .news-card p {
        font-size: 0.9rem;
    }

    .news-meta {
        font-size: 0.8rem;
    }
}