/* ------------------------------------------------------------------------HOME */

/* BOTOES */

.btn {
  background-color: #53bdd7;
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 900;
  color: #000;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2), 4px 4px 10px rgba(0, 0, 0, 0.15),
    6px 6px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, background-color 0.3s ease;
  border: none;
}

.btn:hover {
  background-color: #dd3996;
  color: #fff;
  transform: translateY(-5px);
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2), 6px 6px 15px rgba(0, 0, 0, 0.25),
    10px 10px 20px rgba(0, 0, 0, 0.15);
    cursor: pointer;
}

/* ---------------------------------BOTOES */

/* ---------------------------------CABECALHO */
.menu__item {
  list-style: none;
  display: inline-block;
  margin-right: 50px;
  position: relative;
}

.menu__item > a {
  text-decoration: none;
  color: #fff;
  font-size: 24px;
}

.menu__item > a:hover {
  color: #53bdd7;
}

.menu__item::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background-color: #53bdd7;
  transition: width 0.4s ease;
  position: absolute;
  left: 50%;
  bottom: -5px;
  transform: translateX(-50%);
}

.menu__item:hover::after {
  width: 100%;
}

.layout-menu-hamburger > img:hover {
  cursor: pointer;
}

@media (max-width: 900px) {
  .menu__item {
    display: inline-block;
    text-align: left;
    margin-right: 10px;
  }

  .menu__item:last-child {
    margin: 0;
  }

  .menu__item > a {
    font-size: 20px;
  }
}

/* ---------------------------------FIM CABECALHO */

/* ---------------------------------RODAPE */
.copyright__texto {
  color: white;
  font-size: 20px;
}

.redes__item {
  display: inline-block;
  list-style: none;
  margin-right: 20px;
}

.redes__item:last-child {
  margin-right: 0;
}

@media (max-width: 600px) {
  .redes__item > a > img {
    width: 50px;
  }
  .redes__lista {
    display: inline-block;
  }
}
/* ---------------------------------FIM RODAPE */

/* ---------------------------------BANNER */

.banner__titulo {
  color: #dd3996;
  font-size: 32px;
  margin-bottom: 10px;
}

.banner__subtitulo {
  color: #fff;
  font-weight: 300;
  font-size: 28px;
  margin-bottom: 50px;
}

/* ---------------------------------FIM BANNER */

/* ---------------------------------CHAMADA */

.chamada__titulo {
  color: white;
  font-size: 32px;
  margin-bottom: 50px;
}

.chamada__titulo > span {
  color: #dd3996;
}

.chamada__img {
  width: 90%;
  margin-bottom: 0;
}
/* ---------------------------------FIM CHAMADA */

/* ---------------------------------CLIENTES*/

.clientes__titulos {
  color: #fff;
  text-align: center;
  font-size: 32px;
  margin-bottom: 30px;
}

.card {
  width: 250px;
  height: 315px;
  perspective: 1000px; /* Perspectiva para criar o efeito 3D */
  margin: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  border-radius: 20px;
}

.card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s;
  transform-style: preserve-3d; /* Mantém os dois lados do card no espaço 3D */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  border-radius: 20px;
}

.card:hover .card-inner {
  transform: rotateY(180deg); /* Faz o flip ao passar o mouse */
  border-radius: 20px;
}

.card-front,
.card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden; /* Esconde a parte de trás quando não está visível */
  border-radius: 20px;
}

.card-front {
  /* Frente do card (imagem do cliente) */
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
}

.card-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.card-back {
  /* Verso do card (texto sobre o cliente) */
  background-color: #dd3996;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: rotateY(
    180deg
  ); /* Virar o verso inicialmente para ficar de costas */
  border-radius: 20px;
}

.card-back img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Mantém a proporção da imagem */
  border-radius: 20px; /* Borda arredondada */
}

@media (max-width: 770px) {
  .chamada__titulo {
    color: white;
    font-size: 25px;
    margin-bottom: 50px;
  }

  .chamada__img {
    margin-bottom: 50px;
    width: 100%;
  }

  .clientes__titulos {
    font-size: 25px;
    margin-bottom: 10px;
  }

  .card {
    width: 200px;
    height: 250px;
  }
}

@media (max-width: 600px) {
  .banner__titulo {
    font-size: 25px;
  }

  .banner__subtitulo {
    font-size: 20px;
  }
}
/* ------------------------------------------------------------------------HOME */

/* ------------------------------------------------------------------------SOBRE */

.sobre__titulo {
  color: #fff;
  font-size: 32px;
  border-bottom: 1px solid #fff;
  display: inline-block;
  padding: 10px 50px;
  margin-bottom: 50px;
}

.sobre-texto__paragrafo {
  color: #fff;
  font-size: 24px;
  font-family: "Montserrat", sans-serif;
  line-height: 30px;
  margin-bottom: 15px;
}

.sobre-texto__paragrafo:last-child {
  margin-bottom: 0;
}

.sobre-img__logo {
  width: 300px;
}

.servicos__titulo {
  text-align: center;
  color: #fff;
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 35px;
}

.servicos-cards__titulo {
  color: #fff;
  margin-bottom: 15px;
  font-size: 24px;
  font-weight: 300;
  font-family: "Montserrat", sans-serif;
}

.servicos-cards__img {
  border-radius: 20px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}
.servicos-cards__img:hover {
  transform: scale(
    1.05
  ); /* Aumenta o tamanho da imagem quando o mouse passa por cima */
}

@media (max-width: 800px) {
  .sobre-texto__paragrafo {
    font-size: 18px;
  }

  .sobre-img__logo {
    width: 200px;
  }
}

@media (max-width: 600px) {
  .sobre-texto__paragrafo {
    font-size: 18px;
    text-align: center;
  }

  .sobre-img__logo {
    text-align: center;
    width: 200px;
  }
}

/* ------------------------------------------------------------------------SOBRE */

/* ------------------------------------------------------------------------CONTATOS */

.contatos___titulo {
  color: #fff;
  font-size: 34px;
}

.formulario__item {
  width: 400px;
  border-radius: 20px;
  border: none;
  padding: 15px 20px;
  outline: none;
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.4),
    -3px -3px 5px rgba(255, 255, 255, 0.3);
  font-size: 18px;
  box-sizing: border-box;
}

.formulario__ideia{
  width: 100%;
  height: 100px;
  border-radius: 20px;
  padding: 20px 10px 10px 20px; 
  outline: none;
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.4),
    -3px -3px 5px rgba(255, 255, 255, 0.3);
  resize: none;
  margin-bottom: 20px;
  box-sizing: border-box;
  font-size: 18px;

}

.btn__contatos{
  padding: 15px 50px;
  font-size: 20px;
}

.contatos__item-titulo{
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 600;
}

@media(max-width: 900px){
  .formulario__item {
    width: 300px;
    margin-bottom: 20px;
  }
}

@media(max-width: 700px){
  .formulario__item {
    width: 100%;
    margin-bottom: 20px;
  }
  
}

@media(max-width: 550px){
  .contatos___titulo {
    font-size: 24px;
  }
}

@media(max-width: 400px){
  .contatos___titulo {
    font-size: 18px;
  }
}



/* ------------------------------------------------------------------------CONTATOS */
