/* @import "tailwindcss"; */

/*! tailwindcss v4.0.15 | MIT License | https://tailwindcss.com */
@layer theme, base, components, utilities;

@layer theme {

  :root,
  :host {
    --font-sans: 'Nunito Sans Sans', ui-sans-serif, system-ui, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol',
      'Noto Color Emoji';
    --font-mono: 'Nunito Sans Sans', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New',
      monospace;
    --color-black: #000;
    --color-white: #fff;
    --spacing: 0.25rem;
    --default-font-family: var(--font-sans);
    --default-mono-font-family: var(--font-mono);
    --color-yellow: #FFB510;
    --color-blue: #02B1FF;
    --color-red: #C83434;
    --color-titles: #054172;
    --color-blue-way2: #0074BE;
    --color-way2: #005D98!important;
    --drop-shadow-md: 0 4px 10px rgba(0, 0, 0, 0.10);
  }
}

/* Garante que nada vaze */
* {
  box-sizing: border-box !important;
}

/* Remove margens padrão */
html, body {
  margin: 0 !important;
  padding: 0 !important;
  overflow-x: hidden !important; /* impede scroll horizontal */
  width: 100% !important;
}

/* img, video, iframe {
  max-width: 100% !important;
  height: auto !important;
  display: block !important;
} */

body {
  background-color: #fff;
}

.navbar {
  width: 100%;
  height: 100px;
  background: linear-gradient(to right, #000e29d1, #000e29);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  display: flex;
  justify-content: space-between;
  /* padding: 20px 40px; */
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

.logo img {
  /* height: 40px; */
  z-index: 1060;
  position: relative;
}

.nav-link,
.link-icone {
  color: white !important;
}

.nav-link:hover,
.link-icone:hover {
  text-decoration: underline;
}

.btn-custom1 {
  border: 1px solid white;
  color: white;
  border-radius: 50px;
}

.btn-custom1:hover {
  background-color: white;
  color: #001f3f;
}

header .nav-item {
  position: relative;
  padding: 0 15px;
}

ul li .nav-link {
  font-size: 16px;
  font-weight: 700;
  line-height: 21.82px;
  color: #ffffff;
}

ul li a.nav-link::before {
  content: "|";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #ccc;
  font-weight: bold;
}

ul li a.nav-link::before {
  right: 0;
}

.section5 {
  background: url("./assets/HOME.png") center/cover no-repeat;
  height: 1080px;
  width: 100%;
  overflow: hidden;
}

.display-4 {
  padding-top: 150px;
  font-weight: 700;
  font-size: 50px;
  line-height: 88.66px;
  color: #ffffff;
  font-family: "Nunito Sans", sans-serif;
}

.my-paragraph {
  margin: 33px 0px 33px 0px;
  font-weight: 400;
  font-size: 19px;
  line-height: 1.5;
  letter-spacing: 0%;
  color: #ffffff;
  font-family: "Nunito Sans", sans-serif;
}

.btns {
  padding: 10px 20px 10px 20px;
  border-radius: 40px;
  transition: 0.3s ease;
}

.primary {
  text-transform: uppercase;
  border: none;
  font-family: "Nunito Sans", sans-serif;
  font-size: 18px;
  line-height: 24.55px;
  text-align: center;
  gap: 10px;
  background-color: #ffffff;
  color: #0074be;
  margin-right: 13px;
  /* border: none; */
}

.primary:hover {
  background-color: #f0f0f0;
}

.secondary {
  text-transform: uppercase;
  font-family: "Nunito Sans", sans-serif;
  font-size: 18px;
  line-height: 24.55px;
  text-align: center;
  gap: 10px;
  background-color: transparent;
  color: #ffffff;
  border: 2px solid white;
}

.secondary:hover {
  background: white;
  color: #0f43ab;
}

/* Estilo base para o ícone de hambúrguer personalizado */
.custom-toggler {
  border: none !important;
  outline: none !important;
  padding: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.custom-toggler-icon {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 24px;
  position: relative;
}

.custom-toggler-icon .line {
  background-color: white;
  /* Cor das linhas */
  height: 2px;
  transition: all 0.3s ease;
  height: 2px;
  border-radius: 2px;
}

/* Linha curta */
.custom-toggler-icon .line.short {
  width: 24px;
  align-self: flex-start;
  /* Alinha à esquerda */

  height: 2px;
}

/* Linha longa */
.custom-toggler-icon .line.long {
  width: 32px;
}

/* Efeito ao abrir o menu (transformar em "X") */
.custom-toggler[aria-expanded="true"] .custom-toggler-icon .line.short:first-child {
  transform: rotate(45deg) translate(5px, 5px);
  width: 100%;
}

.custom-toggler[aria-expanded="true"] .custom-toggler-icon .line.long {
  opacity: 0;
}

.custom-toggler[aria-expanded="true"] .custom-toggler-icon .line.short:last-child {
  transform: rotate(-45deg) translate(5px, -5px);
  width: 100%;
}

/* Estilo dos itens do menu quando expandido */
#navbarNav.collapse.show .navbar-nav {
  flex-direction: column;
  align-items: flex-start;
  /* Alinha os links à esquerda */
  gap: 20px;
  padding-left: 20px;
  /* Espaçamento à esquerda */
}

/* Setas para baixo (::before) no lado direito */
#navbarNav.collapse.show .nav-item {
  position: relative;
}

#navbarNav.collapse.show .nav-item a.nav-link::before {
  content: "⬇️";
  /* Seta para baixo */
  position: absolute;
  right: -20px;
  /* Posiciona a seta à direita do texto */
  font-size: 14px;
  color: white;
}

