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

:root{
    --green-primary:#2e7d32;
    --green-light: #4caf50;
    --green-muted: #a5d6a7;
    --blue-footer: #3071B1;
    --accent-coral: #e57373;
    --accent-blue: #90a4c8;
    --text-dark: #1a1a2e;
    --text-light:#ffff;
    --text-body: #3d3d3d;
    --bg-light: #f9faf7;
    --card-radius: 10px;
}
html, body{
    height: 100%;
}

body{
    font-family:'DM Sans', sans-serif;
    color: var(--text-body);
    background: var(--bg-light);
    overflow-x: hidden;
}

.page-wrapper{
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.page-main{
    flex: 1;
}
.nav-item a{
    color:#000;
}

.navbar {
    background: #fff;
    border-bottom: 1px solid #e8ede8;
    padding: 0.7rem 2rem;
}

.navbar .container-fluid{
    display:flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand{
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'playfair Display', serif;
    font-size: 1.25rem;
    /*color: var(--green-primary) !important;*/
    text-decoration:none;
} 

.hamburger{
    display:none;
    flex-direction: column;
    gap: 5px;
    background:none;
    border: none;
    cursor: pointer;
    padding:4px;
}

.hamburger span{
    display:block;
    width: 25px;
    height: 2px;
    background: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.dropdown-item{
    padding: 10px 14px;
    border-radius: 6px;
    color: #333;
    transition: all 0.2s ease;
}


.navbar-brand .logo-circle{
    width: 36px;
    height: 36px;
    /*background: linear-gradient(135deg, var(--green-primary), var(--green-light));*/
    display: flex; align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #fff;
}

.menu_list{
    display: inline-block;
    list-style: none;
    color: blue;

}


/*new navbar setings*/
/* =========================
   DROPDOWN PUBLICAÇÕES
========================= */

.head_right .dropdown {
    position: relative;
}

.head_right .dropdown-menu {
    margin-top: 10px;
    padding: 8px;
    border: 1px solid #e8ede8;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    min-width: 180px;
}

.head_right .dropdown-item {
    padding: 10px 14px;
    border-radius: 6px;
    color: #333;
    transition: all 0.2s ease;
}

.head_right .dropdown-item:hover {
    background: #337ab7;
    color: #fff;
}

.hamburger span{
    display: block;
    width: 25px;
    height: 2px;
    background: #333;
}

@media(max-width: 991px){
    .hamburger{
        display: flex;
    }

    .head_right{
        display: none;
        width: 100%;
        padding: 1rem 0;
        border-top: 1px solid #e8ede8;
        margin-top:0.5rem;
    }
    .head_right.aberto{
        display:block;
    }
    .head_right .nav{
        flex-direction: column;
    }

    .head_right .nav-item{
        width: 100%;
    }

    .head_right .nav-link{
        padding: 0.6rem 0;
        border-bottom: 1px solid #f0f0f0;
    }

    .head_right .dropdown-menu {
        position: static;
        box-shadow:none;
        border: none;
        padding-left: 1rem;
        opacity: 1;
        visibility: visible;
        transform: none;
        transition:none;
        display: none;
    }
    .head_right .nav-item.dropdown:hover .dropdown-menu{
        display: block;
    }

    

}


/*hover para desktop*/
@media (min-width: 992px){

    .navbar .dropdown:hover > .dropdown-menu{
        display: block;
        margin-top: 0;
    }

    .navbar .dropdown-menu{
        opacity: 0;
        visibility: hidden;
        transform: translateY(8px);
        
        transition: 
        opacity 0.25s  ease, 
        transform 0.25s ease,
        visibility 0.25s;
    }

    .navbar .dropdown:hover > .dropdown-menu{
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    
    
}




/* ==========================
    footer settings
   ========================== */
/*footer file*/
.footer-settings{
    background-color:var(--blue-footer) ;
    margin-top: auto;
}

.coluna-info1{
    width: 300px;
    height: 250px;
    /*background: var(--accent-blue);*/
}
.row-normal{
    display: flex;
    flex-direction: row;
    justify-content:space-between;
    padding-left: 5px;
    
}
.row-normal h3{
    margin-top:6%;
    color: var(--bg-light);
    font-weight: bold;
    margin-right: 100px;
}

.row-normal p {
    color: var(--bg-light);
}
.text-footer{
    font-weight: bold;
    color: var(--bg-light);
    font-size: large;
    margin-left: 30%;
    
}
.div-nav2{
    padding-left:100px;
}
.list-nav a{
    text-decoration: none;
    color: var(--bg-light);
}
.list-it{
    justify-content: space-between;
    color: var(--bg-light);
}
.copyright-cont{
    color: var(--bg-light);
    font-size:large;
    
}
.copyright-cont p{
    text-align: center;
    font-weight:600;
}
/*hero settings*/
.hero-section{
   position: relative;
   min-height:100vh;
   background-image: url('/img/passadeira_de_mangal.png');
   background-size: cover;
   background-position: center center;
   background-repeat: no-repeat;
}

.hero-section-alt{
    position:relative;
    min-height: 50vh;
    background-image: url('/img/hero.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 80vh;
        background-image: url('/img/hero.png');
    }
}
.hero-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background: rgba(0,0,0,.45);
}

.hero-content{
    position:relative;
    z-index:2;
}
.hero-tag{
    display:inline-block;
    padding:10px 20px;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(10px);
    color:white;
    border-radius:50px;
    font-size:.9rem;
}
.hero-section h1{
    line-height:1.15;
    font-size: clamp(1.75rem, 5vw, 3rem);
}

.hero-section .lead{
    max-width:650px;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
}
/*titulo areas de actuação*/
.section-title-st{
    text-align:center;
    padding: 20px 0;

    font-family: Arial, Helvetica, sans-serif;

    font-weight:700;

    font-size:2rem;

    line-height:1.4;

    max-width:800px;

    margin:auto;
}
.section-title-st::after{
    content: '';
    display: block;
    width:100px;
    height:5px;
    background:var(--green-light);
    margin-top: 5px;
    margin-left:auto;
    margin-right:auto;
    border-radius: 5px;
}

.rowCont{
    display:flex;
    flex-direction:row;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    gap:15px;
    padding: 0 1rem;
    margin: 0 auto;
    max-width: 1200px;
}
#first{
        width: 100%;
    }
.cards-cont{
    display:flex;
    flex-direction:row;
    justify-content:space-between;
}

/*transition transform ease*/
.card,
.card1,
.identity-cards,
.content-cards-2,
.content-cards-3 {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    will-change: transform;
    margin: 0 0.5rem;
}

/*
.card:hover,
.card1:hover,
.identity-cards:hover,
.content-cards-2:hover,
.content-cards-3:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
*/

/* card settings*/

.card-img1{
width: 8rem; 
margin-left: auto; 
margin-right: auto;
}

/*content section*/

.bg-cnt{
    background:var(--bg-light);
    padding-bottom: 30px;
    padding-top: 20px;
}

.section-title1::after{
    content: '';
    display: block;
    width:100px;
    height:5px;
    background-color: #4caf50;
    margin-top: 5px;
    border-radius: 5px;
}
.content-section h4{
    padding-left: 150px;
    font-weight: bolder;
}
.imgcont-0{
    border-radius: 10px;
    
}
.imgcont-1{
    border-radius:10px;
}

.leftc{
    padding:10px;
}
.rightc{
    padding: 2px;
    height: auto;
    width: auto;
}
   

.project-img {
    padding: 10px;
    border-radius: 12px;
    object-fit: cover;
    display: block;
    height: 400px;
    width: auto;
}

.text-blue{
    color: #17406d;
    
    font-weight: bold;
}
.content-section p {
    font-size: 2rem;
    font-weight: bold;
    line-height: 1.7;
}
.title-green{
    color: var(--green-primary);
    color: #17406d;
    font-size: 1.9rem;
    font-weight: 700;
}

.rightdiv{
    padding-left: 50px;
}

/*seccao de noticias */

/* ==========================
   NOTÍCIAS
========================== */

.news-section {

    padding: 80px 0;

    background: #f7f9fb;

}


/* TÍTULO */

.section-title {

    text-align: center;

    max-width: 750px;

    margin: 0 auto 50px;

}

.section-title h2 {

    font-size: 36px;

    font-weight: 700;

    color: #17406d;

    margin-bottom: 12px;

}

.section-title span {

    display: block;

    width: 70px;

    height: 4px;

    background: #f5c542;

    border-radius: 10px;

    margin: 0 auto 20px;

}

.section-title p {

    color: #666;

    line-height: 1.7;

    margin: 0;

}


/* ==========================
   CARD
========================== */

.news-card {

    position: relative;

    height: 430px;

    overflow: hidden;

    border-radius: 4px;

    background: #000;

    cursor: pointer;

}


/* IMAGEM */

.news-card img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: transform .6s ease;

}


/* ZOOM */

.news-card:hover img {

    transform: scale(1.08);

}


/* OVERLAY */

.news-card::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,.9) 0%,
            rgba(0,0,0,.65) 40%,
            rgba(0,0,0,.05) 100%
        );

}


