        :root {
            --primary-blue: #0F5096;
			--secondary-blue: #005a9c;
            --light-gray-bg: #f0f0f0;
            --text-dark: #333333;
            --text-light: #6c757d;
			--text-color: #555;
            --white: #ffffff;
            --border-color: #dee2e6;
			--heading-color: #727272;
        }
		
		

        body {
            margin: 0;
            font-family: 'Montserrat', sans-serif;
            background-color: var(--white);
            color: var(--text-dark);
            font-size: 16px;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        /* Header */
        .top-header {
            padding: 20px 0;
        }

        .top-header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 36px;
            font-weight: 700;
            color: var(--primary-blue);
            letter-spacing: 2px;
        }

        .gov-info {
            display: flex;
            align-items: center;
        }

        .gov-info img {
            height: 40px;
            margin-right: 15px;
        }

        .gov-info-text {
            font-size: 12px;
            color: var(--text-dark);
            line-height: 1.4;
        }

        .gov-info-text strong {
            font-weight: 600;
        }

        /* Navigation */
        .main-nav {
            background-color: var(--light-gray-bg);
        }

        .main-nav .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 60px;
        }

        .nav-links {
            display: flex;
            gap: 90px;
            height: 100%;
        }

        .nav-links li {
            display: flex;
            align-items: center;
            height: 100%;
        }

        .nav-links a {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-dark);
            text-transform: uppercase;
            padding: 0 5px;
            display: flex;
            align-items: center;
            gap: 8px;
            height: 100%;
            border-bottom: 3px solid transparent;
            transition: color 0.3s, border-color 0.3s;
        }

        .nav-links a.active,
        .nav-links a:hover {
            color: var(--primary-blue);
        }

        .nav-links .fa-chevron-down {
            font-size: 10px;
        }

        .search-bar {
            display: flex;
            align-items: center;
            border: 1px solid #ccc;
            background-color: transparent;
            padding: 5px 10px;
        }

        .search-bar input {
            border: none;
            outline: none;
            background: transparent;
            width: 180px;
        }

        .search-bar button {
            border: none;
            background: transparent;
            cursor: pointer;
            color: var(--text-light);
            padding: 0;
            margin-left: 5px;
        }
		
		
		
	/* Submenu dropdown */
.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--light-gray-bg); /* ← Aqui está o ajuste */
    padding: 10px 0;
    min-width: 160px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    z-index: 1000;
}


.has-submenu {
    position: relative;
}

.has-submenu:hover .submenu {
    display: block;
}

.submenu li a {
    padding: 10px 20px;
    display: block;
    color: var(--text-dark);
    white-space: nowrap;
}

.submenu li a:hover {
    background-color: #f0f0f0;
    color: var(--primary-blue);
}
	
		
.menu-toggle {
    display: none;
}
		
		
		
		
		
    /* Estilo do Modal */
    .modal {
      display: none; 
      position: fixed;
      z-index: 1; 
      left: 0; 
      top: 0; 
      width: 100%; 
      height: 100%;
      background-color: rgba(0,0,0,0.5);
      justify-content: center;
      align-items: center;
    }

    .modal-content {
      background: #fff;
      padding: 20px;
      border-radius: 10px;
      width: 500px;
      max-height: 90vh;
      overflow-y: auto;
      box-shadow: 0 5px 10px rgba(0,0,0,0.3);
    }

    .modal-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .close {
      cursor: pointer;
      font-size: 20px;
      font-weight: bold;
    }

    .form {
      margin-top: 15px;
      display: flex;
      flex-direction: column;
    }

 .label {
      margin-top: 10px;
    }
    