/* Ajustes de espaçamento e estilo dos links */
#navbarNav.collapse.show .nav-item a.nav-link {
  font-size: 24px;
  color: white !important;
}

.my-section-buttons {
  margin-top: -90px !important;
}

.my-text {
  color: #0074be;
  text-align: center;
  font-weight: 700;
  font-size: 50px;
  line-height: 68.2px;
}

/* .hero {
  width: 100%;
  background: url("./assets/Imagemcolada.png") no-repeat center center;
  background-size: cover;
  width: 1104px;
  margin: auto;
  border-radius: 10px;
  color: white;
  opacity: 1;
  position: relative;
  margin-top: 4px;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 10px;
} */

.hero h4,
.hero p,
.hero .accordion,
.hero .btn,
.btn1 {
  position: relative;
  z-index: 1;
}

.segment-buttons .btn1 {
  margin: 5px;
  padding: 5px 20px !important;
  font-weight: bold;
  font-size: 16px;
  border-radius: 25px;
}

.accordion-button {
  background-color: transparent;
  height: 47px;
  color: #fff;
  font-weight: bold;
  border: none;
}

.accordion-button:not(.collapsed) {
  background-color: transparent;
  color: white;
  border: none;
}

.accordion-item {
  position: relative;
  border-radius: 5px;
  /* overflow: hidden; */
  margin-top: 31px;
  /* height: 47px; */
  width: 686px;
  background-color: transparent;
  border: 1px solid #fff;

  background-color: rgba(255, 255, 255, 0.1);
}

.segment-buttons {
  gap: 10px;
  display: flex;
  /* margin: auto; */
}

.segment-buttons .btn1 {
  margin-bottom: 15px;
  padding-left: 17px;
  padding-right: 17px;
  gap: 10px;
  padding: 8px 17px 8px 17px;
  border-radius: 32px;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
  /* margin-top: 10px; */
}

.segment-buttons .btn1.active {
  margin-bottom: 0;
  border-radius: 0;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom: none;
  position: relative;

  font-weight: 700;
}

.segment-buttons button.botao-ativo {
  margin-bottom: 0;
}

.secao-ativa {
  margin-top: 0 !important;
}

.accordion-body {
  color: #fff;
}

/* .accordion-button::after {
  filter: invert(1);
} */

.my-btn-primary {
  padding: 12px 30px 12px 30px;
  background-color: #0e6db1;
  border-radius: 40px;
  color: #fff;

  font-family: "Nunito Sans", sans-serif;
  font-weight: 700;
  font-size: 14px;
}

.my-btn-warning {
  padding: 12px 30px 12px 30px;
  background-color: #ffb510;
  border-radius: 40px;
  color: #fff;

  font-family: "Nunito Sans", sans-serif;
  font-weight: 700;
  font-size: 14px;
}

.my-btn-danger {
  padding: 12px 30px 12px 30px;
  background-color: #c83434;
  border-radius: 40px;
  color: #fff;

  font-family: "Nunito Sans", sans-serif;
  font-weight: 700;
  font-size: 14px;
}

.my-btn-primary {
  background-color: #0e6db1;
}

.my-btn-danger:hover {
  background-color: #c83434;
}

