body {
  font-family: 'Raleway', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
}

a{
  text-decoration: none;
}

.container-topo {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  position: absolute;
  z-index: 2;
  color: #333;
}

.banner-interno { 
  position: relative;
  width: 100%;
  height: 50%;
}

.banner-interno img { 
width: 100%; 

height: 50%;
}

.banner-interno-text { 
position: absolute; 
top: 50%; 
left: 50%; 
transform: translate(-50%, -50%); 
color: black; 
font-family: 'Oswald',sans-serif;
font-size: 5.5;
font-weight: 200; 
}

.container {
  width: 90%;
  margin: 0 auto;
  display: flex;
  margin-top: 2rem;
}

header {
  width: 100%;
    top: 0;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: transparent; /* O fundo do cabeçalho ainda é transparente */
    box-sizing: border-box;
    transition: background 0.3s; /* Transição suave para o fundo */
}



header.show {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4)); /* Sombreamento degradê */
}

header .logo img {
  max-width: 200px;
}


nav {
  display: flex;
  align-items: center;
}



nav .menu {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}



nav .menu li {
  display: inline;
}



nav .menu li a {
  color: rgb(124, 124, 124);
  text-decoration: none;
  font-weight: 200;
  font-size:1.3em;
  font-family: 'Oswald',sans-serif;
  position: relative;
}



nav .menu li a::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: white;
  color:#ba3a3a;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}



nav .menu li a:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}



nav .menu a.active {
  color: #ffee00; /* Cor que indica a página ativa */
}



.menu-toggle, .menu-close {
  display: none;
  color: white;
  font-size: 2em;
  cursor: pointer;
}





/* Responsivo */

@media (max-width: 768px) {

  header {
      padding: 10px;
  }


  .logo {
      margin-right: auto;
      width:50%;
  }



  .menu-toggle {
      display: block;
      margin-left: auto;
      padding: 0 20px;
  }



  nav {
      position: fixed;
      top: 0;
      right: -100%;
      height: 100vh;
      width: 100%;
      flex-direction: column;
      align-items: center;
      padding: 60px 20px;
      transition: right 0.3s ease-in-out;
      z-index: 10;
      background-color: transparent; /* Inicialmente transparente */
  }



  nav.active {
      right: 0;
      background-color: rgba(0, 0, 0, 0.9); /* Cor de fundo quando ativo */
  }



  .menu-close {
      display: none; /* Inicialmente escondido */
      position: absolute;
      top: 20px;
      right: 20px;
  }



  nav.active .menu-close {
      display: block; /* Mostrar quando o menu estiver ativo */
  }



  nav .menu {
      flex-direction: column;
      gap: 2rem;
      width: 100%;
      text-align: center;
  }



  nav .menu li {
      width: 100%;
  }



  nav .menu li a {
      display: block;
      width: 100%;
      padding: 10px 0;
      text-align: center;
      font-size: 1.5em;
  }



  .social {
      display: flex;
      flex-direction: row;
      justify-content: center;
      width: 100%;
      margin: 20px 0;
  }

}

.carousel {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  margin-bottom: 20px;
}

.video-section video {
  width: 100%;
  height: auto;
}

.carousel video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.sidebar {
  width: 20%;
  float: left;
  margin-right: 20px;
}



.sidebar img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 10px;
  cursor: pointer;
}



.content {
  width: 75%;
  float: left;
}



.content img {
  width: 100%;
  border-radius: 10px;
}

.content-vitrine  {
  width: 100%;
  display: flex;
  margin:2%;
  border-radius: 10px;
}



.content-vitrine img {
  width: 100%;
  align-items: center;
  border-radius: 10px;
}

.text-content {
  padding: 20px;
  background-color: #f0f0f0;
  border-radius: 10px;
  margin-top: 20px;
  margin-bottom: 20px;
  width: 30%;
  margin-right: 1rem;
}



.text-content h1 {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
}



.text-content p {
  margin-bottom: 10px;
}



.text-content strong {
  color: #333;
  font-weight: 700;
}



.container-service {
  background-color: white;
  padding: 20px;
  position: relative;
}

.services-carousel {
  display: flex;
  align-items: center;
  margin-left: 2rem;
  margin-right: 2rem;
}