.input, .select, .textarea {
      padding: 8px 0;
      margin-top: 5px;
      border: 1px solid #ccc;
      border-radius: 6px;
      width: 100%;
    }

    .button-submit {
      margin-top: 15px;
      background: #0F5096;
      color: #fff;
      padding: 10px;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      transition: background-color 0.3s, color 0.3s;
      width: 100%;
    }
    
    .button-submit:hover {
     background: #7C7F8C;   
    }

		
		

    /* Hero Section */
   .hero-section {
    position: relative;
    height: 550px;
    background-color: var(--primary-blue);
  }
  .hero-background-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-image: url('slide1.jpg');
    background-size: cover;
    background-position: center;
    clip-path: polygon(25% 0, 100% 0, 100% 100%, 0% 100%);
  }
  .hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
  }
  .hero-text {
    color: var(--white);
    max-width: 45%;
  }
  .hero-text h1 {
    font-size: 42px;
    font-weight: 700;
    margin: 0 0 20px 0;
    line-height: 1.2;
  }
  .hero-text p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 70%;
  }
  .hero-button {
    display: inline-block;
    padding: 12px 28px;
    border: 2px solid var(--white);
    color: var(--white);
    font-weight: 600;
    font-size: 12px;
    transition: background-color 0.3s, color 0.3s;
  }
  .hero-button:hover {
    background-color: var(--white);
    color: var(--primary-blue);
  }
  .hero-slider-controls {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 60px;
  }
  .slider-arrow {
    width: 30px;
    height: 30px;
    border: 2px solid var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
  }
  .slider-arrow:hover {
    background-color: var(--white);
    color: var(--primary-blue);
  }
  .slider-pagination {
    color: var(--white);
    font-size: 18px;
    font-weight: 500;
    text-align: center;
  }
  .hero-section:not(.active) {
    display: none;
  }
  body, main {
    overflow-x: hidden;
  }
.hero-wrapper {
  position: relative;
  overflow: hidden;
}

.position-absolute {
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

  .transition-background {
    background-color: #0F5096 !important;
  }
  
  
  
  /* About Section */
  
  .about-section {
    background-color: #0F5096;
    padding: 60px 0;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap; /* Responsivo */
}

.about-image-wrapper {
    flex: 1;
}

.about-image {
    width: 100%;
    height: auto;
    display: block;
}

.about-content {
    flex: 1;
    color: #ffffff;
}

.about-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 20px;
	text-transform: uppercase;
}

.about-text {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}


.about-goal-section {
    padding: 80px 0;
    text-align: center;
}

.about-goal-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-goal-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    color: #0F5096;
    font-weight: 700;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.4;
}


.about-achieve-section {
    padding-bottom: 80px;
}

.about-achieve-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.about-achieve-card {
    width: 180px;
}

.about-achieve-number {
    position: relative;
    top: 25px;
    width: 32px;
    background-color: #8c8c8c;
    color: white;
    padding: 10px 15px;
    clip-path: polygon(0 0, 100% 0, 60% 100%, 0% 100%);
    font-size: 24px;
    font-weight: 700;
    text-align: center;
}

.about-achieve-description {
    background-color: #0F5096;
    color: white;
    padding: 50px 35px 25px 15px;
    height: 120px;
    font-size: 14px;
    line-height: 1.4;
}

.about-achieve-budget {
    background-color: #C8E6F0;
    color: #0F5096;
    padding: 15px;
    font-size: 14px;
    text-align: center;
}

.about-results-section {
    padding: 40px 0;
    text-align: center;
}

.about-results-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-results-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    color: #0F5096;
    font-weight: 700;
}

.about-results-description {
    font-size: 24px;
    font-weight: 600;
    color: #555;
    line-height: 1.6;
    max-width: 700px;
    margin: 20px auto;
}

.about-results-logo {
    height: 60px;
    margin: 20px auto 10px;
}

