* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    width: 100%;
    height: 100vh;
    position: relative;
    background-color: rgb(15, 12, 12);
}
.logo img {
  height: 75px; /* ou o tamanho que quiser */
  width: auto;
  margin-top: 40px;
}


button {
    font-family: "Merriweather", serif;
    cursor: pointer;
}

a {
    cursor: pointer;
    text-decoration: none;
}

header {
    width: 100%;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

i {
    color: #d6a609;
    margin-top: 16px;
    font-size: 34px;
}

.header-icons {
    display: flex;
    gap: 14px;

}

.header-icons a:hover {
    i {
        animation: translateY 0.8s infinite alternate;
        color: #f7f4f4;

    }
}

@keyframes translateY {
    from {
        transform: translateY(0) scale(1);
    }

    to {
        transform: translateY(-8px) scale(1.1);
    }
}

.header-button {
    border: 2px solid #d8a704;
    padding: 8px 24px;
    border-radius: 6px;
    color: rgba(255, 255, 255, 1);
    background-color: transparent;
    transition: 0.5s;
}

.header-button:hover {
    border: 1px solid #be9304f6;
    background-color: #be9304f6;
}

@media screen and (max-width: 760px) {
    .header-content {
        width: 100%;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        i {
            margin-top: 18px;
            font-size: 34px;
        }
    }

    .header-button {
        display: none;
    }
}

.logo-nome h1 {
    display: flex;
    justify-content: center;
    font-size: 45px;
    color: #fefbff;
    margin-top: 20px;
    text-align: center;
}

.logo-name2 {
    font-family: "Playwrite AU SA", cursive;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -5px; /* Ajuste para ficar bem próximo ao nome EVEFROTA */
    font-size: 25px;
    color: #fefbff;
}

.logo-nome {
    font-family: "Playwrite AU SA", cursive;
    display: flex;
    flex-direction: column;  /* Organiza o conteúdo na vertical */
    justify-content: center;
    align-items: center;  /* Alinha o conteúdo ao centro */
    text-align: center;  /* Garante que o texto do h1 fique centralizado */
    color: #fefbff;
}

.logo-nome h1 {
    font-size: 45px;
    line-height: 1.2;  /* Ajusta a distância entre as linhas */
    margin-top: 20px;
}

.logo-nome p {
    font-size: 25px;
    margin-top: -5px;  /* Aproxima o Beauty Studio de EVEFROTA */
}

.logo-nome strong {
    font-weight: bold;
}

@media (max-width: 768px) {
    /* Para dispositivos menores, ajusta o tamanho da fonte */
    .logo-nome h1 {
        font-size: 35px;
    }

    .logo-nome p {
        font-size: 20px;
    }
}

@media (min-width: 769px) {
    /* Para telas maiores, mantém o layout fixo */
    .logo-nome h1 {
        font-size: 45px;
    }

    .logo-nome p {
        font-size: 25px;
    }
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 8px;
}

.bg-home {
    position: relative;
}


.bg-home:before {
    background-image: linear-gradient(to bottom, #000000e5 0%, rgba(5, 5, 5, 0.37) 36.74%, rgba(8, 8, 10, 0.89) 69.61%, #101318cc 100%), url(./assets/fundo.jpeg);
    /* Substitua o caminho pela sua imagem */
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-size: cover;
    /* A imagem será redimensionada para cobrir o fundo sem distorcer */
    background-position: center center;
    /* Garante que a imagem ficará centralizada */
    background-repeat: no-repeat;
    /* Impede que a imagem se repita */
    opacity: 0.9;
}


.hero {
    color: rgba(255, 255, 255, 1);
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 14px;
}

h1 {
    text-align: center;
    line-height: 150%;
    max-width: 940px;
    font-size: 28px;
    font-family: "Domine", serif;
    font-weight: 400;
    margin-top: 20px;
}


p {
    text-align: center;
    margin: 14px 0;
}

.button-contact {
    padding: 14px 28px;
    color: #fffefcf6;
    background-color: #d6a609;
    border: 0;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    box-shadow: 0 8px 24px #d8a704;
    transition: transform 0.3s ease;
}

.button-contact:hover {
    animation: scaleButton 0.8s alternate infinite;
}

@keyframes scaleButton {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.07);
    }
}

@media screen and (max-width: 768px) {
    .hero {
        min-height: 60vh;


        h1 {
            font-size: 4px;
            padding: 0 14px;
            width: 100%;
        }

        p {
            font-size: 14px;
        }
    }
}

@media screen and (max-width: 480px) {
    .hero h1 {
        font-size: 20px;
    }
}

.about {
    background-color: rgb(16, 17, 19);
    overflow: hidden;
    color: rgba(255, 255, 255, 1);
}

.about-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 34px 14px 64px 14px;

    img {
        max-width: 570px;
    }
}

.about-content div {
    flex: 1;
}

.about-description h2 {

    font-size: 30px;
    margin-bottom: 24px;
    font-family: "Domine", serif;
}

.about-description p {
    font-size: 20px;
}

.about-description p {
    margin-bottom: 14px;
    line-height: 150%;
}

@media screen and (max-width: 768px) {
    .about-content {
        flex-direction: column;
    }
}

.services {
    background-color: rgba(255, 255, 255, 1);
    color: black;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 14px;
}

.services-content h2 {
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 14px;
}

.services h2 {
    font-size: 35px;
}


.services-content p {
    line-height: 150%;
    margin-bottom: 14px;
    text-align: center;
    max-width: 780px;
}