.services-carousel-wrapper {
  display: flex;
  gap: 10px;
  overflow-x: auto; /* Torna os itens clicáveis */
}



.services-carousel-wrapper img {

  width: 250px; /* Ajuste o tamanho das imagens no carrossel */
  height: 250px;
  margin: 0 10px;
  border-radius: 8px;
  cursor: pointer;
  z-index: 1; /* Garante que a imagem está acima de outros elementos */
  pointer-events: auto; /* Garante que cliques são permitidos */
}

/* Vitrine Imagens - utilizei para colocar as imagens dentro de todo o carrocel */

.services-carousel-wrapper-vitrine-imagens {
  display: flex;
  width: 90%;
  height: auto;
  margin: 3%;
  overflow: auto; /* Oculta elementos fora da área visível */
  position: relative;
}

.carousel-slide-vitrine-imagens {
  flex: 0 0 100%; /* Cada slide ocupa 100% do contêiner */
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  overflow-x: auto; /* Torna os itens clicáveis */
}

#carrocel-imagens {
  display: flex;
  position: relative;
  overflow: hidden;
}

#carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}

.carousel-slide-vitrine-imagens {
  flex: 0 0 100%; /* Cada slide ocupa 100% da largura do carrossel */
  display: flex;
  justify-content: center;
  align-items: center;
  
}

.carousel-arrow {
  background-color: red;
  border: none;
  
  font-size: 24px;
  cursor: pointer;
  margin:1rem;
  color:white;
  z-index: 1;
}



.carousel-arrow.left {
  position: absolute;
  left: 10px;
}



.carousel-arrow.right {
  position: absolute;
  right: 10px;
}
.carousel-arrow-imagens {
  background-color: red;
  border: none;
  top:50%;
  font-size: 24px;
  cursor: pointer;
  margin:1rem;
  color:white;
  z-index: 1;
}



.carousel-arrow-imagens.left {
  position: absolute;
  left: 10px;
}



.carousel-arrow-imagens.right {
  position: absolute;
  right: 10px;
}



/* Testemunhos */

.testimonial-carousel {

  display: flex;
  justify-content: center;
  margin: 40px auto;
  position: relative;
  width: 100%;
  overflow: hidden;
 background-color: #f0f0f0;
  padding: 20px;
  border-radius: 10px;
}



.testimonial-carousel-wrapper {
  display: flex;
  transition: transform 0.5s ease-in-out;
}



.testimonial {
  text-align: center;
  padding: 20px;
}



.testimonial img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 10px;
}



.testimonial p {
  font-style: italic;
  margin-bottom: 10px;
}



.testimonial h4 {
  font-weight: bold;
  color: #333;
}



/* Social Media */



.social-media {
  font-size: 1.5rem;
  text-decoration: none;

}



.social-media a:hover i {
  color: rgb(238, 238, 230); /* Altera a cor ao passar o mouse */
}



.contact-info a:hover {

  color: #111212;

}



footer {

  margin-top: 20px;
  clear: both;
  padding: 20px 0;
  background-color: #333;
  color: white;
  text-align: center;
  width: 100%;

}



footer .container {

  display: flex;

  justify-content: space-between;

  align-items: center;

}



footer a {

  color: white;

  margin: 0 10px;

  text-decoration: none;

}



.capacity-select {

  margin-top: 10px;

  margin-bottom: 20px;

}



.capacity-select label,

.capacity-select select {

  font-size: 16px;

}





/* GALERIA */



* {

  box-sizing: border-box;

}

.container-vitrine {

  position: relative;

  width: 100%;

  margin:auto;

  height: 100%;

 

}

/* Position the image container (needed to position the left and right arrows) */

.container-galeria {
  position: relative;
  width: 80%;
  margin:auto;
  height: 100%;
  margin-bottom: 4rem;
  padding: 1rem;
  display: flex;
  flex-direction: column;
 
}



/* Hide the images by default */

.mySlides {

  display: none;

  height: 600px;

 

}



/* Add a pointer when hovering over the thumbnail images */

.cursor {

  cursor: pointer;

}









/* Number text (1/3 etc) */

