@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap");

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Nunito Sans", sans-serif;
}

body {
}

.btn1 {
  font-weight: 700;
  font-size: 18px;
  line-height: 100%;
  color: #00074bee;
  padding: 10px 20px;
  margin-top: 20px;
  background-color: #fff;
  text-transform: uppercase;
  border-radius: 40px;
  margin-top: 48px;
}

.navbar {
  width: 100%;
  height: 100px;
  background: linear-gradient(to right, #000e2900, #000e29);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  display: flex;
  justify-content: space-between !important;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

.logo img {
  z-index: 1060;
  position: relative;
}

.nav-link,
.link-icone {
  color: white !important;
}

.nav-link:hover,
.link-icone:hover {
  text-decoration: underline;
}

/* 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: #fff; /* 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 {
  align-self: flex-start;
  width: 42px;
}

/* 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;
}

/* 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;
}

.section01 {
  background: url("../assets/BANNER.jpeg") center/cover no-repeat;
  height: 789px;
  width: 100%;
}

.section01::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00243f80;
  border-radius: 10px;
}

.section01 .container-text {
  /* padding-top: 150px; */
  position: absolute;
  bottom: 30%;
}

.section01 .container-text h2 {
  font-weight: 700;
  font-size: 65px;
  color: #ffffff;
}

.section01 .container-text p {
  color: #ffffff;
  font-weight: 400;
  font-size: 22px;
}

.scroll-container {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  position: absolute;
  margin-top: -55px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 10;
}

.scroll-container::-webkit-scrollbar {
  display: none; /* Oculta a barra de rolagem no Chrome e Safari */
}

.scroll-container .card {
  border: none;
  box-shadow: 6px 6px 14px rgba(0, 0, 0, 0.09);
  display: flex;
  justify-content: center;
  width: 195px;
  height: 104px;
}

.scroll-container .card img {
  width: 40px;
}

.scroll-container .card {
  transition: background-color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
}

.scroll-container .card:hover {
  background: linear-gradient(to right, #02b1ff, #0f43ab);
}

.scroll-container .card:hover .card-text {
  color: #ffffff;
}

.scroll-container .card img {
  transition: filter 0.3s ease;
}

.scroll-container .card:hover img {
  filter: brightness(0) invert(1);
}

/* conteudos*/
.carousel-inner {
  padding: 10px;
  width: 1104px;
  width: 90%;
  margin: auto;
}

.carousel-inner .card {
  border: 1px solid #ebebeb;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1);
  width: 346px;
  height: 360px;
}

.carousel-inner .btn1 {
  color: #0e6db1;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  text-decoration: underline;
  font-style: solid;
}

.carousel-inner img {
  margin-top: 20px ;
  width: 90%;
  /* width: 306px; */
  margin: 0 auto;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(34%) sepia(0%) saturate(0%) hue-rotate(0deg);
}

.carousel-indicators {
  position: absolute;
  bottom: -40px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 2px;
}

.carousel-indicators [data-bs-target] {
  width: 10px !important;
  height: 10px !important;
  border-radius: 50% !important;
  background-color: #fff !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;
}

.badge-label {
  position: absolute;
  top: 30px;
  left: 30px;

  border-radius: 32px;

  text-transform: uppercase;
  font-weight: 300;
  font-size: 12px;
  line-height: 10px;
  letter-spacing: 17%;
  text-align: center;
  border-radius: 20px;
  color: #fff;

  padding: 8px 32px;
}

/* Cores específicas para cada categoria */
.categoria-geracao {
  background-color: #02b1ff;
}

.categoria-consumo {
  background-color: #ffb510;
}

.categoria-distribuicao {
  background-color: #dc3545;
}

.podcast-section {
  position: relative;
  width: 100%;
  max-width: 1162px;
  height: 482px;
  background: url("../assets/about/people.png") no-repeat center center/cover;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 75px;
}

.podcast-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00123b6e;
  border-radius: 10px;
}

/* Criar um efeito de sobreposição escura */
.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* Deixa o texto mais visível */
  display: flex;
  align-items: center;
}

/* Ajuste do conteúdo */
.podcast-content {
  text-align: left;
  color: white;
  max-width: 600px;
  padding-left: 58px;
  z-index: 2;
}

.podcast-content h2 {
  font-weight: 700;
  font-size: 50px;
  line-height: 100%;
}

.podcast-content p {
  color: #ffffff;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
}

.podcast-content .btn-custom {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
}

.aconpnaha-section {
  margin-top: 49px;
  background: linear-gradient(to top, #0002100d, #20202000);
  padding-bottom: 50px;
}

.contact-section {
  display: flex;
  align-items: center;
  justify-content: center;
  /* height: 100vh; */
  color: white;
  padding: 20px;
  background: url("../assets/contact.png") center/cover no-repeat;
  border-radius: 0 !important;
  padding: 73px;
}

.contact-content {
  display: flex;
}

.contact-section hr {
  color: #02b1ff;
}

.contact-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00243fd1;
}