.about-results-org {
    font-size: 14px;
    color: #333;
    line-height: 1.4;
    font-weight: 400;
}


  
  
  
  /* Contact Info Section */
        .contact-info-section {
            padding: 60px 0;
        }

        .contact-grid {
            display: flex;
            justify-content: space-around;
            text-align: left;
        }

        .contact-item {
            flex: 1;
            padding: 0 20px;
        }

        .contact-icon {
            font-size: 21px;
            color: var(--secondary-blue);
            border: 1px solid var(--secondary-blue);
            border-radius: 50%;
            width: 35px;
            height: 35px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }

        .contact-item h3 {
            font-size: 13px;
            color: var(--secondary-blue);
            margin: 0 0 15px 0;
            text-transform: uppercase;
            font-weight: 600;
        }

        .contact-item p {
            margin: 5px 0;
            color: var(--text-color);
            font-size: 14px;
        }
		
		.contact-item .address{	
            margin: 5px 0;
            color: var(--text-color);
            font-size: 14px;	
            margin-top: 25px;			
		}
        
        .contact-item .sub-heading {
            font-weight: bold;
            color: var(--heading-color);
            margin-top: 25px;
        }
		
		.contact-item .sub-heading-2 {
            font-weight: bold;
            color: var(--heading-color);
            margin-top: 35px;
        }

        .contact-item a {
            color: var(--secondary-blue);
            text-decoration: none;
            font-weight: 600;
        }
        
        .contact-item a:hover {
            text-decoration: underline;
        }
		
 


/* Reports Info Section */
.reports-wrapper {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    margin-bottom: 120px;
    flex-wrap: wrap;
    gap: 20px;
}

.reports-box {
    text-align: center;
}

.reports-header {
    background-color: #0F5096;
    color: white;
    padding: 10px 20px;
    font-weight: bold;
    font-size: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 200px;
    cursor: pointer;
}

.reports-links {
    display: none; /* Ocultos por padrão */
    margin-top: 15px;
    text-align: left;
    padding-left: 20px;
    transition: all 0.3s ease;
}



	
.reports-links a {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    color: #333;
    text-decoration: none;
}

.reports-links a:hover {
    color: #0F5096;
    font-weight: 600;
}



.news-feed-hero-image {
  position: relative;
  max-height: 405px;
  width: 78vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  margin-bottom: 80px;
  overflow: hidden;
}

.news-feed-hero-image img {
  height: auto;
  display: block;
}





/*
.news-feed-hero-image img {
  width: 100%;
  height: auto;
  display: block;
      padding-bottom: 60px;
	  min-height: 405px;
}

*/
.news-feed-container {
  padding-bottom: 60px;
  display: flex;
}

.news-feed-article {
  flex: 3;
}

.news-feed-title {
  font-size: 36px;
  font-weight: 900;
  color: #0F5096;
  line-height: 1.2;
  margin-bottom: 30px;
}

.news-feed-paragraph {
  color: #6c757d;
}

.news-feed-subtitle {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  margin-top: 40px;
}

.news-feed-list {
  padding-left: 20px;
  color: #6c757d;
}

.news-feed-list li {
  margin-bottom: 10px;
}

.news-feed-bullet-none {
  list-style-type: none;
  padding-left: 0;
  color: #6c757d;
}

.news-feed-bullet-none li {
  margin-bottom: 5px;
}

.news-feed-social {
  margin-top: 40px;
  display: flex;
  gap: 8px;
}

.news-feed-social a {
  width: 40px;
  height: 30px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 2px solid #000;
  text-decoration: none;
  color: #000;
  transition: all 0.3s ease;
}

.news-feed-social a:hover {
	background-color: #184e88;
    color: #fff;
}

.news-feed-aside {
  flex: 1;
  padding-left: 30px;
  height: fit-content;
  padding-top: 80px;
}

.news-feed-aside ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.news-feed-aside li {
  margin-bottom: 0;
}

.news-feed-aside a {
  text-decoration: none;
  color: #333;
  font-weight: 700;
  font-size: 16px;
}


.news-feed-aside i {
  font-size: 12px;
  margin-right: 10px;
}

.news-feed-banner {
  background-image: linear-gradient(rgba(0, 35, 102, 0.85), rgba(0, 35, 102, 0.85)), url('https://placehold.co/1920x400');
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.news-feed-banner p {
  max-width: 600px;
  margin: 0 auto 20px;
  font-size: 18px;
  line-height: 1.5;
}

.news-feed-banner .contact {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 40px 0;
}

.news-feed-banner a {
  border: 2px solid #fff;
  color: #fff;
  text-decoration: none;
  padding: 15px 30px;
  font-weight: 700;
  display: inline-block;
  transition: all 0.3s;
}


.news-feed-aside ul li a {
  display: flex;
  align-items: center;
  gap: 16px; /* espaço entre o ícone e o texto */
  text-decoration: none;
  color: #333;
  font-weight: 700;
  font-size: 16px;
}

.news-feed-aside ul li a i {
  flex: 0 0 20px; /* largura fixa da coluna do ícone */
  font-size: 10px;
  text-align: center;
}


.news-feed-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}

