@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
  font-family: 'Poppins', sans-serif ;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


body {
  background-color: #f8f8ff;
  overflow-x: hidden;
  min-height: 100vh;
}

main {
  flex: 1;
  min-height: calc(100vh - 200px); /* Ajuste o valor conforme necessário */

}

.main-parceiros {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

/*Navbar*/

nav {
  font-weight: 400;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-toggle::after {
   content: none;
}

.dropdown-item:hover {
  background-color: #313131;
  color: #fff;
}

/*Carrosel de Slides*/
.carousel-inner img {
  max-height: 600px; /* Ajuste a altura conforme necessário */
  max-width: 100%;
  width: 100%;
  object-fit: cover;
}

/* Nossos Serviços */ 
.nossos-servicos {
  padding: 20px;
  text-align: center;
}

.nossos-servicos h1 {
  font-size: 2rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: 800;
  text-shadow: 0.1em 0.1em 0.25em #a0a0a0;
}

.cards-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.nossos-servicos .card {
  flex: 1 1 300px;
  max-width: 350px;
  background-color: #212529;
  color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  padding: 15px;
  text-align: left;
  transition: transform 0.7 ease;
}

.nossos-servicos .card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  cursor: default;
}

img {
  cursor: default;
}

.nossos-servicos .card img {
  width: 100%;
  border-radius: 10px 5px;
}

.card-body {
  padding: 10px 0;
}

.card-text {
  font-size: 1rem;
  line-height: 1.5;
}

.card-text span {
  font-weight: 600;
  color: #01CB93;
  text-shadow: 1px 1px 2px #2f2f2f;
}

/*Cards de Soluções de Treinamentos e Vantagens*/

.solucoes-vantagens .card-container-solucoes-vantagens .card .card-header {
  background-color: #212529;
  color: #fff;
  font-weight: 600;
  font-size: 1.2rem;
}

.card-container-solucoes-vantagens {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  padding: 20px;
}

.list-group.list-group-flush {
  max-width: 40rem;
  padding: 10px;
}

.list-group.list-group-flush li {
  font-size: 1rem;
  line-height: 1.5;
}

.list-group.list-group-flush .icon {
  width: 25px;
  height: 25px;
}

/* Slider Nossos Parceiros */

.main-parceiros {
  margin-bottom: 2rem;
}

.parceiros {
  width: 100%;
  height: 75px;
  overflow: hidden;
}

.main-parceiros h1, .slider-mobile h1 {
  width: 100%;
  text-align: center;
  margin-top: 10px;  
  text-transform: uppercase; 
  font-weight: 800;
  text-shadow: 0.1em 0.1em 0.25em #a0a0a0;  
  font-size: 2rem;
}

.carrossel-parceiros {
  width: 100%;
  display: flex;
  position: relative;
}

.item-parceiros {
  width: 100px;
  height: 50px;
  position: absolute;
  left: 100%;
  animation: autoRun 8s linear infinite;
  animation-delay: var(--delay);
  cursor: pointer;
}

.item-parceiros img {
  width: 100%;
}

#andina {
  width: 60px;
}

.parceiros:hover .item-parceiros {
  animation-play-state: paused;
  filter: grayscale(1);
}

.parceiros .item-parceiros:hover {
  filter: grayscale(0);
}

@keyframes autoRun {
  from {
    left: 100%;  
  }
  to {
    left: -50px;
  }
  
}


.slider-mobile {
  display: none; /* Oculto por padrão */
  margin-bottom: 2rem;
  padding: 1rem;
}

.slider-mobile-img {
  max-width: 150px; /* Define a largura máxima das imagens */
  height: auto; /* Mantém a proporção da imagem */
  margin: 0 auto; /* Centraliza as imagens horizontalmente */
  border-radius: 10px;
}

/* Ajustes para o carousel mobile */
#carouselParceirosMobile {
  max-width: 90%; /* Define a largura máxima do carousel */
  margin: 0 auto; /* Centraliza o carousel na tela */
}

#carousel-inner-mobile {
  padding: 20px 0; /* Adiciona um espaçamento interno */
}


/* Footer */

footer {
  width: 100%;
  background-color: #212529;
  padding: 0.5rem 0;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-sizing: border-box;
  margin-top: auto;
  flex-shrink: 0;
}

.footer-link {
  text-decoration: none;
}

#footer_content {
  display: grid;
  padding: 1.25rem 3rem;
}

#footer_endereco, #footer_telefone, #footer_email, #footer_copyright {
  text-align: center;
  justify-content: center;
  display: flex;
}

#footer_endereco a { 
  color: inherit;
  text-decoration: none;
}

#footer_contacts p {
  margin: 0;
  padding: 0;
  color: #f5f5f5;
  display: flex;
  justify-content: center;
  margin-bottom: 7px;
}

#footer_social_media {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
  text-decoration: none;
}

#footer_social_media .footer-link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.5rem;
  width: 2.5rem;
  color: #f5f5f5;
  border-radius: 50%;
  transition: all 0.4s;
  font-size: 1.25rem;
  transition: opacity 0.5 ease-in-out;
}

#footer_social_media .footer-link:hover {
  opacity: 0.7;
}

#instagram {
  background: linear-gradient(#7f37c9, #ff2992, #ff9807);
  text-decoration: none;
}

#facebook {
  background-color: #0A62F7;
  text-decoration: none;
}

#linkedin {
  background-color: #0077B5;
  text-decoration: none;
}

#footer_copyright {
  margin: 0;
  padding: 0;
  margin-top: 10px;
  text-align: center;
}

#footer_contacts span {
  font-weight: 600;
}


/* Responsividade */ 

@media (max-width: 768px) {
  .nossos-servicos h1 {
      font-size: 1.5rem;
  }

  .card {
      flex: 1 1 100%;
      max-width: 100%;
  }

  .main-parceiros {
    display: none;
  }

  .parceiros {
    display: none; /* Oculta o slider animado */
}

  .slider-mobile {
    display: block; /* Exibe o slider do Bootstrap */
}

  .slider-mobile-img {
    max-width: 120px; /* Reduz ainda mais o tamanho das imagens em telas pequenas */
}

li a {
  font-size: 0.7rem; /* Reduz o tamanho da fonte */
}

}

@media(max-width: 535px) {
  li a {
    font-size: 0.6rem; /* Reduz o tamanho da fonte */
}
}

@media (max-width: 480px) {
  .nossos-servicos h1, .main-parceiros h1, .slider-mobile h1 {
      font-size: 1.25rem;
  }

  .card-text {
      font-size: 0.9rem;
  }

  .solucoes-vantagens .card-container-solucoes-vantagens .card .card-header {
    font-size: 1rem;
  }

  .solucoes-vantagens .card-container-solucoes-vantagens .list-group.list-group-flush li {
      font-size: 0.9rem;
  }
}

@media (max-width: 332px) {
  .solucoes-vantagens .card-container-solucoes-vantagens .list-group.list-group-flush li {
    text-align: center;
}
}

@media (min-width: 320px) and (max-width: 448px) {    
  footer p {
    font-size: 0.8rem; /* Reduz o tamanho da fonte de todos os parágrafos */
}

#footer_content {
    grid-template-columns: 1fr; /* Uma coluna */
    padding: 1rem; /* Reduz o padding */
}
}