html,
body {
  margin: 0
}

body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
  z-index: 10;
}

 :root {
                --primary: #0062ff;
                --secondary: #00f2fe;
                --dark: #0f172a;
                --light-slate: #f8fafc;
                --glass: rgba(255, 255, 255, 0.8);
            }

            body {
                font-family: 'Plus Jakarta Sans', sans-serif;
                background-color: var(--light-slate);
            }

            /* --- HERO BANNER --- */
            .banner {
                background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
                min-height: 60vh;
                display: flex;
                align-items: center;
                position: relative;
                overflow: hidden;
                color: white;
                border-radius: 0 0 50px 50px;
            }

            .banner::before {
                content: "";
                position: absolute;
                width: 100%;
                height: 100%;
                background: url('https://www.transparenttextures.com/patterns/carbon-fibre.png');
                opacity: 0.1;
            }

            .hero-content h1 {
                font-size: 3.5rem;
                font-weight: 800;
                line-height: 1.1;
                background: linear-gradient(to right, #fff, var(--secondary));
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
            }

            /* --- SEÇÃO SOBRE --- */
            #sobre {
                padding: 100px 0;
            }

            .seção-titulo h1 {
                font-weight: 800;
                color: var(--dark);
                font-size: 2.5rem;
                margin-bottom: 40px;
            }

            .seção-titulo span {
                color: var(--primary);
            }

            .intro-text {
                font-size: 1.15rem;
                color: #475569;
                line-height: 1.8;
                margin-bottom: 40px;
                border-left: 5px solid var(--primary);
                padding-left: 20px;
            }

            /* --- ICON BOXES (Objetivos) --- */
            .objective-card {
    background: var(--glass);
    backdrop-filter: blur(10px);

    padding: 30px;
    border-radius: 24px;
    margin-bottom: 20px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    display: flex;
    gap: 20px;
        box-shadow: 0 20px 40px rgba(0, 98, 255, 0.15);
    
    /* 🔥 borda mais visível */
    border: 1px solid rgba(0, 98, 255, 0.4);
}

.objective-card:hover {
    transform: translateX(10px);
    background: white;
    box-shadow: 0 20px 40px rgba(0, 98, 255, 0.15);
    
    /* 🔥 borda mais visível */
    border: 1px solid rgba(0, 98, 255, 0.4);
}
            .icon-box-new {
                width: 60px;
                height: 60px;
                background: linear-gradient(135deg, var(--primary), var(--secondary));
                border-radius: 16px;
                display: flex;
                align-items: center;
                justify-content: center;
                color: white;
                font-size: 1.5rem;
                flex-shrink: 0;
            }

            .objective-card h4 {
                font-weight: 700;
                color: var(--dark);
                margin-bottom: 8px;
                font-size: 1.2rem;
            }

            .objective-card p {
                margin: 0;
                color: #64748b;
                font-size: 0.95rem;
            }

            /* --- CAROUSEL / MEDIA --- */
            .media-container {
                position: relative;
                padding: 20px;
            }

            .img-frame {
                border-radius: 30px;
                overflow: hidden;
                box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
                border: 10px solid white;
            }

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Open Sans", sans-serif;
}

.container {
  max-width: 1500px;
}

/*
* Extra utilities
*/

.flex-equal>* {
  flex: 1;
}

@media (min-width: 768px) {
  .flex-md-equal>* {
    flex: 1;
  }
}


/*--------------------------------------------------------------
  # animação load
  --------------------------------------------------------------*/
.anima-bra {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 100px;
  height: 18px;
  background: skyblue;
  border-radius: 50%;
  transform: translate(-50%, 400%)
}

.anima-bra:before,
.anima-bra:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: skyblue;
  border-radius: 50%;
  opacity: 0.5;
  transform: translate(-50%, -50%) scale(1);
  animation: ripple 1s infinite ease-in;
}

.anima-bra:after {
  width: 15px;
  height: 15px;
  border-radius: 0 50% 50%;
  transform: translate(-50%, -1000%) rotate(45deg);
  animation: drip 1s infinite ease-in;
}

@keyframes ripple {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }

  100% {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }

}

@keyframes drip {
  0% {
    transform: translate(-50%, -1000%) rotate(45deg);
    opacity: 0;
  }

  50% {
    transform: translate(-50%, -1000%) rotate(45deg);
    opacity: 1;
  }

  100% {
    transform: translate(-50%, 0) rotate(45deg);
    opacity: 0;
  }
}




/*--------------------------------------------------------------
  # fim
  --------------------------------------------------------------*/


/*--------------------------------------------------------------
  # header e nav
  --------------------------------------------------------------*/
#header {
  position: sticky;
  transition: all 0.5s;
  z-index: 950;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-family: "Open Sans", sans-serif;
}


.cor-header {
  /*
    background: rgba(23, 26, 29, 0.8);*/
  background: rgb(255 0 18 / 89%)
}

.logo img {
  /* width: 120px;*/
  width: 250px;
}

.container-nav {
  max-width: 960px;
}

.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  text-transform: uppercase;
  font-family: "Open Sans", sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: white;
  white-space: nowrap;
  transition: 0.3s;
  cursor: pointer;
  /* text-shadow: 
    1px 0 0 white, right 
    0 1px 0 white, top 
    -1px 0 0 white, left 
    0 -1px 0 white; bottom */
}



.navbar a i,
.navbar a:focus i {
  font-size: 17px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: black;

}

.nav-link-custom {
  display: block;
  padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
  font-size: var(--bs-nav-link-font-size);
  font-weight: var(--bs-nav-link-font-weight);
  color: var(--bs-nav-link-color);
  text-decoration: none;
  background: 0 0;
  border: 0;
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
}

.navbar-toggler {
  color: #fff;
}

.custom-botão.navbar-toggler {
  border-color: white;
}

.navbar-custom-bt-icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  vertical-align: middle;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='white' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}


@media screen and (max-width: 1300px) {
  .logo img {
    /* width: 120px;*/
    width: 150px;
    font-size: 14.4px;
  }

  .navbar a,
  .navbar a:focus {

    font-size: 14.4px;

  }


}

@media screen and (max-width: 1150px) {

  .navbar a,
  .navbar a:focus {

    font-size: 12.8px;

  }

}

@media screen and (max-width: 992px) {

  .nav-link-custom {
    display: none;

  }

  .navbar-toggler {
    color: #fff;
  }

  .navbar a,
  .navbar a:focus {

    color: #BF0411;

  }


}


/*.offcanvas-body li{
   
    
    -webkit-text-stroke: 1px black;
}
*/

@keyframes pulsate {
  50% {
    stroke-width: 5px
  }
}







/*nav  celular config*/
.offcanvas.offcanvas-end {
  top: 0;
  right: 0;
  width: var(--bs-offcanvas-width);
  border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  transform: translateX(100%);
}

@media screen and (max-width: 732px) {

  .offcanvas.offcanvas-end {
    top: 0;
    right: 0;
    width: 50%;
    border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(100%);
  }

}

@media screen and (max-width: 500px) {

  .offcanvas.offcanvas-end {
    top: 0;
    right: 0;
    width: 75%;
    border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(100%);
  }

}



/**/





/*--------------------------------------------------------------
  # fim nav e head
  --------------------------------------------------------------*/

/*--------------------------------------------------------------
  # inicio apresenta slide banner
  --------------------------------------------------------------*/



.banner {
  /*background: url("../img/banner/site-Bragantec2024_desktop.jpg");*/
  width: 100%;
  height: 100%;
  background-size: cover;
  /*padding: 10px 8.3% 0.5%;*/
  background: rgb(255 0 18 / 89%)
}

.banner h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.banner p {
  color: #fff;
}

.banner .banner-btn {
  font-family: "Open Sans", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 35px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 20px;
  background: #428bca;
  color: #fff;
}

.banner .banner-btn:hover {
  background: #5697d0;
}

.banner .card-body {
  padding: 10px 0px 2% 0px;
}

.carousel-caption {
  position: absolute;
  width: 45%;
  right: 55%;
  bottom: 25%;
  left: 15%;
  padding-top: 50%;
  padding-bottom: 1.25rem;
  color: #fff;
  text-align: center;
}


.carousel-caption h1 {
  font-size: 2.5rem;
}

@media screen and (max-width: 1500px) {
  .banner {
    width: 100%;
    padding: 10px 0px 0px 0px;
  }

  .banner h3 {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 0px;
  }

  .banner .card-body {
    padding: 10px 0px 0px 0px;
  }

  .carousel-caption h1 {
    font-size: 2.25rem;
  }
}

