/* ==================== VARIÁVEIS ==================== */
:root {
  --vermelho-fhf: #d22626;
  --cinza-metal: #C0C0C0;
  --cinza-fundo: #1a1a1a;
  --preto: #000000;
  --branco: #ffffff;
}

/* ==================== RESET E BASE ==================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--cinza-fundo);
  color: var(--branco);
  font-family: "Roboto Flex", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;

}

section {
  padding: 80px 5%;
  margin-top: 50px;
}

/* ==================== HEADER ==================== */
.navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2px 30px;
  width: 100%;
  background: var(--preto);
  box-shadow: 0 0.1rem 0.5rem #ccc;
  position: fixed;
  top: 0;
  z-index: 1000;
}

.Logo_Sup {

  width: 80px;
  height: 80px;

}

.navigation ul {
  display: flex;
  align-items: center;
  gap: 5rem;
}

.navigation ul li a {
  color: var(--branco);
  font-size: 17px;
  font-weight: 500;
  transition: all 0.3s;
}

.navigation ul li a:hover {
  color: var(--cinza-metal);
}

.menu {
  cursor: pointer;
  display: none;
}

.menu .bar {
  display: block;
  width: 28px;
  height: 3px;
  margin: 5px auto;
  border-radius: 3px;
  background: var(--branco);
  transition: all 0.3s;
}

/* ==================== BOTÕES ==================== */
.home-btn{

padding: 15px 25px;
  margin: 5px;
  border: 2px solid var(--vermelho-fhf);
  box-shadow: 2px; 
  border-radius: 8px;
  background-color: var(--branco);
  color: var(--vermelho-fhf);
  font-weight: 600;
  text-transform: uppercase;
  transition: 0.3s;


}
.wpp-btn,
.igm-btn,
.lkdn-btn {
  padding: 10px 20px;
  margin: 5px;
  border: 2px solid var(--vermelho-fhf);
  box-shadow: 2px; 
  border-radius: 8px;
  background-color: var(--branco);
  color: var(--vermelho-fhf);
  font-weight: 600;
  text-transform: uppercase;
  transition: 0.3s;
  
}

.home-btn:hover,
.wpp-btn:hover,
.igm-btn:hover,
.lkdn-btn:hover {
  background-color: var(--vermelho-fhf);
  color: var(--branco);
}

.div_botao {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
  flex-wrap: row;
}

.Icone {
  width: 50px;
  height: 50px;
  cursor: pointer;
  margin: 0 10px;
}

/* ==================== TEXTOS E TÍTULOS ==================== */
.text-h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 30px;
  margin-top: 35px;
  color: var(--vermelho-fhf);
  text-transform: uppercase;
}

.text-h4 {
  font-size: 1.5rem;
  color: var(--vermelho-fhf);
  margin-bottom: 1rem;
  font-family: "Roboto Flex", sans-serif;
  font-optical-sizing: auto;
  font-weight: bolder;
  font-style: normal;
}

.texto-fundo-branco {
  color: var(--cinza-fundo);
}

.sobre-text {

  font-family: "Roboto Flex", sans-serif;
  font-optical-sizing: auto;
  font-weight: bolder;
  font-style: normal;
}

.texto-negrito {


  font-family: "Roboto Flex", sans-serif;
  font-optical-sizing: auto;
  font-weight: 1000;
  font-style: normal;

}

.texto-vermelho {

  color: var(--vermelho-fhf);
  font-family: "Roboto Flex", sans-serif;
  font-optical-sizing: auto;
  font-weight: 1000;
  font-style: normal;
}

#texto-fhf {
  color: var(--vermelho-fhf);
  font-family: "Roboto Flex", sans-serif;
  font-optical-sizing: auto;
  font-weight: 1000;
  font-style: normal;

}

/* ==================== SEÇÕES ==================== */
/* ==================== HOME ==================== */

.inicio {

  padding-bottom: 150px;

}

.home-cont {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  background-color: var(--branco);
  
}

.home-cont-img {
  margin-left: 200px;
  background-color: var(--preto);
  border-radius: 500px;
  padding: 25px;
}

.home-text {
  max-width: 37rem;
  color: var(--preto);
  font-weight: bold;

}

/* ==================== SERVIÇOS ==================== */
.servicos {
  margin-top: 180px;
  font-family: "Roboto Flex", sans-serif;
  font-optical-sizing: auto;
  font-weight: bolder;
  font-style: normal;

}

.texto-descricao {

  border-bottom: 180px;
  border-top: 50px;

}

.bloco-descricao {

  margin-bottom: 10px;
  margin-top: 15px
}

.servico-box {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 10px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.servico-box img {
  width: 350px;
  height: 350px;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
  transition: transform 0.5s;
}

.servico-box img:hover {
  transform: scale(1.1);
}

.servico-box .descricao {
  flex: 1;
}

.servico-box .descricao h2 {
  font-size: 1.8rem;
  color: var(--vermelho-fhf);
  margin-bottom: 10px;
}

.servico-box .descricao ul {
  padding-left: 20px;
}



/* ==================== SOBRE NÓS ==================== */
.carrossel {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  padding-bottom: 20px;
  margin-top: 150px;
  /* scroll-snap-type: x mandatory; */
}

.carrossel img {
  height: 200px;
  border-radius: 8px;
  transition: transform 0.3s;
  cursor: pointer;
  scroll-snap-align: center;
  width: 250px;
  height: 250px;
}

.carrossel img:hover {
  transform: scale(1.5);
}

.sobre-text {
  max-width: 37rem;
  margin-top: 2rem;
  font-weight: 500;
  line-height: 1.6;
}

/* ==================== CONTATO ==================== */

#contato {

  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;



}