/* CONTEÚDO */

.news-overlay {

    position: absolute;

    z-index: 2;

    left: 0;

    right: 0;

    bottom: 0;

    padding: 30px;

    color: white;

}


/* CATEGORIA */

.news-category {

    display: inline-block;

    background: #3f9b4f;

    padding: 5px 12px;

    border-radius: 20px;

    font-size: 12px;

    font-weight: 600;

    margin-bottom: 12px;

}


/* TÍTULO */

.news-overlay h3 {

    font-size: 24px;

    line-height: 1.25;

    font-weight: 700;

    margin-bottom: 12px;

}


/* RESUMO */

.news-overlay p {

    font-size: 14px;

    line-height: 1.5;

    color: rgba(255,255,255,.9);

    margin-bottom: 15px;

}


/* LINK */

.news-link {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: white;

    font-weight: 600;

    text-decoration: none;

    transition: .3s;

}

.news-link i {

    transition: transform .3s;

}

.news-link:hover {

    color: #f5c542;

}

.news-link:hover i {

    transform: translateX(5px);

}


/* ==========================
   BOTÃO
========================== */

.news-more {

    text-align: center;

    margin-top: 45px;

}

.btn-news {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 13px 30px;

    background: #3478b5;

    color: white;

    border-radius: 30px;

    text-decoration: none;

    font-weight: 600;

    transition: .3s;

}

.btn-news:hover {

    background: #286296;

    color: white;

    transform: translateY(-2px);

}


/* ==========================
   RESPONSIVO
========================== */

@media (max-width: 768px) {

    .news-section {

        padding: 60px 20px;

    }

    .section-title h2 {

        font-size: 30px;

    }

    .news-card {

        height: 400px;

    }

    .news-overlay {

        padding: 25px;

    }

    .news-overlay h3 {

        font-size: 21px;

    }

}