@media screen and (max-width: 1350px) {
  .banner {
    width: 100%;
    padding: 10px 0px 0px 0px;
  }

  .banner h3 {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 0px;
  }

  .banner .card-body {
    padding: 10px 0px 0px 0px;
  }

  .carousel-caption h1 {
    font-size: 2rem;
  }

  .carousel-caption a {
    font-size: 1rem;
  }
}

@media screen and (max-width: 1300px) {

  .carousel-caption h1 {
    font-size: 1.75rem;
  }

  .carousel-caption a {
    font-size: 0.95rem;
  }
}

@media screen and (max-width: 1190px) {

  .carousel-caption h1 {
    font-size: 1.65rem;
  }

}

@media screen and (max-width: 1060px) {

  .carousel-caption {
    bottom: 10%;
  }

}

@media screen and (max-width: 990px) {

  .carousel-caption h1 {
    font-size: 1.6rem;
  }
}


@media screen and (max-width: 900px) {
  .carousel-caption {
    bottom: 5%;
  }

  .carousel-caption h1 {
    font-size: 1.5rem;
  }

}

@media screen and (max-width: 750px) {

  .carousel-caption h1 {
    font-size: 1rem;
  }

  .carousel-caption a {
    font-size: 0.65rem;
  }
}

@media screen and (max-width: 590px) {

  #header {
    position: static !important;
    z-index: auto !important;
  }

  body {
    padding-top: 0 !important;
  }

  .carousel-caption {
    position: absolute !important;
    width: 70% !important;
    height: 80%;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    text-align: center !important;
    padding: 0 !important;
    color: rgb(0, 0, 0) !important;
  }

  .carousel-caption h1 {
    font-size: 1.08rem !important;
    margin-top: 0 !important;
    margin-bottom: 10px !important;
  }

  .carousel-caption p {
    display: block !important;
    font-size: 0.7rem !important;
    line-height: 1.2 !important;
    margin-bottom: 15px !important;
  }

  .carousel-caption .btn {
    padding: 8px 15px !important;
    font-size: 0.8rem !important;
  }

  .card-img-top {
    height: 220px;
  }
}





/*--------------------------------------------------------------
  # fim apresenta slide banner
  --------------------------------------------------------------*/


/*--------------------------------------------------------------
  # inicio  custom main
  --------------------------------------------------------------*/


/**/



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

#noticias {
  background-color: #01a3b8;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

#noticias .mb-4 {
  color: white;
}

.news-card {
  max-width: 900px;
  margin: 0 auto 0.5rem auto;
  padding: 0.5rem 0.5rem 0.5rem 0.5rem;
  border: 1px solid #ddd;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px rgb(0 0 0 / 0.1);
  transition: box-shadow 0.2s ease;
  background-color: #fff;
  position: relative;
  /* para o botão */
  min-height: 110px;
}

.news-card:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.news-header {
  margin-bottom: 0.35rem;
  padding-right: 140px;
  /* espaço pro botão */
}

.news-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  color: #222;
}

.news-date {
  font-size: 1rem;
  font-weight: 600;
  color: #0d6efd;
  /* azul para data */
  margin-bottom: 0.5rem;
  display: block;
}

.news-description {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 0;
  line-height: 1.3;
}

.btn-type {
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 0.3rem;
  padding: 0.4rem 0.7rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  text-decoration: none;
  color: #fff;
  transition: background-color 0.2s ease;
  position: absolute;
  top: 1rem;
  right: 1rem;
  white-space: nowrap;
  box-shadow: 0 2px 5px rgb(0 0 0 / 0.15);
  width: 100px;
  height: 40px;
}

.btn-pdf {
  background-color: #d9534f;
}

.btn-pdf:hover {
  background-color: #c9302c;
}

.btn-site {
  background-color: #17a2b8;
}

.btn-site:hover {
  background-color: #117a8b;
}

.btn-image {
  background-color: #5cb85c;
}

.btn-image:hover {
  background-color: #449d44;
}

.btn-type i {
  font-size: 1rem;
}


/*Sobre*/


.sobre .seção-titulo {
  font-size: 28px;
  font-weight: 700;
  padding: 30px 0px;

}

.sobre .seção-titulo .texto {
  justify-content: center;
  text-align: center;
  width: 80%;
  flex: 0 0 auto;
  margin: 0% 10%;
}

@media (max-width: 1200px) {
  .sobre .seção-titulo .texto {
    justify-content: center;
    text-align: center;
    width: 100%;
    flex: 0 0 auto;
    margin: 0% 0%;
  }
}



.sobre .seção-titulo h1 {
  color: rgb(255 0 18);

  padding-top: 10px;
  padding-bottom: 10px;
}

.sobre p {
  font-size: 16px;
  text-indent: 0;
  text-align: justify;
}

.sobre p span {
  color: rgb(255 0 18);
}

.banner-sobre {

  background-size: cover;
  /*padding: 10px 8.3% 0.5%;*/
  margin-bottom: 1rem;

}

.sobre .carousel-indicators {
  background: rgb(255 0 18 / 89%);
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10;
  display: flex;
  justify-content: center;
  padding: 0;
  margin-right: 0%;
  margin-bottom: 1rem;
  margin-left: 0%;
}




.sobre .icon-boxes h3 {
  font-size: 28px;
  font-weight: 700;
  color: #394047;
  margin-bottom: 15px;
}

.sobre .icon-box {
  margin-top: 10px;
}

.sobre .icon-box .icon {
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: 2px solid #af5e5e;
  border-radius: 50px;
  transition: 0.5s;
}

.sobre .icon-box .icon i {
  color: rgb(255 0 18);
  font-size: 32px;
}

.sobre .icon-box:hover .icon {
  background: rgb(255 0 18);
  border-color: rgb(255 0 18);
}

.sobre .icon-box:hover .icon i {
  color: #fff;
}

.sobre .icon-box .title {
  margin-left: 85px;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
}

.sobre .icon-box .title a {
  color: #343a40;
  transition: 0.3s;
  text-indent: 0;
  text-align: justify;

}

/*.about .icon-box .title a:hover {
    color: #428bca;
  }*/
.sobre .icon-box .description {
  margin-left: 85px;
  line-height: 24px;
  font-size: 14px;
}

svg.bi.bi-lightbulb {
  color: black;
}

svg.bi.bi-search {
  color: black;
}



.col-xl-5.col-lg-6.icon-boxes.d-flex.flex-column.align-items-stretch.justify-content-center.py-5.px-lg-5 {
  padding-top: 0rem !important;
}

/**/

/*feira virtual*/
.fei_vi {
  background-color: #01a3b8;
  padding: 35px 0px;
}

.fei_vi .container-fluid {
  background: url('../img/fei_vi/fundo-bra.svg'), #01a3b8;
  background-size: 100% auto;
}

.fei_vi .seção-titulo {
  background-color: #01a3b8;
  font-size: 28px;
  font-weight: 700;
}

.fei_vi .seção-titulo h1 {
  color: white;


}

.fei_vi .seção-titulo h3 {
  color: white;


}

.fei_vi .seção-titulo p {

  font-size: 17px;

}

.fei_vi a {
  color: black;
  text-decoration: none;
}

.fei_vi .card {
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 6px 10px rgba(0, 0, 0, .08), 0 0 6px rgba(0, 0, 0, .05);
  transition: .3s transform cubic-bezier(.155, 1.105, .295, 1.12), .3s box-shadow, .3s -webkit-transform cubic-bezier(.155, 1.105, .295, 1.12);
  padding: 14px 14px 14px 14px;
  margin-top: 30px;
  margin-bottom: 30px;

}

/*
.fei_vi .card{
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 6px 10px rgba(0,0,0,.08), 0 0 6px rgba(0,0,0,.05);
        transition: .3s transform cubic-bezier(.155,1.105,.295,1.12),.3s box-shadow,.3s -webkit-transform cubic-bezier(.155,1.105,.295,1.12);
    padding: 14px 14px 14px 14px;
    margin-top: 30px;
    margin-bottom: 30px;
    cursor: pointer;
}
 em breve   
.fei_vi .card:hover{
    transform: scale(1.05);
 box-shadow: 0 10px 20px rgba(0,0,0,.12), 0 4px 8px rgba(0,0,0,.06);
 background-color: #fec20e;
}

*/

.fei_vi p span {
  color: rgb(255 0 18);
}


/**/











/*participe*/


.participe {
  background-color: #fec20e;
}

.participe .seção-titulo {
  font-size: 28px;
  font-weight: 700;
  padding: 30px 0px;

}