.news-feed-menu > li {
  position: relative;
  margin-bottom: 0;
}

.news-feed-menu > li > a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  text-decoration: none;
  color: #333;
  font-weight: 700;
  font-size: 16px;
  background-color: #f5f5f5;
  border-bottom: 1px solid #ddd;
}

.news-feed-menu > li > a i {
  font-size: 10px;
  transition: transform 0.3s ease;
}

.news-feed-menu > li.open > a i {
  transform: rotate(180deg);
}



.accordion-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.accordion {
  background: transparent;
  color: #333;
  cursor: pointer;
  padding: 15px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 16px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background-color 0.3s ease;
}



.panel {
  display: none;
  padding: 10px 20px;
}

.panel ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.panel ul li a {
  display: block;
  padding: 8px 16px;
  color: #333;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
}

.panel ul li a:hover {
  color: #0F5096;
}




/* Timeline */


    .timeline-main {
      width: 900px;
      display: flex;
      flex-direction: column;
	  justify-content: center;
      align-items: center;
      padding: 0 50px;
	  margin: 0 auto;
    }

    .timeline-container {
      position: relative;
      width: 100%;
      margin-top: 100px;
      margin-bottom: 50px;
    }

    .timeline-marker {
      position: absolute;
      top: -85px;
      transform: translateX(-50%);
    }

    .timeline-marker-content {
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .timeline-marker-label {
      position: relative;
      left: 55px;
      font-size: 14px;
      line-height: 1.4;
      white-space: nowrap;
      text-align: left;
      width: 90px;
    }

    .timeline-marker-label strong {
      font-weight: bold;
      color: #004a99;
    }

    .timeline-dot {
      top: -50px;
      position: relative;
      width: 7px;
      height: 7px;
      background-color: #004a99;
      border-radius: 50%;
    }

    .timeline-line {
      width: 1px;
      height: 90px;
      background-color: #004a99;
      margin-top: -55px;
    }

    .timeline-bar-container {
      position: relative;
      width: 100%;
      height: 55px;
    }

    .timeline-bar-background {
      display: flex;
      width: 100%;
      height: 35px;
      position: absolute;
      top: 10px;
    }

    .timeline-segment {
      flex: 1;
      display: flex;
    }

    .timeline-segment-part {
      flex-basis: auto;
    }

    .bg-gray {
      background-color: #b3b3b3;
    }

    .bg-light-blue {
      background-color: #C8E6F0;
    }

    .bg-dark-blue {
      background-color: #004a99;
    }

    .timeline-overlay {
      display: flex;
      width: 100%;
      height: 100%;
      position: absolute;
      top: 0;
    }

    .timeline-year {
      flex: 1;
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .timeline-year span {
      color: #ffffff;
      font-size: 14px;
      position: relative;
      z-index: 1;
    }

    .timeline-divider {
      position: absolute;
      top: -22.5px;
      bottom: 0;
      left: 0;
      width: 1px;
      height: 100px;
      background-color: #cccccc;
    }

    .timeline-divider-right {
      right: 0;
      left: auto;
    }

    .timeline-legend {
      align-self: flex-start;
      font-size: 15px;
      color: #333333;
      line-height: 1.8;
    }

    .timeline-legend-item {
      display: flex;
      align-items: center;
      margin-bottom: 0;
    }

    .timeline-legend-item:last-child {
      margin-bottom: 0;
    }

    .timeline-dot-legend {
      width: 20px;
      height: 20px;
      border-radius: 50%;
      display: inline-block;
      margin-right: 12px;
      flex-shrink: 0;
    }






















 
        /* News Section */
        .news-section {
            padding: 80px 0;
        }

        .section-title {
            text-align: center;
            font-size: 28px;
            font-weight: 700;
            text-transform: uppercase;
            color: var(--primary-blue);
            margin-bottom: 10px;
        }

        .title-decorator {
            text-align: center;
            margin-bottom: 50px;
        }

        .title-decorator::after {
            content: '◆◆';
            color: var(--primary-blue);
            font-size: 14px;
        }

        .news-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            justify-content: center;
        }

        .news-card {
            background-color: var(--white);
            text-align: center;
            flex-basis: calc(50% - 15px);
        }
        
        .news-card.small {
            flex-basis: calc(33.333% - 20px);
        }

        .news-card img {
            width: 100%;
            height: auto;
            display: block;
        }

        .news-card-content {
            padding: 25px 15px;
        }

        .news-card h3 {
            font-size: 16px;
            font-weight: 600;
            margin: 0 0 10px 0;
        }
        
        .news-card h3:hover, .news-card .read-more:hover {
            text-decoration: underline;
        }

        .news-card .date {
            font-size: 12px;
            color: var(--text-light);
            margin-bottom: 15px;
            text-transform: uppercase;
        }

        .news-card p {
            font-size: 14px;
            color: var(--text-light);
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .news-card .read-more {
            font-weight: 600;
            font-size: 14px;
            color: var(--text-dark);
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 25px;
        }

        .social-links a {
            width: 42px;
            height: 32px;
            border: 2px solid var(--text-dark);
            display: flex;
            justify-content: center;
            align-items: center;
            color: var(--text-dark);
            font-size: 14px;
            transition: background-color 0.3s, color 0.3s, border-color 0.3s;
        }

        .social-links a:hover {
            background-color: var(--primary-blue);
            color: var(--white);
            border-color: var(--primary-blue);
        }

        /* CTA Section */
        .cta-section {
            padding-top: 60px; padding-bottom: 60px;
        }

        .cta-section .container {
            max-width: 1200px;
        }

        .cta-section p {
            font-size: 18px;
            line-height: 1.7;
            margin: 0 0 0 0;
        }

        .cta-section .contact-info {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 35px;
        }

        .cta-button {
            display: inline-block;
            padding: 12px 28px;
            border: 2px solid var(--white);
            color: var(--white);
            font-weight: 600;
            font-size: 14px;
            transition: background-color 0.3s, color 0.3s;
        }

        .cta-button:hover {
            background-color: var(--white);
            color: var(--primary-blue);
        }




        /*Section contact*/
		
		
		.ctact-section{
		position: relative; text-align: center; color: white;overflow: hidden;
		}
		
		.ctact-section img{
		width: 100%; height: 400px; object-fit: cover; display: block;
		}
		
		
		
		.ctact-section button{
		border: 1px solid white; color: white; padding: 12px 30px; font-size: 14px; font-weight: bold; border-radius: 4px; transition: background-color 0.3s, color 0.3s;margin-top: 55px;background: none;
		}
		
		.ctact-section button:hover{
		background-color:#fff; color: #0F5096;
		}
		
		
        /* Footer */
        .site-footer {
background-color: #ffffff; color: #333; padding: 60px 0;
        }
		
		.site-footer-container{
		max-width: 998px; margin: 0 auto; padding: 0 20px;
		}

        .footer-grid {
display: flex; flex-wrap: wrap; justify-content: space-between; gap:70px;margin-bottom: 150px;
        }
		
		
		.footer-grid-col-left{
		flex: 1; min-width: 220px; max-width: 230px;
		}
        
		
		.footer-grid-col-right{
		flex: 2.5; min-width: 600px; display: flex; flex-direction: column;
		}
		
		
		
		
		.footer-grid-col-right nav{
		display:block;
		}
		
		.footer-grid-col-left-social{
		margin-top: 135px;display: flex;align-items: center;
		}
		
		
		
		.footer-grid-col-right-address{
		flex: 1; min-width: 420px;
		}
		
		
		.footer-grid-col-right-contacts{
		flex: 1; min-width: 250px;
		}
		
		
		.footer-grid-col-right-info{
		display: flex; flex-wrap: wrap; gap: 20px;
		}
		
		
		.site-footer-copyright{
		border-top: 1px solid #eeeeee;margin-top: 50px;padding-top: 25px;text-align: right;
		}

		.site-footer-copyright-wrap{
		max-width: 998px;text-align: right;
		}


		.site-footer-copyright p{
		margin: 0; font-size: 12px;font-weight: 900; color: #555;
		}




.footer-nav {
    margin-bottom: 40px;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 100px;
    align-items: center;
}

.footer-link {
	text-transform: uppercase;
    color: #333;
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: inline-block;
    padding-bottom: 25px;
    position: relative;
    transition: border-bottom 0.3s ease;
}

/* Border only appears on hover or if active */
.footer-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background-color: #184e88;
    transition: width 0.3s ease;
}

/* Show border on hover */
.footer-link:hover::after,
.footer-link.active::after {
    width: 100%;
}



.footer-grid-col-left-social {
    display: flex;
}



#scrollTopBtn{
display: none; position: fixed; bottom: 30px; right: 30px; z-index: 999; background-color: #0F5096; color: white; border: 2px solid #0F5096; padding: 10px 15px; cursor: pointer; transition: background-color 0.3s, color 0.3s, border-color 0.3s;	
}