/*secção de projects*/
.texto-destaque{
    text-align:right;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: large;
    font-weight: bold;
    margin-top: 30px;
}

/*====================
Pagina Sobre nos
======================*/
.identity-cards{
    height: 255px;
    width: 420px;
    border-radius: 1.5%;
    background-color: #fff;
    border: 1px solid var(--accent-blue);
}

.title-row{
    display:flex;
    flex-direction:row;
    align-items:center;
    margin-top: 10px;
    margin-bottom: 10px;
}

.title-row h5{
    margin-left: 10px;
    font-weight: bold;
    color: var(--text-dark);
}

.card-text-desc{
    font-family:arial, Helvetica, sans-serif;
    padding-left: 25px;
    padding-right: 25px;
    font-size: 14px;
    text-align: justify;
}
.card-text-desc ul{
    padding-bottom: 20px;
    
}
.card-text-desc li {

    list-style: disc;
    text-align: start;
    line-height: 1.8;
    word-break: normal;
    overflow-wrap: break-word;
}

.row-list{
    display:flex;
    flex-direction:row;
    align-items:center;
}

.content-cards-2{
    border:solid 1px var(--accent-blue);
    height: 280px;
    border-radius:1.5%;
    transition: transform 0.3s ease;
}

/*section nossa abordagem */
.title-abordagem{
    font-weight: bold;
    color: var(--green-light);
    font-size: 1.25rem;
}
.subtitle-abordagem{
    font-weight: bold;
    color: var(--text-dark);
    font-size: 1.5rem;
}


.content-cards-3{
    border: solid 1px var(--accent-blue);
    height: 355px;
    border-radius: 1.5%;
}

.c1{
    display:flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    
}
.centrali{
    display:flex;
    flex-direction:column;
    align-items: center;
    justify-content: center;
   }
.centrali h5{
    font-weight: bold;
    color: var(--text-dark);
    margin: auto;
}

.centrali p {
    text-align: center;
    margin-top: 15px;
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 5px;
}

/*projectos da comunidade*/
.community-projects{

    background:#3b74b5;

}

.section-title{

    color:#fff;

    font-weight:700;

    font-size:2rem;

    line-height:1.4;

    max-width:800px;

    margin:auto;

}


.project-image{

    height:420px;

    border-radius:8px;

    overflow:hidden;

    background:#fff;

    box-shadow:0 10px 25px rgba(0,0,0,.15);

}

.project-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.5s;

}

.project-image:hover img{

    transform:scale(1.08);

}

.about-section {
    padding: 80px 0;
    background: #fff;
}

.about-heading {
    max-width: 700px;
    margin: 0 auto 55px;
}

.about-heading h2 {
    color: #17406d;
    font-size: 2.4rem;
    font-weight: 700;
}

.about-heading span {
    display: block;
    width: 70px;
    height: 4px;
    margin: 12px auto 18px;
    border-radius: 10px;
    background: #3f9b4f;
}

.about-heading p {
    color: #777;
    line-height: 1.7;
}

.about-image {
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(0,0,0,.10);
}

.about-image img {
    width: 100%;
    height: 430px;
    object-fit: cover;
    transition: transform .5s ease;
}

.about-image:hover img {
    transform: scale(1.03);
}

.about-content h3 {
    color: #17406d;
    font-size: 1.9rem;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 22px;
}

.about-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-highlight {
    color: #2e8b57 !important;
    font-weight: 600;
}

@media (max-width: 768px) {
    .about-section {
        padding: 55px 0;
    }

    .about-heading {
        margin-bottom: 35px;
    }

    .about-heading h2 {
        font-size: 2rem;
    }

    .about-image img {
        height: 300px;
    }

    .about-content h3 {
        font-size: 1.5rem;
    }
}




/*apoio mangal limpopo*/
.documents-section{

    background:#3b74b5;

}

.documents-section h2{

    color:#fff;

    font-size:2rem;

    line-height:1.4;

}

.pdf-card{

    background:#fff;

    border-radius:8px;

    overflow:hidden;

    height:420px;

    display:flex;

    flex-direction:column;

    justify-content:space-between;

    transition:.35s;

    box-shadow:0 10px 25px rgba(0,0,0,.15);

}

.pdf-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 40px rgba(0,0,0,.25);

}

.pdf-preview{

    flex:1;

    display:flex;

    justify-content:center;

    align-items:center;

}

.pdf-icon{

    font-size:6rem;

    color:#d32f2f;

}

.pdf-footer{

    padding:25px;

    border-top:1px solid #eee;

}

.pdf-footer h4{

    color:#222;

    font-size:1.3rem;

    font-weight:700;

    margin:0;

}


/*footer*/
.footer{

    background:var(--blue-footer);

    color:#fff;

    padding:70px 0 25px;

    width: 100%;

}

.footer .container-fluid{
    padding-left: 0;
    padding-right: 0;
}

.footer-logo{

    width:90px;

}

.footer-text{

    font-size:18px;

    line-height:1.8;

    opacity:.95;

}

.footer-title{

    margin-bottom:30px;

    font-weight:700;

}

.footer-menu{

    list-style:none;

    padding:0;

}

.footer-menu li{

    margin-bottom:18px;

}

.footer-menu a{

    color:#fff;

    text-decoration:none;

    transition:.3s;

}

.footer-menu a:hover{

    color:#b8f3b0;

    padding-left:8px;

}