.my-btn-warning:hover {
  background-color: #ffb510;
}

.my-b-bt {
  margin-bottom: 31px;

  font-weight: 700;
  font-size: 35px;
}

.carousel {
  overflow: visible !important;
  margin-bottom: 90px;
  margin-top: 90px;
}

/*sectio-hero*/
.hero-section {
  background: linear-gradient(to right, #0074bf, #002b8e);
  color: white;
  padding: 50px 0;
}

.hero-content {
  max-width: 500px;
}

.hero-content h2 {
  font-weight: 500;
  font-size: 50px;
  padding-bottom: 34px;
  color: #ffffff;
  font-family: "Nunito Sans", sans-serif;
}

.hero-content p {
  color: #ffffff;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
}

/* Botão estilizado */
.btn-custom {
  background-color: #fff;
  color: #0e6db1;
  border: 1px solid #0e6db1;
  border-radius: 40px;
  padding: 10px 32px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  font-family: "Nunito Sans", sans-serif;
}

/* Vídeo responsivo */
.video-container {
  position: relative;
  max-width: 100%;
}

.video-container img {
  width: 100%;
  border-radius: 10px;
}

.video-container .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid #ffffff;
  color: white;
  padding: 30px;
  border-radius: 50%;
  width: 110px;
}

.video-container .play-button img {
  /* height: 65px; */
  /* margin: auto; */
}

/* Carrossel de estatísticas */
.stats-carousel .carousel-control-prev,
.stats-carousel .carousel-control-next {
  width: 5%;
}

.stats-card {
  width: auto;
  height: 150px;
  color: #202020;
  border-radius: 8px;
  margin: 10px;
  border: none !important;
  display: flex;
  flex-direction: column;
  justify-content: space-around !important;
  box-shadow: 8px 8px 20px rgba(0, 0, 0, 0.1), 2px 2px 5px rgba(0, 0, 0, 0.05);
  padding: 20px;
}

.my-title2 {
  color: #0076c2;
  font-weight: 700;
  font-size: 24px;
  line-height: 24px;
  margin-bottom: 10px;
}

.stats-text {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0%;
  color: #202020;
  margin-bottom: 0 !important;
}