.numbertext {

  color: #f2f2f2;

  font-size: 12px;

  padding: 8px 12px;

  position: absolute;

  top: 0;

}



.titulo {

  font-family: 'Raleway', sans-serif;
  font-size: 3rem;
  font-weight: 400;
  color: #404340;
  margin-top: 2rem;
  margin-bottom: 1.5rem; /* Espaçamento inferior */
  text-align: center; /* Centraliza o título */
  position: relative; /* Necessário para a linha decorativa */

}



/* Linha decorativa abaixo do título */

.titulo::after {

  content: '';
  display: block;
  width: 500px; /* Tamanho da linha (ajustável) */
  height: 1px; /* Espessura da linha */
  background-color: #172518; /* Cor da linha */
  margin: 0.5rem auto; /* Centraliza a linha */

}



/* Container for image text */

.caption-container {

  text-align: center;

  background-color: #222;

  padding: 2px 16px;

  color: white;

}


.caption-content h3{
  font-family: 'Raleway', sans-serif;
  font-size: 2.5rem;
  font-weight: 400;
  color:#172518;
}





.caption-content p{

 font-family: 'Robot', sans-serif;
 font-size: 1rem;
 line-height: 1.3em;
 font-weight: 100;
 color:#636863;
 height: auto;
 margin-bottom: 1rem;
}



.row{

  margin: 2rem;

}

.row:after {

  content: "";

  display: table;

  clear: both;

}



/* Six columns side by side */

.column {

  float: left;

  width: 16.66%;

}



/* Add a transparency effect for thumnbail images */

.demo {

  opacity: 0.6;

}



.active,

.demo:hover {

  opacity: 1;

}



/* RODAPÉ */



.custom-rodape {

  width: 100%;

  margin-top:2rem;

  padding: 2px 0;



  position: relative;

  z-index: 10;

}



.company-info-container {

  width: 80%;

  margin: 0 auto;

  padding: 10px;

  border-radius: 10px;

  text-align: center;

  font-family: var(--fonte-texto);

}



.logo-row {

  display: flex;

  margin-top: 5rem;

  flex-direction: column;

  align-items: center;

}

.info-text{

  font-size: 1.3rem;

  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;

}



.info-row {

  display: flex;

  justify-content: space-between;

  flex-wrap: wrap;

  margin-top: 20px;

}



.info-column {

  flex: 1;

  margin: 10px;

  text-decoration: none;

}



.social-links a, .contact-column p {

  color: white;

  font-size: 1em;

  margin: 5px 0;

  transition: color 0.3s;

  text-decoration: none;

}



.social-links a:hover {

  color: #d4d8dd;

  transform: scale(1.2);

}



.developer-info {

  text-align: center;

  font-size: 0.9em;

  margin-top: 10px;

}



@media (max-width: 768px) {

  .info-row {

      flex-direction: column;

      align-items: center;

  }



  .info-column {

      margin: 0 0 20px 0;

  }

}



/* Mantemos os estilos globais para desktop como estão */



/* Estilos de mídia para dispositivos móveis */