.participe .seção-titulo .texto {
  justify-content: center;
  text-align: center;
  width: 80%;
  flex: 0 0 auto;
  margin: 0% 10%;
}

@media (max-width: 1200px) {
  .participe .seção-titulo .texto {
    justify-content: center;
    text-align: center;
    width: 100%;
    flex: 0 0 auto;
    margin: 0% 0%;
  }
}

.participe .seção-titulo h1 {
  /*color:rgb(255 0 18);*/
  color: white;
}

.participe .seção-titulo h2 {
  /*color:rgb(255 0 18);*/
  color: white;

}

.participe .seção-titulo strong {
  font-style: italic;
  text-decoration: underline;
}

.participe .seção-titulo p {

  font-size: 17px;

}

.participe .par_apresenta_box {
  padding-top: 30px;
}

.participe .par_apresenta_box .parcitipe_box {
  padding: 60px 40px;
  box-shadow: 0 3px 20px -2px rgba(20, 45, 100, 0.1);
  background: #fff;
  height: 100%;
  border-top: 4px solid #fff;
  border-radius: 5px;
}

.participe .par_apresenta_box .parcitipe_box h3 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 28px;
  text-align: center;
  color: #01a3b8;
}

.participe .par_apresenta_box .parcitipe_box p {
  padding: 10px 0;
  text-align: justify;
  color: black;
  line-height: 20px;

}


.participe .par_apresenta_box .parcitipe_box ul {
  padding: 10px 0;
  list-style: none;
  color: #999;
  text-align: left;
  line-height: 20px;
}

.participe .par_apresenta_box .parcitipe_box .obs {

  text-align: center;
  color: #28a745;
}

.participe .par_apresenta_box .parcitipe_box .part_text strong {
  color: black;
}

.participe .par_apresenta_box .parcitipe_box .part_text a {
  text-decoration: underline;
  color: #01a3b8;
}

.participe .par_apresenta_box .parcitipe_box .modelo_txt .part_text a {
  text-decoration: underline;
  color: black;
}

.participe .par_apresenta_box .parcitipe_box .modelo_txt .part_text a:hover strong {
  text-decoration: underline;
  color: #01a3b8;
}

.participe .par_apresenta_box .parcitipe_box .modelo_txt .part_text a:hover svg {

  color: #01a3b8;
}

.participe .par_apresenta_box .margen {
  margin-bottom: 30px;
}




.participe .par_apresenta_box .parcitipe_box .part_text .link strong {
  padding: 10px 0;
  text-align: justify;
  color: #01a3b8;
  line-height: 20px;


}

.participe .par_apresenta_box .parcitipe_box .part_text li {
  margin-top: 30px;
  margin-bottom: 30px;


}

.participe .par_apresenta_box .parcitipe_box ul i {
  padding: 10px 0 10px 30px;
  position: relative;
  text-align: left;
  font-style: normal;
}

.participe .par_apresenta_box .parcitipe_box ul i strong {
  text-align: justify;
  color: black;
  line-height: 20px;
}

.participe .par_apresenta_box .parcitipe_box ul svg {
  color: #28a745;
  max-width: 24px;

  position: absolute;
  left: 0;
  top: 8px;
}

.participe .par_apresenta_box .parcitipe_box .modelo_txt ul a svg {
  color: none;
  max-width: 24px;
  position: absolute;
  left: 0;
  top: 8px;
}

.participe .par_apresenta_box .parcitipe_box .modelo_txt ul a svg strong:hover {
  color: none;
  max-width: 24px;
  position: absolute;
  left: 0;
  top: 8px;
}

.participe .par_apresenta_box .parcitipe_box .posi_bt {
  display: flex;
  justify-content: center;
}


.participe .par_apresenta_box .parcitipe_box .card-btn {



  display: inline-block;
  padding: 12px 35px;
  border-radius: 15px;
  color: #01a3b8;
  background: white;
  font-size: 16px;
  font-weight: 500;
  font-family: "Jost", sans-serif;
  transition: 0.3s;
  border: 1px solid #01a3b8;
  margin: 0 auto;
  justify-content: center;
  margin: 0 auto;
  cursor: pointer;
}

.participe .par_apresenta_box .parcitipe_box .card-btn strong {
  transition: 0.3s;

  color: #01a3b8;

}

.participe .par_apresenta_box .parcitipe_box .part_text .posi_bt .card-btn {
  margin-bottom: 1rem;
}

.participe .par_apresenta_box .parcitipe_box .card-btn:hover {
  background: #01a3b8;
  color: #fff;
}

.participe .par_apresenta_box .parcitipe_box .card-btn:hover .card_btn_text {
  transition: 0.3s;
  color: #fff;
}