.contact-box {
  background: linear-gradient(to right, #0074bf, #002b8e);
  padding: 30px;
  padding-left: 85px;
  padding-right: 85px;
  /* padding: 38px 33px; */
  border-radius: 14px;
  /* max-width: 400px; */
  height: 624px;
  margin: auto;
  position: relative;
  z-index: 1;
}

.contact-section p,
strong,
h2,
hr {
  position: relative;
  z-index: 1;
}

.custom-radio {
  appearance: none;
  width: 20px;
  height: 20px;
  border: 1px solid #fff !important;
  border-radius: 50%;
  display: inline-block;
  position: relative;

  background-color: transparent !important;
}

.custom-radio:checked {
  background-color: transparent;
  border: 1px solid #fff;
}

.custom-radio:checked::before {
  content: "";
  width: 10px;
  height: 10px;
  background-color: #003366;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.contact-box p {
  color: #ffffff;
  font-weight: 700;
  font-size: 20px;
  line-height: 18px;
}

.contact-box label {
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: #ffffff;
  margin-left: 12px;
}

.contact-box input.form-control,
.contact-box textarea {
  /* padding: 5px 20px; */
  padding: 10px;
  margin-bottom: 21px;
}
.contact-box input,
.contact-box textarea {
  background: #fff;
  border: none;
  color: #5e5e5e;
  font-weight: 400;
  font-size: 14px;

  border-radius: 0;

  outline: none;
  box-shadow: none;
}

.contact-box h2 {
  color: #ffffff;
  font-weight: 700;
  font-size: 50px;
}
.contact-section p,
strong {
  width: 304px;
  color: #ffffff;
}

.contact-section strong {
  font-weight: 700;
  font-size: 21px;
}
.contact-section p {
  font-weight: 300;
  font-size: 21px;

  line-height: 28px;
}
.contact-box input::placeholder,
.contact-box textarea::placeholder {
  color: #5e5e5e;
  margin-bottom: 21px;
}

.contact-box .btn-custom1 {
  width: 245px;
  background: #02b2ff;
  border: none;
  padding: 10px 20px;
  border-radius: 40px;
  gap: 10px;
  /* width: 100%; */
  color: #fff;
  margin-top: 37px;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}
.customer-section {
  margin-bottom: 21px;
}
.customer-options {
  display: flex;
  align-items: center;
  gap: 10px;
}

.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;
}

.footer-accordion {
  width: 100%;
}

footer .accordion-item {
  background: transparent !important;
  border: none;
  border-bottom: 1px solid #203460 !important;
  width: 100%;
  border-radius: 0px !important;

  margin-top: 15px;
  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%;
}

.social-icons a {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1); /* Fundo mais transparente */
  color: white; /* Cor dos ícones */
  text-decoration: none;
  font-size: 1.8rem; /* Aumenta o tamanho do ícone */
  transition: all 0.3s ease-in-out;
  background-color: #fff;
}

.social-icons a img {
  transition: transform 0.3s ease;
}

.social-icons a:hover {
  transform: scale(1.1);
}

footer h5,
footer .accordion-button {
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
}

footer .accordion-button:focus {
  box-shadow: none !important;
}

footer ul.list-unstyled li {
  padding-bottom: 16px !important;
}

footer ul.list-unstyled li a {
  color: #ffffff !important;
  font-weight: 400 !important;
  font-size: 16px !important;
  line-height: 100%;
}

.rodape-inferior {
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: #ffffff !important;
}

.bi-search {
  height: 28px;
  width: 28px;
}

.nav-item {
  position: relative;
  padding: 0 20px;
}

.right {
  margin-right: 9rem;
}

.mleft {
  margin-left: 155px;
}

.mr {
  margin-right: 250px;
}

/* .nav-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 20px;
  background-color: rgba(255, 255, 255, 0.377);
} */

.logo img {
  z-index: 1060;
  position: relative;
}

.btn-custom-1 {
  padding: 10px 20px;
  background: none;
  border-radius: 40px;
  border: 1px solid #ffffff;
  transition: all 0.3s ease;
  color: #fff;
  text-decoration: none;
}

.btn-custom-1:hover {
  border-color: #02b1ff;
  color: #02b1ff;
}

.container-banner {
  position: relative;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.container-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #00243f80;
  z-index: 1;
}

.container-banner .background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -1;
}

.container-banner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 60px;
}

.container-banner .content {
  margin-left: -130px;
}

.container-banner .content {
  position: relative;
  color: #ffffff;
  text-align: center;
  padding: 20px;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
  z-index: 2;
}