.info_contato {

  width: 500px;
  height: 500px;
  background-color: chartreuse;


}

.card {

  background-color: var(--cinza-fundo);
  width: 450px;
  height: 450px;
  padding: 25px;
  border-radius: 15px;
  border: 1px solid;
  border-color: var(--vermelho-fhf);
  padding: 10px;
  box-shadow: 5px 10px 8px #888888;
  display: flex;
  justify-content: center;
  align-items: center;
 
  transition: transform 1s;
  display: flex;
  flex-direction: column;

}

.card:hover {

  transform: scale(1.1);
  box-shadow: 8px 10px 15px #888888;

}
.div_foto_card{

display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
border-bottom: 10px;
padding-bottom: 15px;



}
.foto_card{

  height: 100px;
  width: 100px;
  border-radius: 50px;
  border: 15px;
  transition: 1s;
  

}
.foto_card:hover{
  transform: scale(1.3);
}

.infos_contato {
  font-weight: 600;
  margin-top: 1rem;
  line-height: 1.8;
  height: 400px;
  width: 400px;
  
}

.info_local {

  /* display: flex;
  justify-content: center;
  align-items: center;

  background-color: var(--cinza-fundo); */

  /* width="600" height="450" ---> dimensoes do mapa do google */
  /* width: 600px;
  height: 450px; */
  border: 1px solid;
  border-radius: 15px;
  box-shadow: 5px 10px 8px #888888;
  transition: 1s;

}

.info_local:hover{

  transform: scale(1.1);

}

.link-especial {
  color: var(--branco);
  text-decoration: none;
}

.link-especial:hover {
  color: var(--vermelho-fhf);
}


;

.link-especial:active {
  color: var(--cinza-metal);
}


/* ==================== FOOTER ==================== */
footer {
  background-color: var(--preto);
  padding: 20px;
  text-align: center;
  color: var(--cinza-metal);
}

footer a {
  color: var(--vermelho-fhf);
  text-decoration: none;
}

/* ==================== POP-UP ==================== */

  .popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: 2s;
  } 
  .popup :hover {
    transform: scale(1.1);
  }

  .popup-content {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    width: 300px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    position: relative;
    transition: 1s;
  } 
  /* .popup :hover {
    transform: scale(1.05);
  } */
  .popup-content h2 {
    margin-top: 0;
    color: var(--vermelho-fhf);
    margin-bottom: 10px;
  }

  .popup-content p {
    color: #333;
    /* margin-bottom: ; */
  }

  .close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 22px;
    font-weight: bold;
    cursor: pointer;
    color: #333;
  }

  .close:hover {
    color: red;
}


/* ==================== RESPONSIVO ==================== */
@media (max-width: 1050px) {


section {
   /* padding: 15px ; */
  margin-top: 50px; 
}


  .body {
    justify-content: center;
    width: 100%;
    height: 100%;
  }



  .menu {
    display: block;
  }

  .home-cont {

    width: 100%;
    height: 100%;
    justify-content: center;


  }
  .home-cont-img{

    width: 150px;
    height: 150px;



  }

  .home-cont-img img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* cobre a div, mesmo que corte parte da imagem */
}

  .home-cont-img {
  margin-left: 200px;
  background-color: var(--preto);
  border-radius: 500px;
  padding: 25px;
}


  .nav-menu {
    position: fixed;
    right: -100%;
    top: 70px;
    width: 100%;
    height: 100vh;
    background: var(--preto);
    flex-direction: column;
    gap: 2rem;
    transition: right 0.4s ease-in-out;
    padding-top: 100px;
    z-index: 999;
  }

  .nav-menu.ativo {
    right: 0;
  }

  .home-cont-img {
    margin-left: 0;
    margin-top: 2rem;

  }

  .home-cont {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

.wpp-btn,
.igm-btn,
.lkdn-btn {
  padding: 2px 2px;
  margin: 5px;
  border: 2px solid var(--vermelho-fhf);
  box-shadow: 2px; 
  border-radius: 8px;
  background-color: var(--branco);
  color: var(--vermelho-fhf);
  font-weight: 600;
  text-transform: uppercase;
  transition: 0.3s;
  
}

  .div_botao {
    justify-content: center;
  }

  #contato {

  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;

}


.card {


  width: 100%;
  /* height: ; */
  padding: 25px;
  border-radius: 15px;
  border: 1px solid;
  padding: 10px;
  box-shadow: 5px 10px 8px #888888;
  border-color: #d22626;
 

  display: flex;
  flex-direction: column;

}
.info_local {

  /* display: flex;
  justify-content: center;
  align-items: center;

  background-color: var(--cinza-fundo); */

  /* width="600" height="450" ---> dimensoes do mapa do google */
  width: 100%;
  height: 50%px;
  border: 1px solid;
  border-radius: 15px;
  box-shadow: 5px 10px 8px #888888;

}
}