@media (max-width: 768px) {



  /* Ajusta o container principal */

  .container {

    flex-direction: column; /* As colunas serão empilhadas verticalmente */

    margin-top: 1rem;

  }

  .carrocel{

    width: 100%;

  }

  .container-topo .social-media{

    display:none;

  }



  /* Ajusta a sidebar e conteúdo para ficarem em linha vertical */

  .sidebar, .content {

    width: 100%;

    float: none;

    margin: 0 auto;

  }



  /* Ajusta as imagens do carousel para ficarem menores e mais centradas */

  .services-carousel img {

    width: 150px;

    height: 150%;

  }



  /* Ajusta o texto dentro do conteúdo para ficar mais legível em telas menores */

  .text-content h1 {

    font-size: 20px;

  }



  .text-content p {

    font-size: 14px;

  }



  /* Ajuste da largura das imagens de destaque */

  .content img {

    width: 100%;

    height: auto; /* Para manter a proporção da imagem */

  }



  /* Ajusta o menu lateral (sidebar) para ocupar toda a largura em dispositivos menores */

  .sidebar img {

    width: 100%; /* Imagens laterais ocupam toda a largura do dispositivo */

    margin-bottom: 15px;

  }



  /* Ajusta as colunas de informações para empilhar verticalmente */

  .info-row {

    flex-direction: column;

    align-items: center;

  }



  .info-column {

    margin: 0 0 20px 0;

    width: 100%; /* Ocupa toda a largura da tela */

  }



  /* Reduz o tamanho das setas do carousel em dispositivos menores */

  .carousel-arrow {

    font-size: 20px;

    padding: 8px;

  }



  /* Ajusta o tamanho do texto nas informações */

  .info-text {

    font-size: 1rem;

  }



  /* Ajustes para o rodapé */

  .custom-rodape {

    padding: 10px 0;

    text-align: center; /* Centraliza o conteúdo do rodapé */

  }



  .company-info-container {

    width: 100%;

  }



  .developer-info {

    font-size: 0.8em;

  }



  /* Ajusta o carrossel de serviços para ser mais compacto */

  .services-carousel-wrapper {

    display: block; /* Empilha os elementos no carrossel em telas pequenas */

    text-align: center;

  }



  /* Ajusta os ícones das mídias sociais */

  .social-media {

    font-size: 1.5rem; /* Menor para telas pequenas */

  }



  /* Ajusta o footer em dispositivos móveis */

  footer .container {

    flex-direction: column;

    text-align: center;

  }



  /* Ajustes para a galeria */

  .container-galeria {

    width: 100%;

    margin: auto;

  }



  /* Ajusta as imagens da galeria para ocuparem melhor o espaço */

  .mySlides {

    height: auto; /* Remove o valor fixo da altura */

    width: 100%;

  }

  

  .mySlides img {

    display:none;

  }

  .column{

    width: 70%;

  }

  .caption-content{
    width: 100%;
  }



  /* Ajustes para os elementos decorativos */

  .titulo {

    font-size: 2rem; /* Título menor */

    margin-bottom: 1rem;

  }



  .titulo::after {

    width: 80px; /* Linha decorativa ajustada */

  }



}



/* Estilizando a linha */

.linha {

  display: flex;

  justify-content: space-between;

  align-items: flex-start;

  margin-bottom: 2rem;

  padding: 2rem;

  background-color: transparent;

  border-radius: 8px;

 

}



/* Estilos para colunas */

.coluna-33 {

  width: 33.33%;

  padding-right: 1rem;

}

.coluna-50 {

  width: 50%;

  padding-left: 1rem;

}


.coluna-66 {

  width: 66.66%;

  padding-left: 1rem;

}
.coluna-66 img {

  width: 60%;

  ;

}


/* Título do post */

.split-title {

  margin-top: 4rem;

  position: relative;

  margin-left: 0.1rem;

  font-family: 'Roboto', serif;

  font-weight: 400;

  font-size: 3em;

  color: #1c1b1b;

  margin-bottom: 3rem;

}



/* Subtítulo (Taxonomias) */

.split-subtitle {

  font-size: 1.5em;

  position: absolute;

  margin-left: 0.1rem;

  font-family: "Oswald", sans-serif;  

  color: #ffc647;

  font-weight: 400;

  margin-bottom: 1rem;

}



/* Efeito de hover na imagem */

.image-hover {

  position: relative;

}



.initial-image {
  width: 100%;
  border-radius: 8px;
  transition: opacity 0.5s ease-in-out;
}



.initial-image:hover {

  opacity: 0.8;

}



/* Botão "Leia +" */

.split-button {

  background-color: #e64900;

  color: #fff;

  padding: 10px 20px;

  border: none;

  border-radius: 5px;

  font-size: 1rem;

  cursor: pointer;

  margin-top: 1rem;

  transition: background-color 0.3s ease;

}



.split-button:hover {

  background-color: #d8dee3;

}



/* Estilo para o resumo do post */

.texto-font-destaque {

  font-size: 1.2rem;

  color: #333;

  line-height: 1.6;

  margin-top: 1rem;

}



/* Estilos para taxonomias */

.tags-list {

  margin-top: 1rem;

}



.tags-list .tag {

  display: inline-block;

  background-color: #f4f4f4;

  color: #333;

  padding: 5px 10px;

  margin-right: 5px;

  border-radius: 3px;

  font-size: 0.9rem;

}



