@import url('https://fonts.googleapis.com/css2?family=Anton&family=Bebas+Neue&family=IBM+Plex+Mono:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --cor-primaria: rgb(23, 23, 23);
  --cor-secundaria: #f1c40f;
  --cor-background-clara: #ededed;

  --fonte-principal: "Bebas Neue", sans-serif;
  --fonte-secundaria: 'Montserrat', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--fonte-principal);
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: var(--cor-background-clara);
}

header .Logotipo {
  position: absolute;
  top: 0;
  left: 30px;
  width: 130px;
}

header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  padding: clamp(2.00rem, 2.5rem, 4.5rem);
  background-color: var(--cor-primaria);
}


header ul {
  display: flex;
  justify-content: space-between;
  list-style: none;
  align-items: center;
  padding-top: clamp(0.50rem, 0.62rem, 0.74rem);
  padding-inline: clamp(10.00rem, 12.50rem, 15.00rem);
  font-size: clamp(1.28rem, 1.6rem, 3rem);
  font-family: var(--fonte-principal);
}

a {
  padding: 10px 20px;
  text-decoration: none;
  color: white;
  transition: all 0.2s ease;
  white-space: nowrap;
}

header a:hover {
  text-decoration: underline;
  text-underline-offset: 15px;
  color: #f1c40f;
  /* Destaque ao passar o mouse */
}

nav ul .separador {
  width: 1px;
  /* largura da coluna */
  height: 20px;
  /* altura da coluna */
  background-color: white;
  /* ou outra cor que combine */
  opacity: 0.5;
  /* opcional: deixa mais suave */
}


.titulo {
  margin-top: 3em;
  font-family: var(--fonte-principal);
  font-size: clamp(2.72rem, 3.40rem, 4.08rem);
  text-align: center;
}

.cards__imagens {
  margin: 1em 1em 2em;
  display: flex;
  justify-content: space-around;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;

}

.corte,
.barba,
.cortemaisbarba {
  width: 75%;
  height: auto;
  border-radius: 15px;
  margin-top: 1rem;
}

.box {
  border: 2px solid var(--cor-primaria);
  border-radius: 2px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin: 0px 20px 0 20px;
  width: 27%;
  height: 50%;
  text-align: center;
  transition: transform 0.3s ease;
  letter-spacing: 1px;
  flex-wrap: wrap;
}

.box:hover {
  transform: translateY(-5px);
}

.imagens__descricao {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.imagens__descricao h2{
  font-size: clamp(1.5rem, 2vw, 3rem)
}

.imagens__descricao h3{
  font-size: clamp(1.2rem, 1.7vw, 2.7rem)
}

.botao__agendar {
  margin: 0.7em;
  display: inline-block;
  padding: 1rem 5%;
  font-family: var(--fonte-secundaria);
  font-size: clamp(1.00rem, 1.25rem, 1.50rem);
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, #efc210 0%, #e67e22 100%);
  border: none;
  border-radius: 5px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.botao__agendar::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(45deg) translate(-100%, -100%);
  transition: transform 0.6s ease;
}

.botao__agendar:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.botao__agendar:hover::before {
  transform: rotate(45deg) translate(0, 0);
}

.tesoura__centro {
  text-align: center;
}

.tesoura {
  width: 150px;
  height: 130px;
}

.profissionais {
  width: 100%;
  height: auto;
  background-color: var(--cor-background-clara);

}

.titulo__profissionais {
  font-family: var(--fonte-principal);
  font-size: clamp(2.72rem, 3.40rem, 4.08rem);
  text-align: center;
}

.cards__profissionais {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 20px;
}

.card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  margin: 10px 0px;
  align-items: center;
  width: 28%;
}

.foto {
  width: 100%;
  height: auto;
  display: block;
  transition: 0.3s ease;
  border-radius: 1rem;
}

.botao__agendar__profissionais {
  display: inline-block;
  padding: 1rem 15%;
  font-family: var(--fonte-principal);
  letter-spacing: 1px;
  font-size: clamp(1.5rem, 2vw, 3rem);
  font-weight: 400;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, #efc210 0%, #e67e22 100%);
  border: 0px solid var(--cor-primaria);
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  overflow: hidden;
  margin-top: 2rem;
}

.botao__agendar__profissionais::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(45deg) translate(-100%, -100%);
  transition: transform 0.6s ease;
}

.botao__agendar__profissionais:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.botao__agendar__profissionais:hover::before {
  transform: rotate(45deg) translate(0, 0);
}


.alinhar__card {
  display: flex;
  align-items: center;
}

.rodape {
  margin-top: 5em;
  display: flex;
  justify-content: space-around;
  background-color: rgb(23, 23, 23);
  color: #fff;
  padding: 20px 0;
  font-family: var(--fonte-secundaria);
  font-size: clamp(0.75rem, 0.94rem, 1.13rem);
}

.rodape__menu {
  text-align: center;
}

.rodape__menu h5 {
  color: var(--cor-secundaria);
  font-size: clamp(0.75rem, 0.94rem, 1.13rem);
  margin-bottom: 1em;
  font-family: var(--fonte-secundaria);
}

.rodape__menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5em;
  padding: 0;
  justify-content: center;
}

.rodape__menu li a {
  text-decoration: none;
  color: white;
  font-family: var(--fonte-secundaria);
  font-weight: 500;
}

.rodape__menu li a:hover {
  color: var(--cor-secundaria);
}


.rodape__informacoes__esquerda {
  display: flex;
  flex-direction: column;
  font-family: var(--fonte-secundaria);
  font-size: clamp(0.50rem, 0.62rem, 0.74rem);
  margin-bottom: 1.5%;

}

.rodape__logotipo {
  width: 150px;
  height: 150px;
}

.rodape__informacoes__direita {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.redes-sociais {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.instagram__cabecalho {
  width: 40px;
  height: 40px;
  transition: 0.2s;
}

.instagram {
  width: 30px;
  height: 30px;
  transition: 0.2s;
}

.instagram__cabecalho:hover,
.instagram:hover,
.whatsapp:hover,
.facebook:hover,
.phone:hover {
  transform: scale(1.075);
}

.facebook {
  width: 30px;
  height: 30px;
  transition: 0.2s;
}

.whatsapp {
  width: 25px;
  height: 25px;
  transition: 0.2s;
}

.phone {
  width: 15px;
  height: 15px;
  margin-right: 10px;
  transition: 0.2s;
}

.telefone {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  font-family: var(--fonte-secundaria);
  margin: 0.5em 2.5em 0 0;
}

.rodape__assinatura {
  display: flex;
  justify-content: flex-end;
  margin-top: 5em;
  font-size: clamp(0.50rem, 0.62rem, 0.74rem);
}