.contact-item{

    display:flex;

    align-items:center;

    margin-bottom:25px;

}

.contact-item i{

    font-size:24px;

    margin-right:18px;

}

.social-links{

    display:flex;

    gap:15px;

}

.social-links a{

    width:42px;

    height:42px;

    border:1px solid rgba(255,255,255,.4);

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    color:white;

    text-decoration:none;

    transition:.3s;

}

.social-links a:hover{

    background:white;

    color:#3b74b5;

}

.footer-divider{

    border-color:rgba(255,255,255,.2);

    margin:45px 0 20px;

}

.copyright{

    margin:0;

    font-size:17px;

}

/*projects page*/

.center-text{
    align-items: center;
}

.mangal-intro{
    background:#fff;
    padding-top:80px;
    padding-bottom:80px;
}

.section-titleA{
    color:#2F6DB3;
    font-size:2rem;
    font-weight:700;
    margin-bottom:35px;
}

.section-text{
    font-size:1.2rem;
    line-height:1.9;
    color:#333;
    max-width:760px;
    margin:auto;
}

.imagem-com-credito{
    position: relative;
    margin: 0;
}

.imagem-com-credito img{
    width: 100%;
    display: block;
}

.credito-imagem{
    position: absolute;
    right: 10px;
    bottom: 8px;
    padding: 4px 8px;
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 0.75rem;
    line-height: 1.2;
}

@media(max-width:768px){

    .mangal-intro{

        padding:60px 20px;

    }

    .section-title{

        font-size:1.7rem;

    }

    .section-text{

        font-size:1rem;
        line-height:1.7;

    }

}



/*slider mangal*/
.mangal-card {
  background-color: #2a6496;
  border-radius: 12px;
  padding: 2.5rem 2.5rem 1.5rem;
  color: #ffffff;
  display: flex;
  flex-direction: column;
}

.mangal-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.mangal-header h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.mangal-underline {
  width: 40px;
  height: 3px;
  background-color: #f0a500;
  margin: 0 auto;
  border-radius: 2px;
}

.mangal-swiper {
  width: 100%;
  padding-bottom: 3rem !important;
}


.swiper-slide.mangal-slide {
  position: relative;
  height: 500px;
  overflow: hidden;
  border-radius: 8px;
}

.mangal-slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay escuro sobre a imagem */
.mangal-slide .slide-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  border-radius: 8px;
}

/* Texto centrado sobre a imagem */
.mangal-slide .slide-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 4rem;
  text-align: center;
  z-index: 2;
}

.mangal-slide h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

.mangal-slide p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #ffffff;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
  margin-bottom: 0.5rem;
}

/* Setas sobre a imagem */
.mangal-swiper .swiper-button-prev,
.mangal-swiper .swiper-button-next {
  color: #ffffff;
}

.mangal-swiper .swiper-button-prev::after,
.mangal-swiper .swiper-button-next::after {
  font-size: 1.2rem;
}

/* Dots */
.mangal-swiper .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
}

.mangal-swiper .swiper-pagination-bullet-active {
  background: #ffffff;
}

@media (max-width: 768px) {
  .swiper-slide.mangal-slide {
    height: 400px;
  }

  .mangal-slide .slide-content {
    padding: 1.5rem 3rem;
  }
}


/*material extra*/
.library-highlight{

    background:#ffffff;

}

.library-title{

    font-size:2rem;

    font-weight:700;

    color:#1c4f82;

}

.library-title span{

    display:block;

    color:#2E7D32;

}

.document-card{

    display:block;

    text-decoration:none;

    background:#fff;

    border-radius:16px;

    overflow:hidden;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.35s;

}

.document-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(0,0,0,.15);

}

.document-card img{

    width:100%;

    height:300px;

    object-fit:cover;

}

.document-info{

    background:#f4f4f4;

    padding:20px;

    min-height:95px;

}

.document-info h5{

    color:#1d1d1d;

    font-size:1.05rem;

    font-weight:600;

    margin:0;

}

.btn-library{

    background:#43A047;

    color:#fff;

    padding:14px 28px;

    border-radius:40px;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}

.btn-library:hover{

    background:#2E7D32;

    color:#fff;

}

/*contactos*/

.contact-section{

    padding:90px 0;

    background:#f8f9fa;

}

.section-title{

    text-align:center;

    margin-bottom:10px;

}

.section-title h2{

    font-size:2rem;

    font-weight:700;

    color:#2c5c8f;

}

.section-title span{

    width:60px;

    height:4px;

    background:#f0b323;

    display:block;

    margin:15px auto;

    border-radius:10px;

}

.section-title p{

    max-width:650px;

    margin:auto;

    color:#555;

}

.contact-cards{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}

.contact-card{

    background:#fff;

    border-radius:18px;

    padding:40px 30px;

    text-align:center;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    transition:.35s;

}

/*
.contact-card:hover{

    transform:translateY(-8px);

}*/

.contact-card .icon{

    width:70px;

    height:70px;

    background:#2c5c8f;

    color:#fff;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    margin:auto;

    font-size:28px;

    margin-bottom:20px;

}

.contact-card h4{

    margin-bottom:15px;

    font-weight:700;

}

.contact-card a{

    text-decoration:none;

    color:#333;

}

.contact-card p{

    margin:0;

}


/* Tablet: 2 colunas */
@media (max-width: 992px) {
    .contact-cards{
        grid-template-columns:repeat(2,1fr);
        gap:25px;
    }
}