/* Estilos responsivos */

@media (max-width: 768px) {

  .linha {

      flex-direction: column;

  }

  .coluna-33,

  .coluna-66 {

      width: 100%;

      padding: 0;

  }

  

  .split-title {

      font-size: 1.25rem;

  }

  

  .split-button {

      width: 100%;

      text-align: center;

  }

}





/* Página interna */

/* ARTIGO */

.container-artigo {

  margin-top: 5rem;

  margin: 0 auto;

  width: 80%;

  padding: 20px;

}

.article {

  margin: 20px;

  padding: 20px;

  background-color: white;

  border-radius: 15px;

  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);

}

.article img {
  width: 50%;
  height: 50%;
  border-radius: 15px;
}

.img-com-margem {
  width: 80%; /* Para garantir que a imagem ocupe a largura da coluna */
  height: 80%;
  border-radius: 8px;
  margin: 20px; /* Adicione a margem que preferir */
}

.article-title {
  position: relative;
  top: 30px;
  color: white;
  padding: 10px;
  border-radius: 15px;
  text-align: center;
  font-family: "Robot", serif;
  font-size: 3em;
  color: black;
  font-weight: 800;
}

.article-content-resumo {

  text-align: justify;

  display: block;

  margin-left: 10%;

  margin-right: 5%;

 

  width: 70%;

  color:#474444;

  font-family: 'Roboto', sans-serif;

  line-height: 1.5;

  font-size: 1.2em;

  font-weight: 200;



}

.article-content {

  text-align: justify;

  display: none;

  margin-left: 10%;

  margin-right: 5%;

  margin-top: -30px;

  color:#474444;

  width: 70%;

  font-family: 'Roboto', sans-serif;

  line-height: 1.5;

  font-size: 1.2em;

  font-weight: 400;



}

.show-more-btn {

  background-color: #ffd000;

  color: black;

  padding: 10px;

  border: none;

  border-radius: 5px;

  cursor: pointer;

  margin-top: 10px;

}

.show-more-btn:hover {

  background-color: #d25738;

  color:#d4d8dd;

}

.gallery-container {

  position: relative;



  margin: 20px;

  overflow: hidden;

  border-radius: 15px;

  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.1);

}

.gallery {

  display: flex;

  transition: transform 0.5s ease;

}

.gallery-item {

  flex: 0 0 calc(25% - 20px);

  position: relative;

  border-radius: 15px;

  overflow: hidden;

  cursor: pointer;

  margin: 50px 10px;

  background-color: transparent;

}

.gallery-item img {

  width: 100%;

  height: auto;

  border-radius: 15px;

}

.gallery-item .text-content-destaque {

  padding: 20px;

  text-align: center;

  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);

  border-radius: 8px;

  color: rgb(130, 129, 129);

  display: none;

  font-family: 'Roboto', sans-serif;

  font-size:1.2em;

  position: relative;

  bottom: 0;

  left: 0;

  right: 0;

}

.gallery-item:hover .text-content-destaque {

  display: block;



}

.gallery-item:hover img {

 opacity: 0.8;



}

.gallery-item h3 a{

  text-align: center;

  margin-top: 10px;

  font-size:1.2em;

  font-family: 'Roboto', sans-serif;

  color: rgb(130, 129, 129);

  font-weight: 100;

  text-decoration: none;

}

.gallery-item  a {

  text-decoration: none;

  

}



.gallery-item a:hover{

  color:rgb(233, 185, 28);

  font-weight: bold;

}

.carousel-controls {

  display: flex;

  justify-content: center;

  gap: 10px;

  margin: 20px;

}

.carousel-controls button {

  background-color: #4ae80b;

  color: white;

  padding: 10px;

  border: none;

  border-radius: 5px;

  cursor: pointer;

}

/* Responsividade */

@media (max-width: 1200px) {

  .gallery-item {

      flex: 0 0 calc(33.33% - 20px);

  }

}

@media (max-width: 768px) {

  .gallery-item {

      flex: 0 0 calc(50% - 20px);

  }

}

@media (max-width: 480px) {

  .gallery-item {

      flex: 0 0 calc(100% - 20px);

  }

  .article-title {

      top: -30px;
      padding: 5px;
      font-size: 1em;

  }

}