@media (max-width: 992px) {
  .participe .par_apresenta_box .parcitipe_box {
    max-width: 85%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 767px) {
  .participe .par_apresenta_box .parcitipe_box {
    max-width: 90%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 649.95px) {
  .participe .par_apresenta_box .parcitipe_box {
    max-width: 100%;
    margin: 0 auto 30px auto;
  }
}

/*popup*/


.participe .par_apresenta_box .popup1 .overlay {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
  display: none;
  overflow-y: scroll;
  inset: 0;
}

.participe .par_apresenta_box .popup1 .card {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  background: #fff;
  width: 82.5%;
  z-index: 1003;
  text-align: center;
  padding: 20px 5px;
  box-sizing: border-box;
}





.participe .par_apresenta_box .popup1 .card .card-title {
  height: 30px;
}

.participe .par_apresenta_box .popup1 .card .card-title h2 {
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 28px;
  text-align: center;
  color: #01a3b8;
}

.participe .par_apresenta_box .popup1 .card .card-body {
  margin-top: 10px;

}

.participe .par_apresenta_box .popup1 .card .card-body p {
  font-size: 16px;
  text-align: justify;
  color: black;
  line-height: 20px;
}

.participe .par_apresenta_box .popup1 .card .card-body a {

  color: #28a745;

}

.participe .par_apresenta_box .popup1 .card .fecha-bt {
  display: inline-block;
  padding: 12px 35px;
  border-radius: 15px;
  color: #fec20e;
  background: white;
  transition: none;
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s;
  border: 1px solid #fec20e;
  margin: 0 auto;

  cursor: pointer;
}

.participe .par_apresenta_box .popup1 .card .fecha-bt:hover {
  background: #fec20e;
  color: #fff;
}

@media screen and (max-width: 1200px) {
  .participe .par_apresenta_box .popup1 .card {

    width: 95%;

  }

  .participe .par_apresenta_box .popup1 .card .card-body p {
    font-size: 18px;

  }

}

@media screen and (max-width: 396px) {
  .participe .par_apresenta_box .popup1 .card .card-body {
    padding-top: 40px;

  }

}



.participe .par_apresenta_box .popup1 .card .card-body .boxscroll {

  /*height: 600px;*/
  border: 5px solid rgb(212, 17, 17);
  border-radius: .25rem;
  justify-content: center !important;
  line-height: 3em;
  overflow: scroll;
  padding: 5px;

}

.participe .par_apresenta_box .popup1 .card .card-body .boxscroll p {
  padding: 10px 0;
  text-align: justify;
  color: black;
  line-height: 20px;
}

.participe .par_apresenta_box .popup1.active .overlay {
  display: block;
}

.participe .par_apresenta_box .popup1.active .card {
  transition: all 300ms ease-in-out;
  transform: translate(-50%, -50%) scale(1);
}



/*apoie*/
.apoie {
  background-color: #01a3b8;

}

.apoie .container-fluid {
  background: url('../img/apoie/apoie.svg'), #01a3b8;
  background-size: 100% auto;
}

.apoie .seção-titulo {
  padding: 30px 0px;
  background-color: #01a3b8;
  font-size: 28px;
  font-weight: 700;
}

.apoie .seção-titulo .texto {
  justify-content: center;
  text-align: center;
  width: 80%;
  flex: 0 0 auto;
  margin: 0% 10%;
}

@media (max-width: 1200px) {
  .apoie .seção-titulo .texto {
    justify-content: center;
    text-align: center;
    width: 100%;
    flex: 0 0 auto;
    margin: 0% 0%;
  }
}

.apoie .seção-titulo h1 {
  color: white;


}

.apoie .seção-titulo h2 {
  color: white;


}

.apoie .seção-titulo p {

  font-size: 17px;

}

.apoie a {
  color: black;
  text-decoration: none;
}



.apoie .apoie_apresenta_box {
  padding-top: 30px;
  padding-bottom: 30px;
}

.apoie .apoie_apresenta_box .apoie_box {
  padding: 30px 40px;
  box-shadow: 0 3px 20px -2px rgba(20, 45, 100, 0.1);
  background: #fff;
  height: 100%;
  border-top: 4px solid #fff;
  border-radius: 5px;
}

.apoie .apoie_apresenta_box .apoie_box h3 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 28px;
  text-align: center;
  color: #01a3b8;
}

.apoie .apoie_apresenta_box .apoie_box p {
  padding: 10px 0;
  text-align: justify;
  color: black;
  line-height: 20px;

}

.apoie .apoie_apresenta_box .apoie_box .obs {

  text-align: center;
  color: #28a745;
}

.apoie .apoie_apresenta_box .apoie_box .part_text strong {
  color: #28a745;
}

.apoie .apoie_apresenta_box .apoie_box .part_text a {
  text-decoration: underline;
  color: #01a3b8;
}

.apoie .apoie_apresenta_box .apoie_box .apoie_bt {
  margin-top: 20px;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

.apoie .apoie_apresenta_box .apoie_box .apoie_bt .card-btn {
  display: inline-block;
  padding: 12px 80px;
  border-radius: 15px;
  color: #fec20e;
  background: white;
  font-size: 16px;
  font-weight: 500;
  font-family: "Jost", sans-serif;

  border: 1px solid #fec20e;
  margin: 0 auto;
  justify-content: center;
  margin: 0 auto;
  cursor: pointer;
}

.apoie .apoie_apresenta_box .apoie_box .apoie_bt .card-btn:hover {

  color: white;
  background: #fec20e;
}

.apoie .apoie_apresenta_box .apoie_box .apoie_bt .card-btn:hover strong {

  color: white;
  background: #fec20e;

}



@media (max-width: 992px) {
  .apoie .apoie_apresenta_box .apoie_box {
    max-width: 85%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 767px) {
  .apoie .apoie_apresenta_box .apoie_box {
    max-width: 90%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 649.95px) {
  .apoie .apoie_apresenta_box .apoie_box {
    max-width: 100%;
    margin: 0 auto 30px auto;
  }
}





/**/











/*Edição anteriores*/
.edi-ant {

  background: linear-gradient(rgba(12, 13, 14, 0.8), rgba(12, 13, 14, 0.8)), url("../img/body/cta-bg.jpg") fixed center center;
  background-size: cover;
  padding: 0px 0px 32px 0px;

}

.edi-ant .seção-titulo {

  padding: 30px 0px;
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.edi-ant .seção-titulo .texto {
  justify-content: center;
  text-align: center;
  width: 80%;
  flex: 0 0 auto;
  margin: 0% 10%;
}

@media (max-width: 1200px) {
  .edi-ant .seção-titulo .texto {
    justify-content: center;
    text-align: center;
    width: 100%;
    flex: 0 0 auto;
    margin: 0% 0%;
  }
}

.edi-ant a {
  text-decoration: none;
  color: none;
  color: #32353a;
  height: 100%;
}





.edi-ant .edit-title {
  font-size: 20px;
  margin: 0 0 20px 0;
  text-align: center;
}

.edi-ant .edit-title h2 {
  font-weight: bold;
}

.edi-ant .edit-img {
  margin: -30px -30px 15px -30px;
  overflow: hidden;
}

.edi-ant .edit-img .img-fluid {
  width: auto;
  height: 100%;
}

.edi-ant .title {
  font-size: 20px;
  font-weight: 600;
  padding: 0;
  margin: 0 0 20px 0;
}



@media (max-width: 649.95px) {
  .edi-ant article {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x)* .5);
    padding-left: calc(var(--bs-gutter-x)* .5);
    margin-top: var(--bs-gutter-y);
  }

}



.edi-ant .swiper {
  width: 100%;
  height: 100%;
  padding: 30px 0.4%;
  margin: 0px 0px;
  z-index: 10;
}

.edi-ant .swiper-slide {
  text-align: center;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.edi-ant .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.edi-ant .swiper-pagination {
  justify-content: center;
  display: flex;
  position: absolute;
  text-align: center;
  transition: .3s opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.edi-ant .swiper .swiper-slide article {
  background: white;
  /*box-shadow: 0 4px 16px rgba (33,37,41,0.1);*/

  box-shadow: 0 6px 10px rgba(0, 0, 0, .08), 0 0 6px rgba(0, 0, 0, .05);
  transition: .3s transform cubic-bezier(.155, 1.105, .295, 1.12), .3s box-shadow, .3s -webkit-transform cubic-bezier(.155, 1.105, .295, 1.12);

  padding: 30px;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;

  z-index: 10;
}



.edi-ant .swiper .swiper-slide article:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, .12), 0 4px 8px rgba(0, 0, 0, .06);
  background-color: #fec20e;
  border-radius: 10px;

  z-index: 15;
}

.edi-ant article:hover .swiper {
  background-color: #01a3b8;
  padding: 30px 30px;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background-color: #fec20e;

}

/**/





@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

#footer {
  background: linear-gradient(rgba(12, 13, 14, 0.8), rgba(12, 13, 14, 0.8));


  padding: 0 0 30px 0;
  color: #fff;
  font-size: 1rem;
  ;
}


#footer .logo_footer {
  margin-bottom: 10px;


}

#footer .logo_footer img {
  margin-bottom: 10px;
  width: 160px;

}

#footer a {
  text-align: center;
  color: white;
  cursor: pointer;
  transition: 0.3s;
  text-decoration: none;
}

#footer a:hover {
  color: #01a3b8;
  transition: 0.3s;
}

