body {
  font-family: 'Raleway', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
}
a{
  text-decoration: none;
}

.container-topo {
  width: 90%;
  height: 100%;
  margin: 0 auto;
  position: absolute;
  z-index: 2;
  color: #333;
}



.container {
  width: 90%;
  margin: 0 auto;
  display: flex;
  margin-top: 2rem;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}

header .logo img {
  max-width: 200px;
}

.carousel {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  margin-bottom: 20px;
}

.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;
}

.text-content {
  padding: 20px;
  background-color: #f0f0f0;
  border-radius: 10px;
  margin-top: 20px;
}

.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 {
  width: 90%;
  overflow: hidden; /* Esconde as partes que transbordam */
  position: relative;
 
}
.services-carousel {
  display: flex;
  align-items: center;
  width: 95%;
  margin-left: 2rem;
  margin-right: 2rem;
 
}

.services-carousel-wrapper {
  display: flex;
  overflow-x: auto; /* Permite rolar horizontalmente */
  scroll-behavior: smooth; /* Rolar suavemente */
  
}

.services-carousel-wrapper img {
  width: 200px; /* Ajuste o tamanho das imagens no carrossel */
  height: 200px;
  margin: 0 10px;
  border-radius: 8px;
}

.carousel-arrow {
  background-color: transparent;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

.carousel-arrow.left {
  position: absolute;
  left: 10px;
}

.carousel-arrow.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%;
 
}

/* 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: 800;
  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: 100px; /* Tamanho da linha (ajustável) */
  height: 5px; /* 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: 'Raleway', sans-serif;
 font-size: 1.2rem;
 line-height: 1.5em;
 font-weight: 100;
 color:#636863;
}

.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;
  background-color: rgb(6, 42, 6);
  color: white;
  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;
  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;
  }
  .logo img{
    width: 50%;
  }
}

/* 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: 150px;
  }

  /* 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 */
  }

}