.carousel {
    overflow: hidden;
    width: 100%;
    position: relative;
    margin-top: 2rem;
  }
  
  .carousel-track {
    display: flex;
    width: calc(200% + 12px); /* Para permitir scroll infinito sem ultrapassar em telas pequenas */
    animation: scrollCarousel 20s linear infinite;
  }
  
  .carousel-track img {
    flex: 0 0 auto;
    width: 50vw;
    max-width: 200px;
    height: auto;
    margin-right: 12px;
    border-radius: 12px;
    object-fit: cover;
  }
  
  /* Animação */
  @keyframes scrollCarousel {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-100%);
    }
  }
  
  @media (max-width: 768px) {
    .carousel-track img {
      width: 50vw;
      max-width: 100%;
    }
  }
  
  @media (max-width: 480px) {
    .carousel-track img {
      width: 50vw;
      max-width: 100%;
    }
  }
  .galeria-texto {
    text-align: center;
    margin-bottom: 2rem;
  }
  
  
  
  .galeria-texto p {
    font-family: "Playwrite AU SA", cursive;
    font-size: 25px;
    color: #555;
    margin-top: 80px;
  }
  .carousel-track img {
    border-radius: 15px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .carousel-track img:hover {
    transform: scale(1.05);
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.15);
  }
  
  
  .galeria-fotos {
    margin-top: 50px;
    text-align: center;
  }
  
  .galeria-fotos h2 {
    margin-bottom: 20px;
    font-size: 1.8rem;
    color: #333;
  }
  
  .fotos-grid {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: nowrap;
    /* deixa responsivo caso a tela seja pequena */
  }
  
  .fotos-grid img {
    width: 100px;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  
  .fotos-grid img:hover {
    transform: scale(1.05);
  }
  
  /* 📱 Mobile first - telas menores que 768px */
  @media screen and (max-width: 768px) {
    .fotos-grid {
      justify-content: center;
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
      /* Colunas automáticas com largura mínima de 100px */
      gap: 10px;
      /* Espaçamento entre as fotos */
    }
  
    .fotos-grid img {
      width: 100%;
      height: 100%;
      /* As imagens vão preencher a altura do seu contêiner */
      object-fit: cover;
      /* Garante que as imagens preencham o espaço sem distorção */
      border-radius: 8px;
      transition: transform 0.3s ease;
    }
  
    .fotos-grid img:hover {
      transform: scale(1.05);
      /* Efeito de hover */
    }
  
    .galeria-fotos h2 {
      font-size: 1.8rem;
    }
  }
  
.services {
    padding: 60px 20px;
    background-color: #fff;
  }
  
  
  
  /* Seção principal de serviços */
.services {
  padding: 60px 20px;
  background-color: #fff;
}

.services-content h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  font-weight: bold;
  color: #333;
}

/* Estilo da seção de cortes */
.haircuts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

/* Cada card de serviço */
.haircut {
  flex: 1 1 240px;
  max-width: 260px;
  background-color: #f9f9f9;
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 8px 24px #d8a704;
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: transform 0.3s ease;
}

.haircut:hover {
  transform: translateY(-6px);
}

/* Conteúdo interno do card */
.haircut-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.haircut-info p {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  color: #222;
  line-height: 1.4;
  margin: 0;
}

.haircut-info button {
  padding: 10px 16px;
  background-color:#d8a704;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.haircut-info button:hover {
  background-color: #444;
}
  
@media screen and (max-width: 768px) {
    .haircuts {
        flex-direction: column;
    }

}

.testimonials {
    background-color: #f4f4f4;
    padding: 50px 50px;
  }
  
  .section-title {
    text-align: center;
    font-family: 'Merriweather', serif;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #333;
  }
  
  .testimonials-slider {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    overflow: hidden;
  }
  
  .testimonial {
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 24px #d8a704;
    padding: 20px;
    text-align: center;
    max-width: 300px;
    transition: transform 0.3s ease;
  }
  
  .testimonial:hover {
    transform: translateY(-10px);
  }
  
  .quote {
    font-style: italic;
    color: #555;
    margin-bottom: 30px;
    font-size: 1.1rem;
  }
  
  .testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .author-name {
    font-weight: bold;
    color: #333;
  }
  
  @media (max-width: 768px) {
    .testimonials-slider {
      flex-direction: column;
      align-items: center;
    }
  
    .testimonial {
      max-width: 100%;
      margin-bottom: 20px;
    }
  }
  
  .footer-address {
    text-align: center;
    font-size: 1rem;
    color: #fff;
    margin-bottom: 10px;
    font-family: 'Merriweather', serif;
  }
  .footer-address p {
    margin: 0;
  }
  

.footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 8%;
    gap: 2px;
    color: #fefbff;
    background-color: #000000;
}


.btn-whatsapp {
    position: fixed;
    bottom: 14px;
    right: 24px;
    z-index: 99;

    img {
        max-width: 54px;
        transition: transfomr 0.4s;
    }

    img:hover {
        transform: scale(1.1);
    }
}

.btn-whatsapp .tooltip-text {
    visibility: hidden;
    position: absolute;
    width: 120px;
    top: 8px;
    left: -144px;
    padding: 6px;
    border-radius: 8px;
    text-align: center;
    background-color: #000000;
    color: #fefbff;
    opacity: 0;
    transition: opacity 0.4s;

}

.btn-whatsapp:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}




/* Definir a animação */
@keyframes piscar {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}