#footer .instituição {
  text-align: center;
  padding-top: 30px;
}
 :root {
        --line-bg: #e2e8f0;
        --accent-blue: #6366f1;
        --accent-purple: #a855f7;
        --accent-event: #ff4d4d;
    }

    .dates-container {
        font-family: 'Plus Jakarta Sans', sans-serif;
        background: #d2d3f1;
        padding: 50px 30px;
        border-radius: 40px;
        box-shadow: 0 20px 50px rgba(0,0,0,0.03);
        border: 1px solid rgba(0,0,0,0.05);
    }

    .dates-title {
        font-weight: 800;
        font-size: 1.6rem;
        color: #0f172a;
        margin-bottom: 60px;
        display: flex;
        align-items: center;
        gap: 15px;
    }

    /* Track da Timeline */
    .timeline-wrapper-modern {
        display: flex;
        justify-content: space-between;
        position: relative;
        padding-bottom: 20px;
    }

    /* Linha de fundo */
    .timeline-wrapper-modern::before {
        content: "";
        position: absolute;
        top: 25px;
        left: 0;
        right: 0;
        height: 4px;
        background: var(--line-bg);
        border-radius: 10px;
        z-index: 1;
    }

    /* Item da Data */
    .date-node {
        position: relative;
        z-index: 2;
        width: 100%;
        text-align: center;
    }

    /* O Ponto (Dot) */
    .node-dot {
        width: 18px;
        height: 18px;
        background: white;
        border: 4px solid var(--accent-blue);
        border-radius: 50%;
        margin: 18px auto 25px;
        transition: all 0.4s ease;
        box-shadow: 0 0 0 6px white;
    }

    .date-node:hover .node-dot {
        transform: scale(1.5);
        background: var(--accent-blue);
        box-shadow: 0 0 20px rgba(99, 102, 241, 0.4);
    }

    /* Estilo da Data */
    .node-calendar {
        font-family: 'Plus Jakarta Sans', sans-serif;
        background: #ffffff;
        padding: 10px 14px;
        border-radius: 999px;
        color: #0f172a;
        font-size: 0.92rem;
        font-weight: 700;
        transition: 0.3s ease, transform 0.3s ease;
        display: inline-flex;
        align-items: center;
        gap: 0.55rem;
        border: 1px solid rgba(15, 23, 42, 0.08);
        box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
    }

    .calendar-icon {
        font-size: 0.95rem;
        color: #ef4444;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .date-node:hover .node-calendar {
        background: var(--accent-blue);
        color: white;
        transform: translateX(3px);
    }

    .date-node:hover .node-calendar .calendar-icon {
        color: #ffffff;
    }

    .node-calendar.node-special {
        background: #fee2e2;
        color: #b91c1c;
        border-color: rgba(248, 113, 113, 0.35);
    }

    /* Texto da Descrição */
    .node-label {
        display: block;
        margin-top: 15px;
        font-weight: 700;
        color: #1e293b;
        font-size: 0.95rem;
        padding: 0 10px;
    }

    /* DESTAQUE: REALIZAÇÃO DA FEIRA */
    .node-special .node-dot {
        border-color: var(--accent-event);
        animation: pulse-red 2s infinite;
    }

    .node-special .node-label {
        color: var(--accent-event);
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    @keyframes pulse-red {
        0% { box-shadow: 0 0 0 0 rgba(255, 77, 77, 0.4); }
        70% { box-shadow: 0 0 0 15px rgba(255, 77, 77, 0); }
        100% { box-shadow: 0 0 0 0 rgba(255, 77, 77, 0); }
    }

    /* Responsividade */
    @media (max-width: 991px) {
        .timeline-wrapper-modern {
            flex-direction: column;
            gap: 40px;
        }
        .timeline-wrapper-modern::before {
            left: 28px;
            top: 0;
            bottom: 0;
            width: 4px;
            height: 100%;
        }
        .date-node {
            display: flex;
            align-items: center;
            text-align: left;
            gap: 20px;
        }
        .node-dot { margin: 0; }
        .node-label { margin: 0; }
    }



/*--------------------------------------------------------------
# INICIO INSCRICAO
--------------------------------------------------------------*/
    .step-item-modern {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.step-item-modern:hover {
  background: #f1f5f9;
  transform: translateX(5px);
}

.step-badge {
  background: #22c55e;
  color: white;
  font-weight: bold;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 0.8rem;
  min-width: 35px;
  text-align: center;
}
.section-inscricao {
  position: relative;
  background: linear-gradient(135deg, #f8fafc, #eef2f7);
  overflow: hidden;
}

/* círculos decorativos suaves */
.section-inscricao::before,
.section-inscricao::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
  z-index: 0;
}

/* círculo 1 */
.section-inscricao::before {
  width: 300px;
  height: 300px;
  background: #3ecf74; /* verde inscrição */
  top: -80px;
  left: -80px;
}

/* círculo 2 */
.section-inscricao::after {
  width: 350px;
  height: 350px;
  background: #6366f1; /* roxo tecnologia */
  bottom: -100px;
  right: -100px;
}

/* garante que conteúdo fique acima */
.section-inscricao .container {
  position: relative;
  z-index: 2;
}
 /* CARD PASSOS */
.card-steps {
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  height: 100%;
}

/* STEP */
.step-item-modern {
  display: flex;
  gap: 15px;
  padding: 15px;
  border-radius: 12px;
  transition: 0.3s;
}

.step-item-modern:hover {
  background: linear-gradient(135deg,#22c55e,#16a34a);
  transform: translateX(5px);
}

.step-item-modern:hover h5,
.step-item-modern:hover p {
  color: white;
}

.step-badge {
  background: #22c55e;
  color: white;
  padding: 6px 10px;
  border-radius: 8px;
  font-weight: bold;
}

/* CTA */
.cta-inscricao {
  background: linear-gradient(135deg,#16a34a,#22c55e);
  border-radius: 25px;
  padding: 35px 25px;
  text-align: center;
  color: white;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* TÍTULO */
.cta-title {
  font-size: 1.6rem;
  font-weight: 800;
}

/* TEXTO */
.cta-subtitle {
  margin-bottom: 25px;
  opacity: 0.9;
}

/* BOTÃO */
.cta-button {
  display: block;
  width: 100%;
  padding: 35px;
  background: linear-gradient(135deg, #f97316, #fb923c);
  box-shadow: 0 15px 35px rgba(249, 115, 22, 0.4);
  border-radius: 20px;
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
  box-shadow: 0 15px 35px rgba(239,68,68,0.4);
}

.cta-button:hover {
  transform: scale(1.05);
}

/* ÍCONE */
.cta-button i {
  display: block;
  font-size: 2rem;
  margin-bottom: 10px;
}

/* BADGE */
.cta-badge {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.75rem;
  background: rgba(0,0,0,0.2);
  padding: 4px 10px;
  border-radius: 50px;
}

/* RESPONSIVO */
@media (max-width: 991px) {
  .cta-inscricao {
    margin-top: 20px;
  }
}
.step-item-modern {
  border-radius: 16px; /* mais suave e moderno */
  border: 1px solid rgba(0,0,0,0.05); /* leve contorno */
  background: rgba(255,255,255,0.7);
}
.step-item-modern {
  backdrop-filter: blur(6px);
}
/* BOTÃO */
.cta-button-modern {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 20px 30px;
  min-width: 280px;
  max-width: 400px; /* limita largura */
  
  background: linear-gradient(135deg, #f97316, #fb923c);
  border-radius: 20px;

  color: white;
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem;

  position: relative;
  overflow: hidden;

  box-shadow: 0 15px 35px rgba(249, 115, 22, 0.4);
  transition: 0.3s ease;
}

/* HOVER */
.cta-button-modern:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 45px rgba(249, 115, 22, 0.6);
}

/* 🚀 ÍCONE ANIMADO */
.rocket-icon {
  animation: rocketMove 1.5s ease-in-out infinite alternate;
}


/* ✨ EFEITO "LENTE" (brilho passando) */
.cta-button-modern::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;

  background: linear-gradient(
    120deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.4) 50%,
    rgba(255,255,255,0) 100%
  );

  transform: skewX(-20deg);
  animation: shine 3s infinite;
}



/* CARD ESCURO */
.cta-dark-card {
  background: linear-gradient(135deg,#16a34a,#22c55e);
  border-radius: 30px;
  padding: 40px 30px;
  text-align: center;
  color: white;

  box-shadow: 0 25px 50px rgba(0,0,0,0.25);

  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

/* TÍTULO */
.cta-dark-title {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 10px;
}

/* SUBTEXTO */
.cta-dark-subtitle {
  font-size: 0.95rem;
  opacity: 0.85;
  margin-bottom: 30px;
}

/* CAIXA VERMELHA */
.cta-red-box {
  display: block;
  background: linear-gradient(135deg, #f97316, #d36c17);
  border-radius: 25px;
  padding: 35px 20px;

  color: white;
  text-decoration: none;
  font-weight: 800;
  text-align: center;

  box-shadow: 0 20px 40px rgba(249, 115, 22, 0.4);

  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* ÍCONE */
.cta-red-box i {
  display: block;
  font-size: 2rem;
  margin-bottom: 15px;
}

/* TEXTO */
.cta-red-text {
  display: block;
  font-size: 1rem;
  line-height: 1.5;
  text-transform: uppercase;
}

.cta-red-box i {
  display: block;
  font-size: 2rem;
  margin-bottom: 15px;

  animation: rocketFloat 1.5s ease-in-out infinite alternate;
}

@keyframes rocketFloat {
  0% { transform: translateY(0); }
  100% { transform: translateY(-8px); }
}

/* BADGE */
.cta-red-badge {
  display: inline-block;
  margin-top: 15px;
  font-size: 0.75rem;
  background: rgba(0,0,0,0.2);
  padding: 6px 12px;
  border-radius: 50px;
}

/* HOVER */
.cta-red-box:hover {
  transform: scale(1.05);
  box-shadow: 0 30px 60px rgba(255, 59, 59, 0.6);
}

/* ANIMAÇÃO LEVE */
.cta-red-box::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 25px;
  box-shadow: 0 0 0 0 rgba(255, 59, 59, 0.4);
  animation: pulseCta 2.5s infinite;
}
.cta-red-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;

  background: linear-gradient(
    120deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.5) 50%,
    rgba(255,255,255,0) 100%
  );

  transform: skewX(-20deg);
  animation: shineMove 3s infinite;
}

@keyframes shineMove {
  0% { left: -75%; }
  100% { left: 125%; }
}
.cta-red-box:hover {
  transform: scale(1.05);
  box-shadow: 0 30px 60px rgba(249, 115, 22, 0.6);
}
.cta-red-box:active {
  transform: scale(0.95);
}
@media (min-width: 992px) {
  .nav-menu a {
    font-size: 1.1rem; /* pode aumentar mais se quiser */
  }
}
.section-docs {
  background: radial-gradient(circle at top right, #eef2ff, transparent 40%),
              linear-gradient(180deg, #f8fafc, #eef2f7);
}

/* #########################################################
AREA DOCUMENTOS 
############################################################ */
/* FUNDO */
/* =========================
   SECTION (FUNDO + ELEMENTOS)
========================= */




.section-docs {
  position: relative;
  background: linear-gradient(180deg, #f8fafc, #eef2f7);
  overflow: hidden;
}

/* elipse direita */
.section-docs::after {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.15), transparent 70%);
  border-radius: 50%;
  animation: floatBlob 18s ease-in-out infinite alternate;
}

/* elipse esquerda */
.section-docs::before {
  content: "";
  position: absolute;
  bottom: -120px;
  left: -120px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.12), transparent 70%);
  border-radius: 50%;
  animation: floatBlobReverse 22s ease-in-out infinite alternate;
}

/* conteúdo acima */
.section-docs .container {
  position: relative;
  z-index: 2;
}

/* =========================
   GRID
========================= */
.docs-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

/* =========================
   CARD
========================= */
.doc-item-card {
  background: linear-gradient(135deg, #1e3a8a, #2563eb);
  border-radius: 18px;
  padding: 20px;

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

  text-decoration: none;
  color: white;

  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 15px 35px rgba(37, 99, 235, 0.25);

  transition: all 0.3s ease;
}

.doc-item-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 25px 50px rgba(37, 99, 235, 0.4);
}

/* =========================
   CONTEÚDO
========================= */
.doc-main-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* =========================
   ÍCONE (MELHORADO)
========================= */
.doc-icon-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 12px;

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

  font-size: 1.4rem;
  background: rgba(255,255,255,0.15);
  color: white;

  transition: 0.3s;
}


/* hover do ícone */
.doc-item-card:hover .doc-icon-wrapper {
  transform: scale(1.1);
  background: rgba(255,255,255,0.25);
}

/* =========================
   TEXTO (CORRIGIDO)
========================= */
.doc-name {
  font-weight: 700;
  font-size: 1rem;
  color: #ffffff;
}

.doc-meta {
  display: block;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.75);
  margin-top: 2px;
}





/* =========================
   DOWNLOAD
========================= */
.download-indicator {
  font-size: 1.4rem;
  color: rgba(255,255,255,0.6);
  transition: 0.3s;
}

.doc-item-card:hover .download-indicator {
  color: white;
  transform: translateY(-3px);
}

/* =========================
   PARTÍCULAS
========================= */
.particles-tech {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.particles-tech span {
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgba(37, 99, 235, 0.3);
  border-radius: 50%;
  animation: floatParticlesFast linear infinite;
}

.particles-tech span:nth-child(1) { left: 10%; animation-duration: 6s; }
.particles-tech span:nth-child(2) { left: 20%; animation-duration: 8s; }
.particles-tech span:nth-child(3) { left: 30%; animation-duration: 7s; }
.particles-tech span:nth-child(4) { left: 45%; animation-duration: 9s; }
.particles-tech span:nth-child(5) { left: 60%; animation-duration: 6.5s; }
.particles-tech span:nth-child(6) { left: 70%; animation-duration: 8.5s; }
.particles-tech span:nth-child(7) { left: 80%; animation-duration: 7.5s; }
.particles-tech span:nth-child(8) { left: 90%; animation-duration: 9s; }

/* animação partículas */
@keyframes floatParticlesFast {
  0% { top: 100%; opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { top: -10%; opacity: 0; }
}

/* animações blobs */
@keyframes floatBlob {
  0% { transform: translate(0, 0); }
  50% { transform: translate(40px, -30px); }
  100% { transform: translate(-20px, 20px); }
}

@keyframes floatBlobReverse {
  0% { transform: translate(0, 0); }
  50% { transform: translate(-30px, 30px); }
  100% { transform: translate(20px, -10px); }
}
.docs-legend {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;

  font-size: 0.9rem;
  color: #334155;
  margin-bottom: 30px;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;

  background: rgba(255,255,255,0.6);
  padding: 6px 12px;
  border-radius: 20px;
  backdrop-filter: blur(6px);
}

/* bolinha */
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

/* cores */
.dot.fase-todos {
  background: #3b22c5;
}

.dot.fase-pre {
  background: #22c55e;
}

.dot.fase-final {
  background: #fbbf24;
}

/* ITEM */
.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* BOLINHA */
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}



/* PRÉ */
.fase-pre {
  background: rgba(23, 202, 88, 0.8);
  color: #24d863;
}

/* FINAL */
.fase-final {
  background: rgba(251, 191, 36, 1);
  color: #d3b642;
}
/* base */
.doc-item-card {
  position: relative;
  overflow: hidden;
}

/* linha lateral */
.doc-item-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 5px;
}

/* PRE */
.doc-item-card.fase-pre::before {
  background: #22c55e;
}
.doc-item-card.fase-pre {
  border-left: 5px solid #22c55e;
}

/* FINAL */
.doc-item-card.fase-final::before {
  background: #ffb700;
}


.doc-item-card.fase-final {
  border-left: 5px solid #ffb702;
}
.doc-item-card.fase-pre:hover {
  box-shadow: 0 20px 50px rgba(34, 197, 94, 0.25);
}

.doc-item-card.fase-final:hover {
  box-shadow: 0 20px 50px rgba(251, 191, 36, 0.25);
}
.badge-phase {
  font-size: 0.65rem;
  padding: 4px 10px;
  border-radius: 999px;
  margin-left: 8px;
  font-weight: 700;

  border: 2px solid transparent;
}

/* PRÉ-AVALIAÇÃO (verde) */
.fase-pre .badge-phase {
  background: #22c55e;         /* cor forte */
  color: #022c22;              /* texto escuro (melhor leitura) */
  border-color: rgba(34, 197, 94, 0.35); /* borda clara */
}

/* FASE FINAL (amarelo) */
.fase-final .badge-phase {
  background: #ffe8af;         /* cor forte */
  color: #78350f;              /* texto escuro */
  border-color: #ffe8af; /* borda clara */
}

/* =========================
   FIM DOCUMENTOS
========================= */
/* =========================
   INICIO CONTATO (CORRIGIDO)
========================= */


:root {
                    --cor-fundo-1: #4682b4;
                    /* Azul Aço */
                    --cor-fundo-2: #708090;
                    /* Cinza Ardósia */
                    --glass-claro: rgba(255, 255, 255, 0.1);
                }

                #apoie {
                    padding: 100px 0;
                    background: linear-gradient(135deg, var(--cor-fundo-1) 0%, var(--cor-fundo-2) 100%);
                    position: relative;
                    font-family: 'Plus Jakarta Sans', sans-serif;
                    color: #fff;
                    overflow: hidden;
                }

                /* Padrão de fundo tecnológico sutil */
                #apoie::before {
                    content: "";
                    position: absolute;
                    inset: 0;
                    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
                    background-size: 30px 30px;
                    opacity: 0.5;
                }

                .seção-titulo {
                    text-align: center;
                    margin-bottom: 50px;
                    position: relative;
                    z-index: 2;
                }

                .seção-titulo h1 {
                    font-weight: 800;
                    font-size: 2.5rem;
                    margin-bottom: 15px;
                    letter-spacing: -1px;
                }

                .seção-titulo h2 {
                    font-weight: 400;
                    font-size: 1.2rem;
                    color: rgba(255, 255, 255, 0.9);
                    max-width: 700px;
                    margin: 0 auto;
                    line-height: 1.6;
                }

                /* Card Central de Apoio */
                .apoie_apresenta_box {
                    position: relative;
                    z-index: 2;
                    background: linear-gradient(135deg, #0ea5e9, #2563eb);
                    backdrop-filter: blur(15px);
                    -webkit-backdrop-filter: blur(15px);
                    border: 1px solid rgba(255, 255, 255, 0.2);
                    border-radius: 40px;
                    padding: 60px 40px;
                    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
                    text-align: center;
                    max-width: 900px;
                    margin: 0 auto;
                }

                .apoie_box h3 {
                    font-size: 1.15rem;
                    line-height: 1.7;
                    margin-bottom: 25px;
                    font-weight: 500;
                    color: rgba(255, 255, 255, 0.95);
                }

                /* Botão do Edital */
                .apoie_bt {
                    margin: 40px 0;
                }

                .card-btn {
                    background: #fff;
                    color: var(--cor-fundo-1);
                    border: none;
                    padding: 18px 45px;
                    border-radius: 20px;
                    font-weight: 800;
                    font-size: 1.1rem;
                    text-transform: uppercase;
                    display: inline-flex;
                    align-items: center;
                    gap: 12px;
                    cursor: pointer;
                    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
                    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
                    text-decoration: none;
                }

                .card-btn:hover {
                    transform: translateY(-5px) scale(1.02);
                    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
                    background: #f8fafc;
                    color: #000;
                }

                .card-btn i {
                    font-size: 1.3rem;
                }

                /* Rodapé de Contato */
                .apoie_contato {
                    margin-top: 40px;
                    padding-top: 30px;
                    border-top: 1px solid rgba(255, 255, 255, 0.1);
                }

                .apoie_contato p {
                    font-size: 0.95rem;
                    color: rgba(255, 255, 255, 0.7);
                }

                .email-link {
                    color: #fff !important;
                    text-decoration: none;
                    font-weight: 700;
                    background: rgba(255, 255, 255, 0.1);
                    padding: 5px 15px;
                    border-radius: 50px;
                    transition: 0.3s;
                    border: 1px solid rgba(255, 255, 255, 0.2);
                }

                .email-link:hover {
                    background: #fff;
                    color: var(--cor-fundo-1) !important;
                }

                @media (max-width: 768px) {
                    .seção-titulo h1 {
                        font-size: 2rem;
                    }

                    .apoie_apresenta_box {
                        padding: 40px 20px;
                    }
                }

/* =========================
   FIM CONTATO (CORRIGIDO)
========================= */


  /* NOVO LAYOUT */
        .marquee {
            width: 100%;
            overflow: hidden;
            position: relative;
        }

        /* fade lateral (efeito aparecer/desaparecer suave) */
        .marquee::before,
        .marquee::after {
            content: "";
            position: absolute;
            top: 0;
            width: 120px;
            height: 100%;
            z-index: 2;
        }

        .marquee::before {
            left: 0;
            background: linear-gradient(to right, #fff, transparent);
        }

        .marquee::after {
            right: 0;
            background: linear-gradient(to left, #fff, transparent);
        }

        /* faixa */
        .marquee-content {
            display: flex;
            gap: 0;
            /* grudadas */
            width: max-content;
            animation: scroll 100s linear infinite;
            /* mais rápido */
        }

        /* imagens maiores */
        .marquee-content img {
            height: 220px;
            /* AQUI aumenta */
            width: auto;
            object-fit: cover;
            border-radius: 12px;
        }

        /* animação */
        @keyframes scroll {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }
        }

        /* responsivo */
        @media (max-width: 768px) {
            .marquee-content img {
                height: 140px;
            }
        }


        /* AREA DOCUMENTOS, DATAS e ETASPS */



        /* HEADER */
        .header-apple {
            background: rgba(15, 23, 42, 0.75);
            backdrop-filter: blur(12px);
            transition: 0.3s;
            padding: 10px 0;
        }

        /* LOGO */
        .logo img {
            height: 42px;
        }

        /* MENU */
        .nav-menu a {
            color: #e5e7eb;
            font-weight: 500;
            margin: 0 14px;
            text-decoration: none;
            position: relative;
            transition: 0.3s;
        }

        /* linha ativa estilo Apple */
        .nav-menu a::after {
            content: "";
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 0%;
            height: 2px;
            background: #dc3545;
            transition: 0.3s;
        }

        .nav-menu a:hover::after {
            width: 100%;
        }

        /* hover suave */
        .nav-menu a:hover {
            color: #fff;
        }

        /* CTA */
        .btn-menu {
            background: linear-gradient(135deg, #dc3545, #b91c1c);
            color: #fff !important;
            padding: 8px 18px;
            border-radius: 30px;
            font-weight: 600;
            transition: 0.3s;
        }

        .btn-menu:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(220, 53, 69, 0.4);
        }

        /* MOBILE MENU */
        .menu-mobile {
            background: #0f172a;
            color: #fff;
        }

        .menu-mobile a {
            display: block;
            padding: 12px 0;
            color: #e5e7eb;
            text-decoration: none;
            font-size: 1.1rem;
            transition: 0.3s;
        }

        .menu-mobile a:hover {
            color: #dc3545;

        }

        /* BOTÃO MOBILE */
        .menu-toggle {
            background: none;
            border: none;
            font-size: 26px;
            color: #fff;
        }

        /* SCROLL */
        .header-scrolled {
            background: #0f172a;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
         :root {
                --primary-gradient: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
                --accent-color: #ff4d4d;
                --bg-glass: rgba(255, 255, 255, 0.9);
                --text-main: #1e293b;
            }

            .modern-box {
                font-family: 'Plus Jakarta Sans', sans-serif;
                background: #f8fafc;
                padding: 40px;
                border-radius: 32px;
                box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.02);
            }

            .box-title {
                font-weight: 800;
                text-align: center;
                color: var(--text-main);
                font-size: 1.8rem;
                margin-bottom: 50px;
                letter-spacing: -1px;
            }

            /*####################################################
            INICIO NOTICIAS
            #####################################################*/
            /* ===== SEÇÃO ÚLTIMAS NOTÍCIAS ===== */
            #noticias-bragantec {
                background: #ecebeb;
                padding: 100px 0 80px;
                color: #111827;
                position: relative;
                overflow: hidden;
            }

            #noticias-bragantec::before {
                content: "";
                position: absolute;
                top: -40px;
                right: -100px;
                width: 300px;
                height: 300px;
                background: rgba(235, 77, 75, 0.12);
                border-radius: 50%;
                pointer-events: none;
            }

            #noticias-bragantec::after {
                content: "";
                position: absolute;
                bottom: -30px;
                left: -80px;
                width: 240px;
                height: 240px;
                background: rgba(249, 168, 212, 0.12);
                border-radius: 50%;
                pointer-events: none;
            }

            .section-header {
                text-align: center;
                max-width: 700px;
                margin: 0 auto 50px;
            }

            .section-header .label-badge {
                display: inline-flex;
                align-items: center;
                gap: 0.75rem;
                margin-bottom: 1.25rem;
                padding: 0.9rem 1.4rem;
                border-radius: 999px;
                background: rgba(220, 38, 38, 0.12);
                color: #991b1b;
                font-weight: 700;
                letter-spacing: 0.08em;
                text-transform: uppercase;
                font-size: 0.82rem;
                box-shadow: 0 16px 40px rgba(220, 38, 38, 0.05);
            }

            .section-header .label-badge::before {
                content: "";
                width: 0.75rem;
                height: 0.75rem;
                border-radius: 50%;
                background: #dc3545;
                box-shadow: 0 0 0 8px rgba(220, 38, 38, 0.13);
            }

            .section-header h2 {
                font-size: clamp(2.1rem, 4vw, 3.2rem);
                font-weight: 800;
                line-height: 1.05;
                margin-bottom: 1rem;
                color: #111827;
            }

            .section-header p {
                color: #4b5563;
                font-size: 1rem;
                line-height: 1.75;
                max-width: 640px;
                margin: 0 auto;
            }

            .news-grid {
                display: grid;
                grid-template-columns: repeat(3, minmax(0, 1fr));
                gap: 24px;
                max-width: 1160px;
                margin: 0 auto;
            }

            .news-card {
                background: #ffffff;
                border: 1px solid rgba(15, 23, 42, 0.08);
                border-radius: 28px;
                padding: 32px;
                min-height: 320px;
                display: flex;
                flex-direction: column;
                gap: 24px;
                box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
                transition: transform 0.35s ease, box-shadow 0.35s ease;
            }

            .news-card:hover {
                transform: translateY(-8px);
                box-shadow: 0 26px 60px rgba(15, 23, 42, 0.12);
            }

            .news-card-header {
                display: flex;
                justify-content: space-between;
                align-items: flex-start;
                gap: 14px;
            }

            .news-meta-top {
                display: flex;
                flex-direction: column;
                gap: 0.75rem;
            }

            .news-meta-row {
                display: flex;
                align-items: center;
                gap: 0.75rem;
            }

            .news-icon {
                width: 44px;
                height: 44px;
                display: inline-flex;
                align-items: center;
                justify-content: center;
                border-radius: 16px;
                color: #ffffff;
                font-size: 1.05rem;
                flex-shrink: 0;
            }

            .news-date-badge {
                display: inline-flex;
                align-items: center;
                justify-content: center;
                color: #0f172a;
                background: rgba(15, 23, 42, 0.08);
                border-radius: 999px;
                padding: 0.75rem 1rem;
                font-weight: 800;
                font-size: 0.95rem;
                letter-spacing: 0.05em;
            }

            .news-tag {
                display: inline-flex;
                align-items: center;
                padding: 0.45rem 1rem;
                border-radius: 999px;
                background: rgba(220, 38, 38, 0.12);
                color: #991b1b;
                font-size: 0.78rem;
                font-weight: 700;
                text-transform: uppercase;
                letter-spacing: 0.04em;
            }

            .news-icon.highlight {
                background: linear-gradient(135deg, #dc2626 0%, #f97316 100%);
            }

            .news-icon.file {
                background: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
            }

            .news-icon.alert {
                background: linear-gradient(135deg, #ef4444 0%, #fb7185 100%);
            }

            .news-card h3 {
                font-size: 1.4rem;
                font-weight: 800;
                color: #111827;
                margin: 0;
            }

            .news-card p {
                color: #4b5563;
                margin: 0;
                line-height: 1.75;
            }

            .news-card-footer {
                display: flex;
                justify-content: flex-end;
                align-items: center;
                flex-wrap: wrap;
                gap: 16px;
            }

            .news-button {
                display: inline-flex;
                align-items: center;
                justify-content: center;
                gap: 0.65rem;
                padding: 1rem 1.6rem;
                border-radius: 999px;
                background: linear-gradient(135deg, #dc2626 0%, #f97316 100%);
                color: #ffffff;
                font-weight: 800;
                font-size: 0.95rem;
                text-decoration: none;
                border: 1px solid transparent;
                box-shadow: 0 18px 30px rgba(220, 38, 38, 0.18);
                transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
            }

            .news-button:hover {
                transform: translateY(-2px);
                filter: brightness(1.05);
                box-shadow: 0 22px 32px rgba(220, 38, 38, 0.24);
            }

            .news-button i {
                font-size: 0.95rem;
            }

            @media (max-width: 992px) {
                .news-grid {
                    grid-template-columns: 1fr;
                }
            }
          

            /*#####################################################

            INICIO APOIE

            #####################################################*/

            /* FUNDO */
.section-apoie {
  background: radial-gradient(circle at top right, #fee2e2, transparent 40%),
              linear-gradient(180deg, #f8fafc, #fef2f2);
  position: relative;
  overflow: hidden;
}

/* CARD */
.card-apoie {
  background: white;
  padding: 30px;
  border-radius: 20px;

  border: 1px solid #e2e8f0;
  box-shadow: 0 15px 35px rgba(0,0,0,0.05);

  transition: all 0.3s ease;
}

.card-apoie:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px rgba(220, 38, 38, 0.15);
}

/* BOTÃO PRINCIPAL */
.btn-apoie {
  display: inline-block;
  background: linear-gradient(135deg, #dc2626, #ef4444);
  color: white;
  padding: 12px 18px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-apoie:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(220, 38, 38, 0.4);
}

/* BOTÃO SECUNDÁRIO */
.btn-outline-apoie {
  display: inline-block;
  border: 2px solid #dc2626;
  color: #dc2626;
  padding: 10px 18px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-outline-apoie:hover {
  background: #dc2626;
  color: white;
}

/* EMAIL */
.apoie-email a {
  color: #dc2626;
  font-weight: 600;
  text-decoration: none;
}

.apoie-email a:hover {
  text-decoration: underline;
}




/*#####################################################

EDICOES ANTERIORES

#####################################################*/

:root {
                    --tech-blue: #1e293b;
                    --glow-cyan: #22d3ee;
                    --glass-bg: rgba(255, 255, 255, 0.05);
                }

                #edi-ant {
                    background-color: var(--tech-blue);
                    padding: 80px 0;
                    font-family: 'Plus Jakarta Sans', sans-serif;
                }

                .section-title-wrapper h2 {
                    color: #fff;
                    font-size: 2.2rem;
                    font-weight: 800;
                    letter-spacing: -1px;
                }

                .section-title-wrapper p {
                    color: #94a3b8;
                    font-size: 1.1rem;
                }

                /* Container do Carrossel */
                .swiper-container-wrapper {
                    position: relative;
                    padding: 20px 50px;
                }

                .mySwiper {
                    padding: 40px 10px !important;
                }

                /* Card de Edição 200x200 */
                .edit-card {
                    width: 200px;
                    height: 200px;
                    position: relative;
                    border-radius: 24px;
                    overflow: hidden;
                    display: block;
                    background: #0f172a;
                    border: 2px solid rgba(255, 255, 255, 0.1);
                    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
                    margin: 0 auto;
                }

                .edit-card img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    opacity: 0.6;
                    transition: 0.5s;
                }

                /* Efeito de Hover */
                .edit-card:hover {
                    transform: translateY(-10px) scale(1.05);
                    border-color: var(--glow-cyan);
                    box-shadow: 0 15px 30px rgba(34, 211, 238, 0.2);
                }

                .edit-card:hover img {
                    opacity: 0.3;
                    filter: blur(2px);
                }

                /* Overlay de Informações */
                .edit-overlay {
                    position: absolute;
                    inset: 0;
                    display: flex;
                    flex-direction: column;
                    justify-content: center;
                    align-items: center;
                    padding: 15px;
                    text-align: center;
                    z-index: 2;
                }

                .edit-badge {
                    background: var(--glow-cyan);
                    color: #000;
                    font-size: 0.75rem;
                    font-weight: 800;
                    padding: 2px 10px;
                    border-radius: 50px;
                    margin-bottom: 8px;
                }

                .edit-overlay h3 {
                    color: #fff;
                    font-size: 1rem;
                    font-weight: 700;
                    margin: 0;
                    line-height: 1.2;
                }

                .edit-overlay p {
                    color: var(--glow-cyan);
                    font-size: 0.7rem;
                    margin-top: 5px;
                    font-weight: 500;
                    opacity: 0.8;
                }

                /* Navegação Estilizada */
                .swiper-button-next,
                .swiper-button-prev {
                    color: var(--glow-cyan) !important;
                    background: rgba(255, 255, 255, 0.05);
                    width: 45px !important;
                    height: 45px !important;
                    border-radius: 50%;
                    border: 1px solid rgba(255, 255, 255, 0.1);
                    backdrop-filter: blur(5px);
                }

                .swiper-button-next:after,
                .swiper-button-prev:after {
                    font-size: 1.2rem !important;
                    font-weight: bold;
                }

                .swiper-pagination-bullet {
                    background: #fff !important;
                    opacity: 0.2;
                }

                .swiper-pagination-bullet-active {
                    background: var(--glow-cyan) !important;
                    opacity: 1;
                    width: 25px;
                    border-radius: 10px;
                }

/* ####################################################

INICIO CONTATO

##################################################### */

.contato_agd {
  position: relative;
  background: linear-gradient(180deg, #dee6ee, rgb(215, 230, 252));
  overflow: hidden;
}

/* ELIPSE DIREITA */
.contato_agd::after {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;

  width: 320px;
  height: 320px;

  background: radial-gradient(circle at 30% 30%, rgba(59, 130, 246, 0.12), transparent 75%);
  border-radius: 50%;

  animation: floatBlob 20s ease-in-out infinite alternate;
}

/* ELIPSE ESQUERDA */
.contato_agd::before {
  content: "";
  position: absolute;
  bottom: -120px;
  left: -120px;

  width: 260px;
  height: 260px;

  background: radial-gradient(circle, rgba(113, 133, 248, 0.12), transparent 70%);
  border-radius: 50%;

  animation: floatBlobReverse 22s ease-in-out infinite alternate;
}

/* GARANTIR CONTEÚDO NA FRENTE */
.contato_agd .container {
  position: relative;
  z-index: 2;
}
/* CARD PRINCIPAL (form + info) */
.contato_agd .bg-white {
  border-radius: 20px;

  border: 1px solid rgba(0,0,0,0.05);

  box-shadow: 
    0 10px 30px rgba(0,0,0,0.06),
    0 25px 60px rgba(0,0,0,0.08);

  transition: all 0.3s ease;
}

.contato_agd .bg-white:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 20px 50px rgba(0,0,0,0.12),
    0 40px 80px rgba(0,0,0,0.15);
}
.contato_agd .bg-white {
  position: relative;
  overflow: hidden;
}

.contato_agd .bg-white::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;

  background: linear-gradient(90deg, #2926dc, #7371f8);
}

 .edi-ant {
                    background: #0f172a;
                    color: #fff;
                }

                /* card */
                .edit-card {
                    position: relative;
                    display: block;
                    border-radius: 18px;
                    overflow: hidden;
                    transition: 0.4s;
                }

                /* imagem */
                .edit-card img {
                    width: 100%;
                    height: 260px;
                    object-fit: cover;
                    transition: 0.5s;
                }

                /* overlay */
                .edit-overlay {
                    position: absolute;
                    bottom: 0;
                    left: 0;
                    width: 100%;
                    padding: 20px;
                    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
                }

                /* badge ano */
                .edit-badge {
                    background: #dc3545;
                    padding: 4px 10px;
                    font-size: 12px;
                    border-radius: 20px;
                    font-weight: bold;
                    display: inline-block;
                    margin-bottom: 8px;
                }

                /* título */
                .edit-overlay h3 {
                    font-size: 1.1rem;
                    margin: 0;
                }

                /* descrição */
                .edit-overlay p {
                    font-size: 0.85rem;
                    opacity: 0.8;
                }

                /* hover */
                .edit-card:hover img {
                    transform: scale(1.1);
                }

                .edit-card:hover {
                    transform: translateY(-8px);
                }