/* Mobile: 1 coluna */
@media (max-width: 576px) {
    .contact-cards{
        grid-template-columns:1fr;
        gap:20px;
    }

    .contact-section{
        padding:60px 0;
    }

    .contact-card{
        padding:30px 20px;
    }
}






/*contatos mensagem*/
.contact-form-section{

    padding:90px 0;

}

.form-card{

    background:#fff;

    padding:45px;

    border-radius:20px;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

}

.form-card h3{

    font-weight:700;

    color:#2c5c8f;

}

.form-card p{

    margin-bottom:35px;

    color:#666;

}

.form-control{

    border-radius:10px;

    padding:12px;

}

textarea{

    resize:none;

}

.btn-success{

    padding:12px 35px;

    border-radius:30px;

}

.help-card{

    background:#fff;

    padding:35px;

    border-radius:20px;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

}

.help-card h4{

    color:#2c5c8f;

    font-weight:700;

}

.help-item{

    display:flex;

    gap:18px;

    margin:30px 0;

    align-items:flex-start;

}

.help-item i{

    width:55px;

    height:55px;

    border-radius:50%;

    background:#e8f4ed;

    color:#2e8b57;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:22px;

}

.help-item h6{

    font-weight:700;

    margin-bottom:5px;

}

.help-item p{

    margin:0;

    color:#666;

}

/*fases do cbemr*/

/*accordeon*/

.fases-card {
  background-color: #2a6496;
  border-radius: 12px;
  padding: 2.5rem;
  color: #ffffff;
}

.fases-header {
  text-align: center;
  margin-bottom: 2rem;
}

.fases-header h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.fases-underline {
  width: 40px;
  height: 3px;
  background-color: #f0a500;
  margin: 0 auto;
  border-radius: 2px;
}

.fase-trigger {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 0;
  cursor: pointer;
  user-select: none;
}

.fase-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  color: #ffffff;
}

.fase-label {
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.5;
}

.fase-numero {
  color: #f0a500;
  font-weight: 700;
  margin-right: 0.3rem;
}

.fase-titulo {
  color: #ffffff;
}