.font-1 {
  font-size: 65px;
  line-height: 100%;
  letter-spacing: 0%;
}

.font-2 {
  font-size: 22px;
  line-height: 100%;
  letter-spacing: 0%;
}

.btn-custom-2 {
  width: 245px;
  padding: 10px 20px 10px 20px;
  background: none;
  border-radius: 40px;
  border: 1px solid #ffff;
  color: #fff;
  text-transform: uppercase;
  transition: all 0.1s ease;
}

.btn-custom-2:hover {
  background: #a59a9ac2;
  border-color: #ffffff;
}

.my-custom-line {
  width: 100%;
  max-width: 230px;
  border: 1px solid #ffb510;
}

.container-cards {
  position: relative;
  top: -80px;
  right: -50px;
  z-index: 10;
}

.container-cards .my-card {
  background-color: #fff;
}

.container-cards .card-body {
  padding: 0.5rem;
  text-align: center;
}

.container-cards .card img {
  max-height: 60px;
  width: auto;
}

.card-title {
  font-weight: 700;
  font-size: 15px;
  line-height: 25px;
  letter-spacing: 0%;
  text-transform: uppercase;
  color: #054172;
}

.card-img-top1 {
  width: 45px;
  height: 40px;
  top: 5px;
  left: 70px;
}

.info-text {
  font-size: 50px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: #0074be;
  margin-bottom: 45px;
  margin-top: 90px;
}

.conhecer-container article {
  width: 1062px;
  margin: auto;
}

.info-text2 {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  /* text-align: center; */
  color: #202020;
  margin-bottom: 45px;
}