.banner-carousel {

  position: relative;
  width: 90%;
  height: 100%;
  margin: 0 auto;
  overflow: hidden;
  margin-top: 2rem;
  margin-bottom: 2rem;
}



.carousel-content-banner img {

  width: 100%;
   height: 100%;
  

}



.carousel-controls-banner {

  position: absolute;

  top: 50%;

  width: 100%;

  display: flex;

  justify-content: space-between;

  transform: translateY(-50%);

}



.carousel-controls-banner button {

  background: rgba(0, 0, 0, 0.5);

  color: #fff;

  border: none;

  padding: 10px;

  cursor: pointer;

}







@media (max-width: 780px) {

  .banner-carousel {

      flex: 0 0 calc(100% - 20px);

  }

 

}



/* MS */

/* Container principal do carrossel */



.ms-carousel-container {

  position: relative;

  width: 90%;

  margin: 5%;

  overflow: hidden;

  padding: 10px 20px; /* Margem direita e esquerda */

}



.ms-carousel-inner {

  display: flex;

  transition: transform 0.5s ease-in-out;

}



.ms-carousel-slide {

  flex: 0 0 calc(100% / 6); /* Exibe 5 slides por vez */
  max-width: calc(100% / 6); /* Limita o tamanho do slide */
  box-sizing: border-box;
  position: relative;
  padding: 5px;
}

.ms-carousel-cover {
  position: relative;
  cursor: pointer;
}



.ms-carousel-cover img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}


.ms-play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 8px;
}



.ms-carousel-cover:hover .ms-play-overlay {
  opacity: 1;
}



.ms-carousel-text {
 text-align: center;
 padding: 10px;
}



.ms-video-player video {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
  margin: 0 auto;
}



/* Setas de navegação */

.ms-carousel-prev, .ms-carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  padding: 10px;
  cursor: pointer;
  z-index: 1000;

}



.ms-carousel-prev {

  left: 10px;

}



.ms-carousel-next {
  right: 10px;
}





/* Ajustes responsivos */

@media (max-width: 1024px) {

  .ms-carousel-slide {

      flex: 0 0 33.33%; /* Mostra 3 slides em telas médias */

  }

}



@media (max-width: 768px) {

  .ms-carousel-slide {

      flex: 0 0 50%; /* Mostra 2 slides em telas pequenas */

  }

}



@media (max-width: 480px) {

  .ms-carousel-slide {

      flex: 0 0 100%; /* Mostra 1 slide em telas muito pequenas */

  }

}

.ms-close-btn {

  position: absolute;

  top: 10px;

  right: 10px;

  background-color: rgba(0, 0, 0, 0.7);

  color: #fff;

  font-size: 20px;

  width: 30px;

  height: 30px;

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  cursor: pointer;

  z-index: 10;

}



.ms-video-player {

  position: relative;

}



.ms-close-btn {

  position: absolute;

  top: 10px;

  display:none;

  right: 10px;

  background-color: rgba(0, 0, 0, 0.7);

  color: #ba3a3a;

  font-size: 20px;

  width: 30px;

  height: 30px;

  border-radius: 50%;



  align-items: center;

  justify-content: center;

  cursor: pointer;

  z-index: 10;

}


/* Responsividade e estilos para a seção de diferenciais */
.background-container-dif {
  background-color: #f9f9f9;
  padding: 10px 10px;
  width: 100%;
}

.content-dif {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.text-linha-dif {
  text-align: center;
  margin-bottom: 30px;
}

.category-text-dif {
  font-size: 1.2rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

.title-text-dif {
  font-size: 2rem;
  font-weight: bold;
  color: #555;
}

.content-item-dif {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  width: calc(100% - 40px);
  max-width: 250px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-item-dif:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.content-item-dif img {
  width: 100%;
  height: auto;
}

.content-details-dif {
  padding: 10px;
}

.content-title-dif {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

.content-text-dif {
  font-size: 1rem;
  color: #666;
  line-height: 1.5;
}

/* Responsividade */
@media (max-width: 768px) {
  .content-dif {
      flex-direction: column;
      align-items: center;
  }

  .content-item-dif {
      width: 90%;
  }
}