.my-button {
  background: linear-gradient(to right, #0074bf, #002b8e);
  color: white;
  border: none;
  padding: 12px 32px 12px 32px;
  border-radius: 30px;
  gap: 10px;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  text-align: center;
  font-family: "Nunito Sans", sans-serif;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.my-container-acess {
  width: 100%;
  padding-bottom: 20px;
  /* height: 652px; */
  background-color: #ebebeb;
}

/* .carousel-control-prev,
.carousel-control-next {
  width: 5%;
  top: 45%;
} */

.my-conteudo {
  width: auto;
  height: 106px;
  color: #202020;
  border-radius: 8px;
  margin: 10px;
  border: none !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 8px 8px 20px rgba(0, 0, 0, 0.1), 2px 2px 5px rgba(0, 0, 0, 0.05);
}

/* conteudos*/
.carousel-inner {
  padding: 10px;
  width: 1104px;
  /* width: 90%; */
  margin: auto;
}

.card {
  border: 1px solid #fff;
  border-radius: 8px;
  box-shadow: 8px 8px 20px rgba(0, 0, 0, 0.1), 2px 2px 5px rgba(0, 0, 0, 0.05);
}

.card {
  position: relative;
  border: 1px solid #fff;
  border-radius: 8px;
  box-shadow: 8px 8px 20px rgba(0, 0, 0, 0.1), 2px 2px 5px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.card-title {
  color: #ffffff;
  font-weight: 300;
  font-size: 20px;
}

.card .card-title strong {
  font-weight: 700;
}

.card .card-title p {
  font-weight: 400;
  font-size: 16px;
  font-family: "Nunito Sans";
}

.text-geracao {
  color: #00a0e9;
}

.text-consumo {
  color: #ffb510;
}

.text-distr {
  color: #c83434;
}

.text-primary1 {
  color: #0074be;
  font-weight: 700;
  font-size: 50px;
  font-family: "Nunito Sans", sans-serif;
  padding-top: 60px;
}

.card-body .text-primary2 {
  color: #0e6db1;
  font-weight: 700;
  font-size: 14px;
  text-decoration: underline;
}

.card-overlay {
  position: absolute;
  top: 90px;
  left: 15px;
  color: white;
  font-size: 1.2rem;
  font-weight: bold;
  padding: 5px 10px;
  border-radius: 5px;
}

.card img {
  width: 100%;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

/* .carousel-control-prev,
.carousel-control-next {
  width: 5%;
} */
/*/ conteudos*/

.test123 {
  width: 100%;
  padding: 10px 20px;
  background: url("./assets/Imagem_mapa.jpg") no-repeat center center;
  background-size: cover;
}

.hero-section1 {
  width: 100%;

  color: white;
  /* text-align: right; */
  /* text-align: center; */
  /* padding: 50px 190px; */
}

.hero-text-lg {
  font-weight: 400;
  font-size: 30px;
}

.hero-text-lg span {
  display: block;
  font-weight: 800;
}

.hero-title1 {
  font-size: 50px;
  font-weight: 700;
  color: #ffb510;
}

.btn-custom3 {
  border: 1px solid #ffb510;
  color: #ffb510;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-custom3:hover {
  background: #ffb510;
  color: white;
}

.newsletter {
  background: linear-gradient(to right, #0074bf, #002b8e);
  padding: 50px 0;
  color: white;
}

.newsletter h2 {
  color: #ffffff;
  font-weight: 700;
  font-size: 50px;
  font-family: "Nunito Sans", sans-serif;
  padding-bottom: 35px;
}

.newsletter p {
  color: #ffffff;
  font-weight: 400;
  font-size: 18px;
  font-family: "Nunito Sans", sans-serif;
  padding-bottom: 10px;
}

.newsletter input {
  border-radius: 5px;
  padding: 20px;
  border: none;
  width: 100%;
}

.newsletter-btn1 {
  width: 283px;
  height: 68px;
  background: #02b2ff;
  color: white;
  border: none;
  font-size: 18px;

  padding: 10px 40px 10px 40px;
  border-radius: 30px;
  text-transform: uppercase;
  font-family: "Nunito Sans", sans-serif;
}

/* Alinhamento vertical personalizado */
.custom-align {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  /* Alinha o conteúdo à esquerda */
}

@media (max-width: 992px) {
  /* .my-title {
    font-size: 2.5rem;
    padding-bottom: 4px !important;
  } */

  .stats-text {
    font-size: 1rem;
  }

  .stats-card {
    min-height: 200px;
  }

  .hero-section .container {
    padding: 0 !important;
  }
}

@media (max-width: 768px) {
  .carousel-inner .row {
    flex-wrap: nowrap;
  }

  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .carousel-control-prev,
  .carousel-control-next {
    display: none;
  }
}

@media (max-width: 576px) {
  .col-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  /* .my-title {
    font-size: 2rem;
  } */
}

/* Mantenha o resto do seu CSS original */
@media (max-width: 991px) {
  header {
    background: linear-gradient(to right, #0074be, #000e29) !important;

    width: 100% !important;
  }

  .navbar-toggler[aria-expanded="true"]~.sorch {
    display: none;
  }

  .logo img {
    width: 73px;
    height: 24px;
    z-index: 999;
  }

  .navbar-toggler[aria-expanded="true"]+.container .link-icone {
    opacity: 0;
    pointer-events: none;
  }

  .menu-open #navbarNav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 14, 41, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .my-container {
    padding: 0px !important;
  }

  .my-container .image {
    display: none;
  }
}

.w-700 {
  width: 10px;
  height: auto;
}

.image {
  width: 700px;
  height: auto;
}

.my-container,
.my-container-two {
  padding: 0px 100px;
}

/* Correções essenciais */
.accordion-button::after {
  /* filter: invert(1); */
  /* Garante visibilidade da seta em fundo preto */
}

/* Correções específicas para o footer */

/* Accordion mobile */
.footer-accordion {
  width: 100%;
}

footer .accordion-item {
  background: transparent !important;
  border: none !important;
  border-bottom: 1px solid #203460 !important;
  width: 100% !important;
  border-radius: 0px !important;

  margin-top: 15px !important;
  width: 100% !important;
}

footer .accordion-button {
  background: transparent !important;
  padding: 1rem !important;
  border-radius: none !important;
}

.accordion-body {
  padding: 0 1rem 1rem !important;
}

/* Garantir quebra de texto */
footer .accordion-body a {
  word-wrap: break-word;
  white-space: normal;
  display: block;
  width: 100%;
}

@media (max-width: 1113px) {
  .hero {
    width: 90%;
    padding: 20px;
  }

  .accordion-item {
    width: 100%;
  }
}

@media (max-width: 1199px) {
  .btn-custom1 {
    font-size: 10px;
    padding: 6px 8px;
  }

  .btn-custom {
    margin-bottom: 15px;
  }

  .hero-section .col-md-6 {
    width: 100% !important;
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }

  .hero-section .hero-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* .hero-section .hero-content h2 {
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    padding-bottom: 5px;
    text-align: center;
  } */

  /* .hero-section .hero-content p {
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    padding-bottom: 5px;
  } */

  .hero-section1 div {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-section1 .content {
    width: 288px;
  }

  /* .hero-section1 .hero-title1 {
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: #ffad3c;
  } */

  /* .hero-section1 .hero-text-lg {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
  } */
}

@media (max-width: 980px) {
  .hero {
    border-radius: none !important;
  }

  .hero::before {
    border-radius: none !important;
  }

  .section6 {
    border-radius: none !important;
  }

  /* .my-section-buttons h2.my-text,
  .text-primary1 {
    margin: auto;
    width: 288px;
    color: #0074be;
    font-size: 16px;
    line-height: 24px;

    padding-bottom: 2px !important;
  } */

  .accordion-item {
    width: auto;
  }

  .accordion-button {
    height: 60px;
  }

  .hero {
    width: 100%;
    padding: 20px;
    border-radius: none !important;
  }

  .carousel-control-prev,
  .carousel-control-next {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 40px !important;
    height: 40px !important;
    background-color: rgba(255,
        255,
        255,
        0.8) !important;
    /* Fundo branco semi-transparente */
    border-radius: 50% !important;
    /* Deixa as setas circulares */
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2) !important;
    /* Sombra para dar destaque */
    transition: background-color 0.3s ease, transform 0.2s ease !important;
  }

  .section5 {
    height: 800px;
  }

  /* .section5 .display-4 {
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
    width: 241px;
  } */

  .section5 .overlay {
    display: none;
  }

  .section5 .overlay img {
    width: 400px;
  }

  /* .section5 .my-paragraph {
    width: 234px;
    font-size: 12px;
    font-weight: 400;
    line-height: 100%;
  } */

  .newsletter .col-md-2 {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .newsletter h2 {
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
  }

  .newsletter input {
    border-radius: 0 !important;
    padding: 14px;
    border: none;
    width: 100%;
    margin-bottom: 16px;
  }
}

@media (max-width: 480px) {
  .section6 {
    border-radius: 0px;
  }

  .hero {
    border-radius: 0px;
  }

  .hero h4 {
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
  }

  .hero p {
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    color: #ffffff;
  }

  /* .my-title {
    font-size: 16px !important;
    line-height: 24px !important;
  } */
}

.testimonial-card {
  width: 100% !important;
  border: 1px solid #ebebeb;
  border-radius: 10px;
  padding: 25px;
  /* background: white; */
  /* margin: 10px; */
  box-shadow: 8px 8px 20px rgba(0, 0, 0, 0.1), 2px 2px 5px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  height: 330px !important;
}

.my-title {
  color: #0074be;
  font-weight: 700;
  font-size: 50px;
  line-height: 100%;
  letter-spacing: 0%;
  padding-top: 72px;
  padding-bottom: 72px;
}

.carousel article {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.carousel .my-button-card {
  border: none;
  padding: 10px 20px 10px 20px;
  background-color: #0074be;
  color: #fff;
  font-size: 12px;
  font-weight: 300;
  line-height: 10px;
  text-align: center;
  border-radius: 30px;
  letter-spacing: 17%;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-card p {
  font-size: 16px;
  font-weight: 400;
  font-style: italic;
  line-height: 20px;
  letter-spacing: 0%;
  color: #1e1e1e;
}

.testimonial-card img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  /* margin-top: 10px; */
}

.testimonial-card .people {
  margin-right: 10px;
}

.testimonial-card figure {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.testimonial-card figure figcaption {
  font-size: 18px;
  font-weight: 700;
  color: #1e1e1e;
}

.testimonial-card figcaption span {
  font-weight: 400;
  font-size: 15px;
  font-style: italic;
  color: #1e1e1e;
  line-height: 100%;
}

.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3%;
  z-index: 10;
}

/* .carousel-control-prev {
  left: -50px;
}
.carousel-control-next {
  right: 30px;
} */

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(34%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(90%) contrast(90%);
}

.carousel-indicators {
  position: absolute;
  bottom: -40px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.carousel-indicators [data-bs-target] {
  width: 12px !important;
  height: 12px !important;
  border-radius: 50% !important;

  border: 1px solid #203460 !important;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.carousel-indicators .active {
  background-color: #203460 !important;
  transform: scale(1.4) !important;
}

.carousel {
  /* overflow: hidden; */
  display: flex;
  justify-content: center;
}

.carousel-control-prev,
.carousel-control-next {
  display: flex !important;
  /* Garante que as setas apareçam */
  opacity: 1 !important;
  /* Remove a transparência */
  visibility: visible !important;
  /* Garante que não fiquem ocultas */
  z-index: 10;
  /* Garante que fiquem acima do conteúdo */
}

/* tredtsd */

.stats-row {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.stats-row>div {
  flex: 0 0 50%;
  scroll-snap-align: start;
}

@media (max-width: 576px) {
  .stats-row>div {
    width: 60%;
  }
}

.stats-prev,
.stats-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 50%;
}

.stats-prev {
  left: -50px;
}

.stats-next {
  right: -50px;
}

.stats-prev span,
.stats-next span {
  filter: invert(1);
}

input[type="radio"]:checked+div>div {
  opacity: 1 !important;
}

.custom-logo-way2 {
  margin-bottom: 34px !important;
    margin-top: -14px;
}

.custom-distancia-elementos {
  margin-top: 40px !important;
}

.custom-logo-way2-mobile {
  width: 115px;
  margin-bottom: 30px !important;
}

.fundocardsection1 {
  background-image: url('assets/fundocardhome.jpg') !important;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.segmento-geracao .accordion-button:hover {
  background-color: #0e6db1;
  color: #fff;
}

.segmento-consumo .accordion-button:hover {
  background-color: #ffb510;
  color: #fff;
}

.segmento-distribuicao .accordion-button:hover {
  background-color: #c83434;
  color: #fff;
}

.container .carousel-item .testimonial-card a {
  color: #1e1e1e;
  text-decoration: none;
  position: relative;
  font-weight: 500;
  transition: color 0.3s ease;
}

.container .carousel-item .testimonial-card a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background-color: #1e1e1e;
  transition: width 0.4s ease;
}

.container .carousel-item .testimonial-card a:hover::after {
  width: 100%;
}

.my-title2 {
  margin-bottom: 0 !important;
}

.span-geracao-card {
  padding: 6px 30px;
  background: #0074be;
  color: #fff;
  text-transform: uppercase;
  border-radius: 30px;
  font-size: 12px;
}
.span-consumo-card {
  padding: 6px 30px;
  background: #ffb510;
  color: #fff;
  text-transform: uppercase;
  border-radius: 30px;
  font-size: 12px;
}
.span-distribuicao-card {
  padding: 6px 30px;
  background: #c83434;
  color: #fff;
  text-transform: uppercase;
  border-radius: 30px;
  font-size: 12px;
}

@media (max-width: 576px) {

.mobileHome {
  display: flex;
  flex-direction: column !important;
}

.mobileHome a {
  width: 200px !important;
  margin-bottom: 20px;
}

.mobileImageHome {
  height: 750px !important;
}

.section5 .decorative-img-wrapper img {
}


.segment-buttons .btn1 {
  padding: 5px 10px !important;
}
}

.CorrectTitle {
  font-weight: 700;
  font-size: 45px;
  color: #ffffff;

}

@media (max-width: 568px) {
  .CorrectTitle {
    font-size: 35px;
    color: #fff;
    font-weight: 700;
  }
}
.CorrectTitle2 {
  font-weight: 700;
  font-size: 45px;
  color: #ffffff;

}

@media (max-width: 568px) {
  .CorrectTitle2 {
    font-size: 35px;
    color: #fff;
    font-weight: 700;
  }
}

span.badge.font-light\!.tracking-\[0\.3em\].py-2.px-2.rounded-pill {
    display: none;
}


section .container .display-4{
  font-weight: 700;
  font-size: 50px;
}

@media (max-width: 480px) {
  section .container .display-4 {
    font-size: 2.2em;
  }
}

.navbar {
  width: 100%;
  background: linear-gradient(to right, #000e29d1, #000e29);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  display: flex;
  justify-content: space-between;
  padding: 20px 40px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}


ul li .nav-link {
  font-size: 18px;

  font-weight: 700;

  line-height: 22px;

  color: #ffffff;
 
}