.feature-card {
  width: 346px;
  height: 360px;
  border-radius: 8px;
  border: 1px solid #ebebeb;
  background-color: #ffffff;
  box-shadow: 0px 4px 15px #0000001a;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.rise-text {
  transform: translateY(-20px);
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card .feature-card-img {
  width: 306px;
  height: 148px;
  margin: 20px auto 0;
  display: block;
  border-radius: 6px;
  object-fit: cover;
}

.card-info1 {
  font-size: 20px;
  line-height: 25px;
  color: #054172;
  font-weight: bold;
}

.card-info2 {
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  letter-spacing: 0%;
  color: #202020;
}

.card-see-more {
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #0e6db1;
  text-transform: uppercase;
  text-decoration: none;
  font-style: solid;
  margin-left: 0%;
}

.about-text {
  position: relative;
  top: -140px;
  right: -25px;
  font-weight: 300;
  font-size: 14px;
  text-align: center;
  text-transform: uppercase;
}

.custom-btn3 {
  width: 246px !important;
  height: 45px !important;
  padding: 10px 20px;
  background: none;
  border-radius: 40px;
  border: 1px solid #00074bee;
  transition: all 0.3s ease;
  color: #00074bee;
  text-decoration: none;

  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  text-transform: uppercase;
}

@media screen and (max-width: 567px) {
  .section01 .container-text {
    /* padding-top: 150px; */
    position: absolute;
    bottom: 30%;
  }

  .my-custom-line {
    width: 150px;
  }

  .section01 .container-text h2 {
    font-weight: 700;
    font-size: 18px;
  }

  .section01 .container-text p {
    font-size: 14px;
    width: 288px;
  }

  .scroll-container .card {
    width: 119px;
    height: 78px;
  }

  .scroll-container .card img {
    width: 40px;
    height: 24px;
  }

  .scroll-container .card p {
    font-size: 12px;
    color: #203460;
  }

  .section01 {
    width: 100%;
    height: 415px;
  }

  .crousel .card {
    margin: 0 0.5em !important;

    width: calc(100% / 3) !important;
  }

  .carousel img {
    height: 22vw;
    margin: 0 auto !important;
    /* display: flex;
    align-items: center;
    justify-content: center; */
  }

  .carousel-inner {
    padding: 0 !important;
  }

  .carousel .card img {
    /* width: 224px; */
    /* width: 90%; */

  }

  .badge-label {
    position: absolute;
    top: 30px !important;
    left: 30px !important;

    border-radius: 32px;

    text-transform: uppercase;
    font-weight: 700 !important;
    font-size: 8px !important;
    line-height: 10px;
    letter-spacing: 17%;
    text-align: center;
    color: #fff;

    padding: 8px 10px !important;
  }

  .carousel .card {
    margin: 0 !important;
  }
}

@media screen and (max-width: 567px) {
  .podcast-section {
    position: relative;
    width: 100% !important;
    max-width: 100%;

    border-radius: 0 !important;
  }

  .overlay {
    align-items: start !important;

    padding-top: 40px;
  }

  .podcast-content {
    padding-left: 10px !important;
  }

  .podcast-section::before {
    border-radius: 0 !important;
  }

  .podcast-content h2 {
    font-size: 16px !important;
    width: 100%;
    margin-bottom: 16px !important;
    margin-top: 40px !important;
    font-weight: 700 !important;
  }

  .podcast-content p {
    font-size: 14px !important;
    line-height: 20px !important;
  }

  .carousel .card:not(:first-child) {
    display: none;
  }

  .conhecer-container .info-text {
    font-size: 16px !important;
    line-height: 24px !important;

    margin-top: 40px !important;
    margin-bottom: 16px !important;
  }

  .aconpnaha-section .info-text {
    font-size: 16px !important;
    line-height: 24px !important;
    margin-top: 0px !important;
    margin-bottom: 16px !important;
  }

  .info-text2 {
    font-size: 14px !important;

    line-height: 20px !important;
    font-weight: 400 !important;

    color: #202020;

    width: 100%;

    text-align: center;
  }

  .conhecer-container article {
    width: 100%;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
  }

  .btn1 {
    font-weight: 700;
    font-size: 18px;
    line-height: 100%;
    color: #00074bee;
    padding: 10px 20px;
    margin-top: 20px;
    background-color: #fff;
    border: 1px solid #00074bee;
    text-transform: uppercase;
    border-radius: 40px;
    margin-top: 48px;
  }
}

@media (max-width: 1112px) {
  .carousel .card:nth-child(2) {
    display: none;
  }

  .contact-content {
    flex-direction: column;
  }

  .contact-box .btn-custom1 {
    width: 80% !important;
  }

  .contact-box {
    width: 100%;
    padding: 20px;
    height: auto; /* Ajuste automático de altura */
  }

  .contact-box h2 {
    font-size: 28px;
  }

  .contact-box p {
    font-size: 16px; /* Reduz o tamanho do texto */
    text-align: center;
    width: 100% !important;
  }

  .contact-box .btn-custom1 {
    width: 100%; /* Faz o botão ocupar toda a largura */
    font-size: 16px;
    padding: 10px;
  }
}

.carousel-indicators button {
  background-color: #007bff !important;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

@media (max-width: 530px) {
  .carousel .card {
    width: 450px !important;
  }

  .carousel .card img {
    height: 220px !important;
  }

  .carousel-control-next,
  .carousel-control-prev {
    top: 50% !important;
    bottom: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 10% !important;
    padding: 0;
    text-align: center;
    background: 0 0;
    border: 0;
    opacity: 0.5;
    transition: opacity 0.15sease;

    background-color: #fff !important;
    border-radius: 50% !important;
    margin: 15px;
    border: 1px solid #d1d1d1 !important;
    width: 40px !important;
    height: 40px !important;
  }

  .newsletter h2 {
    padding: 0px;
  }

  .newsletter-btn1 {
    width: 178px;
    height: 36px;
    padding: 10px 20px;
    font-size: 12px;
    font-weight: 700;
    line-height: 100%;
    text-transform: uppercase;
  }

  footer .social-icons a {
  }
}

@media (max-width: 1199px) {
  .btn-custom-1 {
    padding: 8px 10px;
    background: none;
    border-radius: 40px !important;
    border: 1px solid #ffffff;
    transition: all 0.3s ease;
    font-size: 8px;
    border-radius: 0px;
  }

  .podcast-section {
    position: relative;
    width: 90%;
    max-width: 1000px;
    height: 482px;
    background: url("../assets/about/people.png") no-repeat center center/cover;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 75px;
  }

  .podcast-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00123b6e;
    border-radius: 10px;
  }
}

@media (max-width: 953px) {
  .form .col-md-4 {
    width: 100%;
    /* margin-bottom: 10px; */
  }
}

@media (max-width: 953px) {
  .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: 768px) {
  .rodape-inferior {
    font-weight: 600;
    font-size: 10px;
    line-height: 0px;
  }
}

@media (max-width: 991px) {
  header {
    background: linear-gradient(to right, #0074be, #000e29) !important;

    flex-direction: row-reverse !important;
  }

  .navbar-toggler[aria-expanded="true"] ~ .search {
    display: none;
    position: absolute;
  }

  .logo img {
    z-index: 999;
  }

  .menu-open #navbarNav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #00074bee;

    padding-top: 100px;
  }
}

.custom-blog {
  width: 30% !important ;
}

.custom-podcast {
  width: 19% !important;
  margin-top: 3px;
}

.custom-webinars {
  width: 29% !important;
}

.custom-material {
  width: 27% !important;
}

.custom-cases {
  width: 27% !important;
}

.text-cards-conteudos {
  font-size: 110%;
  margin-top: 10px;
  font-weight: 700
}

.custom-podcast-title {
  margin-top: 17px;
}

.custom-sombras-cards {
  overflow-x: visible;
}