#scrollTopBtn:hover{
	background-color: #fff;
	color: #0F5096;
	border: 2px solid #0F5096;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 74px;
    height: 44px;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-btn i {
    transition: transform 0.3s ease;
}

/* Facebook */
.social-btn.facebook {
    background-color: #fff;
	border: 1px solid #e0e0e0;
	border-right: none;
    color: #333;
    height: 44px;
}

.social-btn.facebook:hover {
    background-color: #0F5096;
	color: #fff;
}

/* Twitter */
.social-btn.twitter {
    background-color: #fff;
    color: #333;
    border: 1px solid #e0e0e0;
    font-size: 22px;
}

.social-btn.twitter:hover {
    background-color: #184e88;
	color: #fff;
}

/* LinkedIn */
.social-btn.linkedin {
    background-color: #fff;
    color: #333;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    border-right: 1px solid #e0e0e0;
    font-size: 22px;
}

.social-btn.linkedin:hover {
    background-color: #184e88;
	color: #fff;
}


        /* Responsive */
        @media (max-width: 992px) {
			
			
			.container{max-width: 100%;margin: 0 auto;padding: 0 0;}
            .hero-section { height: auto; padding: 60px 0; }
            .hero-background-image { display: none; }
            .hero-content { justify-content: center; text-align: center; }
            .hero-text { max-width: 100%; }
            .hero-text p { max-width: 100%; }
            .hero-slider-controls { justify-content: center; }

.search-bar{
    margin: 0 auto 30px;
}

.main-nav .container {
    flex-direction: column;
    align-items: center; /* ← garante que tudo dentro fique centralizado */
    height: auto;
    width: 100%;
    text-align: center;
}
  .menu-toggle {
    display: block;
    cursor: pointer;
    font-size: 24px;
    margin: 0 auto;
    padding: 10px;
    color: var(--text-dark);
  }

.main-nav .container {
    flex-direction: column;
    align-items: center; /* ← garante que tudo dentro fique centralizado */
    height: auto;
    width: 100%;
    text-align: center;
}

.nav-links {
    display: none;
    flex-direction: column;
    gap: 10px;
    width: auto; /* ← para que não pegue 100% e deixe conteúdo no meio */
    padding: 10px 0;
    align-items: center; /* ← centraliza itens */
    text-align: center;  /* ← centraliza texto dos links */
}

.nav-links a{
display: block;	
}
.nav-links.show {
    display: flex;
}


  .nav-links li {
    width: auto;
	display: block;
  }

  .submenu {
    position: relative;
    box-shadow: none;
    padding: 0;
  }
  
  .has-submenu{	  
margin-left: 5px;	  
  }

  .has-submenu:hover .submenu {
    display: block;
  }
  
  
    .about-container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .about-image-wrapper, 
  .about-content {
    flex: unset;
    width: 100%;
  }

  .about-title {
    font-size: 32px;
  }

  .about-text {
    font-size: 15px;
  }

  .about-image {
    max-width: 100%;
    height: auto;
  }
  
  .contact-grid {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .contact-item {
        padding: 20px 0;
        max-width: 90%;
    }

    .contact-icon {
        margin-left: auto;
        margin-right: auto;
    }

    .contact-item h3 {
        font-size: 14px;
    }

    .contact-item p,
    .contact-item .address {
        font-size: 15px;
    }

    .contact-item .sub-heading,
    .contact-item .sub-heading-2 {
        font-size: 16px;
        margin-top: 20px;
    }
  
  
      .reports-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .reports-box {
        width: 100%;
        max-width: 300px;
    }
	
	.reports-header{
      margin: 0 auto;
	}
	
	
	.reports-links{
		padding-left: 50px;
	}
	
	
	
	
  .news-feed-container {
    flex-direction: column-reverse;
    padding: 40px 20px;
    gap: 20px;
  }

  .news-feed-article,
  .news-feed-aside {
    flex: 1;
    padding-left: 0;
    border-left: none;
  }

.news-feed-aside {
padding-top: 0px;
}

  .news-feed-title {
    font-size: 28px;
  }

  .news-feed-subtitle {
    font-size: 16px;
  }

  .news-feed-aside ul {
    margin-top: 20px;
  }

  .news-feed-aside li {
    margin-bottom: 15px;
  }

  .news-feed-social {
    justify-content: center;
  }

  .news-feed-banner {
    padding: 50px 20px;
  }

  .news-feed-banner p {
    font-size: 16px;
  }

  .news-feed-banner .contact {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .news-feed-banner a {
    padding: 12px 24px;
    font-size: 14px;
  }
	
	
.news-feed-hero-image {
    position: relative;
	width: 100%;
    /*max-height: inherit;*/
    left: inherit;
    right: inherit;
    margin-left: inherit;
    margin-right: inherit;
    margin-bottom: 40px;
    overflow: hidden;
}	
	
	
	
	.timeline-main {
      width: auto;
	}
	
	

            .news-card { flex-basis: calc(50% - 15px); }
            .news-card.small { flex-basis: calc(50% - 15px); display:none; }
			.site-footer-container{max-width: 100%;margin: 0 auto;padding: 0 0;}
            .footer-grid { flex-direction: column; margin-bottom: 0;}
			.footer-grid-col-right{min-width: auto;}
		    .footer-grid-col-right nav{display:none; flex-direction: column;}
			.footer-grid-col-left{flex: 1;min-width: 100%;max-width: 100%;text-align: center;}
			.footer-grid-col-left-social{display: flex;justify-content: center;align-items: center;margin-top: 36px;}	
	        .footer-grid-col-right-address, .footer-grid-col-right-contacts {flex: 1;min-width: auto;width: 100%;text-align: center;margin: 0 auto;}
			.site-footer-copyright-wrap {text-align: center;}
			
			
			
			
	
        }

        @media (max-width: 768px) {
		
            .top-header .container, .main-nav .container {
                flex-direction: column;
                gap: 15px;
                height: auto;
                padding-top: 15px;
                padding-bottom: 15px;
            }
            .nav-links { flex-wrap: wrap; justify-content: center; }
            .news-card, .news-card.small { flex-basis: 100%; }		
            .ctact-section img {height: calc(400px + (768px - 100vw));}
            .footer-col.links { flex-direction: column; gap: 20px; }
			
			.footer-grid-col-right-info {display: flex;flex-direction: column;align-items: center;}
	
			.footer-grid-col-right-address, .footer-grid-col-right-contacts {width: 100%;text-align: center;margin-bottom: 20px;}
			
	        .site-footer-copyright-wrap{max-width: 998px;text-align: center;}
		
        }
		
		
		@media (max-width: 480px) {
		
		.ctact-section img {height: calc(580px + (480px - 100vw));}
		
		}
		
		