.fase-chevron {
  color: #ffffff;
  font-size: 0.9rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.fase-chevron.rotacionado {
  transform: rotate(180deg);
}

.fase-detalhe p {
padding: 0 0 0.8rem 3.5rem;
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.fase-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  margin-bottom: 0.2rem;
}

.fase-detalhe.collapsing {
  height: auto !important;
}

.fase-detalhe p {
  overflow: hidden;
}

.fase-detalhe {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 0 0 3.5rem;
}

.fase-detalhe.aberto {
  max-height: 200px;
  padding: 0 0 0.8rem 3.5rem;
}

.fase-item {
    transition: transform 300ms ease-in-out;
}

.fase-item:hover {
    transform: translateX(10px);
}

.fase-item .fase-icon {
    transition: background-color 300ms ease-in-out, color 300ms ease-in-out;
}

.fase-item:hover .fase-icon {
    background: #f4c542;
    color: #2d69a6;
}
/*fases com imagens*/

/*test fases*/
.fase-detalhe-inner {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.fase-imagem {
  width: 200px;
  height: 140px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.fase-imagem:hover  {
    transform: scale(1.09);
    transition: transform 0.5s ease-in-out ;
}

@media (max-width: 576px) {
  .fase-detalhe-inner {
    flex-direction: column !important;
  }

  .fase-imagem {
    width: 100% !important;
    height: 180px !important;
    max-width: 100% !important;
  }
}



/*biblioteca*/
.library-card{

    display:flex;

    gap:20px;

    background:#fff;

    border-radius:14px;

    padding:18px;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    transition:.3s;

    align-items:flex-start;


}

.library-card:hover{

    transform:translateY(-4px);

    box-shadow:0 18px 35px rgba(0,0,0,.12);

}

.library-thumbnail{

    width:120px;

    min-width:120px;

    height:160px;

    overflow:hidden;

    border-radius:10px;

    background:#f3f3f3;

    margin-left: 40px;

}

.library-thumbnail img{

    width:100%;

    height:100%;

    object-fit:cover;

}

.library-content{

    flex:1;
    margin-right: 40px;

}

.library-content h4{

    color:#17406D;

    font-size:18px;

    font-weight:700;

    margin-bottom:10px;

}

.library-content p{

    color:#666;

    line-height:1.6;

    margin-bottom:18px;

}

.library-footer{

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

    gap:10px;

}

.library-info{

    display:flex;

    align-items:center;

    gap:12px;

}

.badge-pdf{

    background:#f5f5f5;

    padding:6px 12px;

    border-radius:20px;

    display:flex;

    align-items:center;

    gap:8px;

    color:#D32F2F;

    font-weight:600;

}

.file-size{

    color:#888;

}

.btn-view{

    background:#2E8B57;

    color:white;

    text-decoration:none;

    padding:8px 18px;

    border-radius:30px;

    transition:.3s;

}

.btn-view:hover{

    background:#246c44;

    color:white;

}

@media (max-width:768px){

.library-card{

    flex-direction:column;

}

.library-thumbnail{

    width:100%;

    height:220px;

}
.explore-content{
    padding: 0 1rem 2rem;
    margin: 0 auto;
    max-width: 1200px;
}

.explore-content > .col-lg-4,
.explore-content > .col-md-6 {
    padding-left: 12px;
    padding-right: 12px;
}
}

/*outros documentos da section*/
.library-collection{

    padding:70px 0;

}

.section-title{

    text-align:center;

    margin-bottom:45px;

}

.section-title h2{

    color:#17406D;

    font-weight:700;

}

.section-title p{

    color:#666;

    max-width:650px;

    margin:auto;

}


.document-card{

    background:#fff;

    border-radius:14px;

    border:1px solid #E5E5E5;

    padding:25px;

    transition:.35s;

    height:100%;

    display:flex;

    flex-direction:column;

    

}

.document-card:hover{

    transform:translateY(-6px);

    box-shadow:0 15px 35px rgba(0,0,0,.10);

}

.document-icon{
    width: 100%;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: f5f8ff;
    border-radius: 8px;
    margin-bottom: 1rem;
}
.document-icon img{
    width: 304px;
    height: 160px;
    object-fit:fill;
}

.document-card h5{

    color:#17406D;

    font-weight:700;

    min-height:55px;

}

.document-card p{

    color:#666;

    flex:1;

}

.document-footer{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-top:20px;

}

.document-info{

    display:flex;

    gap:15px;

    font-size:.9rem;

    color:#666;

}

.btn-view{

    background:#2E8B57;

    color:white;

    padding:8px 16px;

    border-radius:30px;

    text-decoration:none;

}

.btn-view:hover{

    color:white;

    background:#236d43;

}


/*=========================
SECTION TITLES
=========================*/

.section-heading{

    text-align:center;

    margin-bottom:10px;

}

.section-heading h2{

    color:#17406D;

    font-size:38px;

    font-weight:700;

}

.section-heading p{

    color:#666;

    max-width:650px;

    margin:auto;

}

.title-line{

    width:80px;

    height:4px;

    background:#FFC107;

    margin:15px auto;

    border-radius:20px;

}

/*=========================
FEATURED
=========================*/

.featured-document{

    padding:40px 0;

}

.featured-card{

    display:flex;

    gap:40px;

    background:white;

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 20px 50px rgba(0,0,0,.08);

}

.featured-image{

    width:300px;

    flex-shrink:0;

}

.featured-image img{

    width:100%;

    height:100%;

    object-fit:cover;

}

.featured-content{

    padding:40px;

}

.badge-document{

    background:#1B7A46;

    color:white;

    padding:8px 18px;

    border-radius:30px;

    font-size:.85rem;

}

.featured-content h3{

    margin:20px 0;

    color:#17406D;

    font-size:32px;

}

.featured-content p{

    color:#666;

    line-height:1.8;

}

.document-details{

    display:flex;

    gap:25px;

    margin:25px 0;

    color:#555;

}

.featured-buttons{

    display:flex;

    gap:15px;

}

.btn-view{

    background:#2E8B57;

    color:white;

    padding:12px 28px;

    border-radius:30px;

    text-decoration:none;

}

.btn-download{

    border:2px solid #17406D;

    color:#17406D;

    padding:12px 28px;

    border-radius:30px;

    text-decoration:none;

}

/*=========================
LIBRARY
=========================*/

.library-section{

    padding:35px 0;

}

.library-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:30px;

}

.library-card{

    background:white;

    border-radius:18px;

    overflow:hidden;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.35s;

}

.library-card:hover{

    transform:translateY(-8px);

}

.library-card img{

    width:100%;

    height:260px;

    object-fit:cover;

}

.library-body{

    padding:20px;

}

.doc-type{

    display:inline-block;

    background:#EAF6ED;

    color:#2E8B57;

    padding:6px 15px;

    border-radius:20px;

    font-size:.8rem;

    margin-bottom:12px;

}

.library-body h5{

    color:#17406D;

    min-height:55px;

    font-weight:700;

}

.doc-info{

    display:flex;

    justify-content:space-between;

    color:#666;

    margin:20px 0;

}

.btn-library{

    width:100%;

    display:block;

    text-align:center;

    background:#2E8B57;

    color:white;

    padding:12px;

    border-radius:12px;

    text-decoration:none;

    transition:.3s;

}

.btn-library:hover{

    background:#236b44;

    color:white;

}

/*=========================
RESPONSIVO
=========================*/

@media(max-width:992px){

.featured-card{

    flex-direction:column;

}

.featured-image{

    width:100%;

    height:350px;

}

.document-details{

    flex-wrap:wrap;

}

.featured-buttons{

    flex-direction:column;

}

}

/*=============================
    Oportunidades
  =============================*/
  /* ========================================
   PÁGINA DE OPORTUNIDADES
======================================== */

.opportunities-page {
    background: #f7f9fb;
    min-height: 100vh;
}


/* ========================================
   HERO / CABEÇALHO
======================================== */

.opportunities-hero {
    padding: 80px 20px 70px;
    text-align: center;
    background: #fff;
}

.opportunities-hero .container {
    max-width: 900px;
}

.opportunities-hero h1 {
    color: #17406d;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.opportunities-hero .title-line {
    width: 75px;
    height: 4px;
    background: #f5c542;
    margin: 0 auto 25px;
    border-radius: 10px;
}

.opportunities-hero p {
    max-width: 700px;
    margin: 0 auto;
    color: #666;
    font-size: 1.08rem;
    line-height: 1.8;
}


/* ========================================
   SECÇÃO DE VAGAS
======================================== */

.jobs-section {
    padding: 70px 0 90px;
}

.jobs-section-header {
    margin-bottom: 40px;
}

.jobs-section-header h2 {
    color: #17406d;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.jobs-section-header p {
    color: #777;
    margin: 0;
}


/* ========================================
   CARD DA VAGA
======================================== */

.job-card {
    position: relative;

    background: #fff;

    border: 1px solid #e8ecef;
    border-radius: 18px;

    padding: 35px;

    margin-bottom: 25px;

/*box-shadow: 0 5px 5px rgba(0, 0, 0, 0.06);*/
    /*
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;*/
}

/*
.job-card:hover {
    transform: translateY(-5px);

    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.10);

    border-color: rgba(46, 139, 87, 0.25);
    
    }*/



/* ========================================
   ESTADO DA VAGA
======================================== */

.job-status {
    display: inline-block;

    padding: 6px 14px;

    margin-bottom: 18px;

    background: #eaf6ed;
    color: #2e8b57;

    border-radius: 30px;

    font-size: 0.78rem;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.5px;
}


/* Vaga encerrada */

.job-status.closed {
    background: #f1f1f1;
    color: #777;
}


/* ========================================
   TÍTULO
======================================== */

.job-card h3 {
    color: #17406d;

    font-size: 1.6rem;
    font-weight: 700;

    margin-bottom: 18px;
}


/* ========================================
   INFORMAÇÕES DA VAGA
======================================== */

.job-meta {
    display: flex;
    flex-wrap: wrap;

    gap: 12px 25px;

    margin-bottom: 20px;

    color: #666;

    font-size: 0.95rem;
}

.job-meta span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.job-meta i {
    color: #2e8b57;
    font-size: 1rem;
}


/* ========================================
   DESCRIÇÃO
======================================== */

.job-card > p {
    max-width: 850px;

    color: #666;

    font-size: 1rem;
    line-height: 1.75;

    margin-bottom: 25px;
}


/* ========================================
   BOTÃO
======================================== */

.btn-job {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    padding: 11px 24px;

    background: #2e8b57;
    color: #fff;

    border-radius: 30px;

    font-size: 0.95rem;
    font-weight: 600;

    text-decoration: none;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

.btn-job:hover {
    background: #236d43;
    color: #fff;

    transform: translateY(-2px);
}

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

.btn-job:hover i {
    transform: translateX(4px);
}


/* ========================================
   VAGA ENCERRADA
======================================== */

.job-card.closed {
    opacity: 0.75;
}

.job-card.closed .btn-job {
    background: #777;
}


/* ========================================
   SEM VAGAS DISPONÍVEIS
======================================== */

.no-opportunities {
    background: #fff;

    border-radius: 18px;

    padding: 60px 30px;

    text-align: center;

    border: 1px solid #e8ecef;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.no-opportunities i {
    display: block;

    color: #2e8b57;

    font-size: 3.5rem;

    margin-bottom: 20px;
}

.no-opportunities h3 {
    color: #17406d;

    font-size: 1.5rem;
    font-weight: 700;

    margin-bottom: 12px;
}

.no-opportunities p {
    max-width: 600px;

    margin: 0 auto;

    color: #777;

    line-height: 1.7;
}


/* ========================================
   RESPONSIVO - TABLET
======================================== */

@media (max-width: 991.98px) {

    .opportunities-hero {
        padding: 65px 20px 55px;
    }

    .opportunities-hero h1 {
        font-size: 2.3rem;
    }

    .jobs-section {
        padding: 55px 0 70px;
    }

    .job-card {
        padding: 30px;
    }
}


/* ========================================
   RESPONSIVO - MOBILE
======================================== */

@media (max-width: 767.98px) {

    .opportunities-hero {
        padding: 50px 15px;
    }

    .opportunities-hero h1 {
        font-size: 2rem;
    }

    .opportunities-hero p {
        font-size: 1rem;
    }

    .jobs-section {
        padding: 45px 0 60px;
    }

    .jobs-section-header {
        text-align: center;
        margin-bottom: 30px;
    }

    .jobs-section-header h2 {
        font-size: 1.7rem;
    }

    .job-card {
        padding: 25px 20px;
        border-radius: 14px;
    }

    .job-card h3 {
        font-size: 1.35rem;
    }

    .job-meta {
        flex-direction: column;
        gap: 10px;
    }

    .btn-job {
        width: 100%;
    }

    .no-opportunities {
        padding: 45px 20px;
    }
}


/* ========================================
   MOBILE PEQUENO
======================================== */

@media (max-width: 480px) {

    .opportunities-hero h1 {
        font-size: 1.8rem;
    }

    .job-card {
        padding: 22px 18px;
    }

}

/* ========================================
   TERMOS DE REFERÊNCIA (TOR)
======================================== */

.job-tor {
    display: flex;
    align-items: center;
    gap: 16px;

    max-width: 750px;

    padding: 16px 18px;
    margin: 25px 0;

    background: #f8fafb;

    border: 1px solid #e3e8ec;
    border-left: 4px solid #2e8b57;

    border-radius: 10px;
}


/* ÍCONE PDF */

.tor-icon {
    width: 48px;
    height: 48px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff0f0;
    color: #d84343;

    border-radius: 10px;

    font-size: 1.6rem;
}


/* INFORMAÇÕES */

.tor-content {
    display: flex;
    flex-direction: column;

    flex: 1;
}

.tor-label {
    color: #2e8b57;

    font-size: 0.75rem;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tor-content strong {
    color: #17406d;

    font-size: 0.98rem;

    margin: 2px 0;
}

.tor-content small {
    color: #888;
}


/* BOTÃO */

.btn-tor {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 7px;

    padding: 9px 17px;

    border: 1px solid #17406d;
    border-radius: 25px;

    color: #17406d;
    background: transparent;

    font-size: 0.88rem;
    font-weight: 600;

    text-decoration: none;

    white-space: nowrap;

    transition: 0.25s ease;
}

.btn-tor:hover {
    background: #17406d;
    color: #fff;
}


@media (max-width: 767.98px) {

    .job-tor {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .tor-content {
        min-width: calc(100% - 70px);
    }

    .btn-tor {
        width: 100%;
        margin-top: 5px;
    }

}

/* ========================================
   OPORTUNIDADE - HOME
======================================== */

.home-opportunity {
    padding: 55px 0;
}

.opportunity-highlight {
    position: relative;

    display: flex;
    align-items: center;
    gap: 28px;

    padding: 35px 40px;

    background:
        linear-gradient(
            135deg,
            #17406d 0%,
            #337ab7 100%
        );

    border-radius: 22px;

    color: #fff;

    overflow: hidden;

    box-shadow: 0 15px 35px rgba(23, 64, 109, 0.18);
}


/* detalhe decorativo */

.opportunity-highlight::after {
    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    right: -80px;
    top: -120px;

    border: 35px solid rgba(255, 255, 255, 0.06);

    border-radius: 50%;
}


/* ÍCONE */

.opportunity-highlight-icon {
    width: 75px;
    height: 75px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255, 255, 255, 0.12);

    border: 1px solid rgba(255, 255, 255, 0.18);

    border-radius: 18px;

    font-size: 2rem;
}


/* CONTEÚDO */

.opportunity-highlight-content {
    position: relative;
    z-index: 2;

    flex: 1;
}

.opportunity-eyebrow {
    display: inline-block;

    margin-bottom: 7px;

    color: #f5c542;

    font-size: 0.78rem;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.opportunity-highlight h2 {
    color: #fff;

    font-size: 1.8rem;
    font-weight: 700;

    margin-bottom: 8px;
}

.opportunity-highlight p {
    max-width: 680px;

    margin: 0 0 13px;

    color: rgba(255, 255, 255, 0.85);

    line-height: 1.6;
}


/* INFORMAÇÕES */

.opportunity-highlight-meta {
    display: flex;
    flex-wrap: wrap;

    gap: 10px 25px;

    font-size: 0.85rem;

    color: rgba(255, 255, 255, 0.85);
}

.opportunity-highlight-meta span {
    display: flex;
    align-items: center;
    gap: 7px;
}

.opportunity-highlight-meta .bi-circle-fill {
    color: #5fda82;
    font-size: 0.5rem;
}


/* BOTÃO */

.opportunity-highlight-action {
    position: relative;
    z-index: 2;

    flex-shrink: 0;
}

.btn-opportunity {
    display: inline-flex;

    align-items: center;
    gap: 10px;

    padding: 13px 24px;

    background: #fff;
    color: #17406d;

    border-radius: 30px;

    font-size: 0.93rem;
    font-weight: 700;

    text-decoration: none;

    white-space: nowrap;

    transition: 0.3s ease;
}

.btn-opportunity:hover {
    background: #f5c542;
    color: #17406d;

    transform: translateY(-2px);
}

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

.btn-opportunity:hover i {
    transform: translateX(4px);
}

@media (max-width: 991.98px) {

    .opportunity-highlight {
        padding: 30px;

        align-items: flex-start;
        flex-wrap: wrap;
    }

    .opportunity-highlight-content {
        flex: 1 1 calc(100% - 110px);
    }

    .opportunity-highlight-action {
        width: 100%;
        padding-left: 103px;
    }
}


@media (max-width: 767.98px) {

    .home-opportunity {
        padding: 40px 0;
    }

    .opportunity-highlight {
        flex-direction: column;

        padding: 28px 22px;

        border-radius: 16px;
    }

    .opportunity-highlight-icon {
        width: 60px;
        height: 60px;

        font-size: 1.6rem;
    }

    .opportunity-highlight h2 {
        font-size: 1.5rem;
    }

    .opportunity-highlight-content {
        width: 100%;
    }

    .opportunity-highlight-meta {
        flex-direction: column;
        gap: 8px;
    }

    .opportunity-highlight-action {
        width: 100%;
        padding-left: 0;
    }

    .btn-opportunity {
        width: 100%;
        justify-content: center;
    }
}
/*
===================
notificacao vagas
===================
*/

.opportunity-alert {
    background: #f3f8f2;
    border-left: 4px solid #008d00;
    padding: 16px 0;
}

.opportunity-alert strong {
    display: block;
    margin-bottom: 4px;
}

.opportunity-alert p {
    font-size: 0.95rem;
}

.btn-opportunity-alert {
    background: #008d00;
    color: #fff;
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 6px;
    white-space: nowrap;
}

.btn-opportunity-alert:hover {
    color: #fff;
    opacity: 0.9;
}

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


/*===========================
    aplication instructions
=============================*/
.application-instructions {
    margin-top: 1.5rem;
    padding: 1.25rem;
    background: #f5f8f4;
    /*border-left: 4px solid #008d00;*/
    border-radius: 6px;
}

.application-instructions h4 {
    margin-bottom: .75rem;
}

.application-instructions a {
    color: #008d00;
    font-weight: 600;
    text-decoration: none;
}

.application-instructions a:hover {
    text-decoration: underline;
}