* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html, body {
  background-color: #000;
  font-family: 'Poppins', sans-serif;
}

li {
  list-style: none;
  color: #fff;
}

a {
  text-decoration: none;
  font-size: 20px;
  color: inherit;
}

span {
  color: #3455AC;
}

.container {
  max-width: 1670px;
  width: 100%;
  padding: 0px 20px 0;
  margin: 0 auto;
}

.header-title {
  font-family: 'Poppins', sans-serif;
  color: #fff;
  size: 70px;
  padding-right: 250px;
}

.title {
  display: inline-block;
  border-bottom: 2px solid #3455AC;
  color: #fff;
  font-size: 48px;
  font-weight: 600;
}

.subtitle {
  color: #fff;
  font-size: 24px;
}

.header {
  display: flex;
  justify-content: space-between;
  margin-top: 2%;
  max-width: 100%;
}

.header-list {
  display: flex;
  align-items: center;
  gap: 25px;
}

.header-list .links li:hover {
  color: #3455ac;
}

.sociais {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

.container-first-carrossel {
  margin-top: 100px;
}

.first-carrossel img {
  border-radius: 8px;
  max-width: 100%;
  height: auto;
  margin-top: 50px;
  object-fit: cover;
}

.main-content {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-top: 100px;
  gap: 50px;
}

.main-content img {
  border-radius: 25px;
  max-width: 650px;
}

.main-content .text-main-content {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 50px;
}

.btn {
  padding: 15px 20px;
  background: #3455AC;
  border-radius: 100px;
  color: #fff;
  border: 0;
  font-size: 18px;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
}

.btn:hover {
  background-color: #4C7CC1;
}

.second-content {
  display: flex;
  margin-top: 150px;
  gap: 50px;
}

.second-content .text-second-content .promotion {
  font-size: 45px;
  font-weight: 600;
  color: #fff;
}

.text-second-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 100px;
}

.second-content img {
  max-width: 650px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 25px;
}

.carrossel {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 150px;
  flex-direction: column;
}

.my-carrossel {
  margin-top: 50px;
}

.carrossel-image-haircut {
  object-fit: cover;
  aspect-ratio: 1 / 1;
  border-radius: 25px;
}


.location {
  margin-top: 200px;
  display: flex;
  justify-content: space-around;
  gap: 50px;
}

.location-find {
  padding-top: 100px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.title-location {
  font-size: 36px;
  font-weight: 500;
  color: #fff;
}

.image-container {
  position: relative;
  display: inline-block; 
}

.image-container img {
  display: block; 
  max-width: 650px;
  aspect-ratio: 1/1;
  object-fit: cover;
  opacity: 0.6;
  border-radius: 25px;
  cursor: pointer;
}

.text-overlay {
  position: absolute;
  top: 50%; 
  left: 50%; 
  transform: translate(-50%, -50%); 
  color: white; 
  font-size: 35px; 
  font-weight: bold; 
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); 
}

.modal {
  display: none; 
  position: fixed;
  z-index: 1000; 
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8); 
}

.modal-content {
  position: relative;
  margin: 5% auto;
  padding-top: 10px;
  padding-bottom: 5px;
  width: 100%;
  max-width: 700px;
  background-color: white;
  border-radius: 10px;
  text-align: center;
}

.close {
  position: absolute;
  top: 10px;
  right: 20px;
  color: #aaa;
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: white;
}

.before-footer {
  margin-bottom: 150px;
}

.elfsight-app-b729d8c8-cbb2-4d57-aba9-1e8fb073b7e0 {
  padding-bottom: 150px;
}

.ButtonBase__Ellipsis-sc-p43e7i-5.dqiKFy {
  color: #fff !important;
}

.footer {
  background-color: #fff;
}

.footer .copyright {
  font-size: 12px;
  color: #000;
  text-align: center;
  padding: 10px 15px;
}

.footer .copyright a {
  font-size: 12px;
}

@media (max-width: 425px) {
    .container {
      max-width: 400px;
      width: 100%;
      padding: 30px 30px;
    }

  .main-content {
    margin-top: 60px;
    flex-wrap: wrap;
  }

  .main-content .text-main-content {
    gap: 20px;
  }

  .main-content img {
    width: 100%;
  }

  .header-list {
    display: none;
  }

  .sociais {
    gap: 10px;
  }

  .sociais img {
    width: 100%;
  }

  .header-title {
    font-size: 22px;
    padding-right: 0;
  }

  .title {
    font-size: 20px;
  }

  .subtitle {
    font-size: 16px;
  }

  .btn {
    padding: 10px 20px;
  }

  .btn a {
    font-size: 16px;
  }

  .first-carrossel img {
    margin-top: 20px;
  }

  .second-content {
    flex-wrap: wrap;
    margin-top: 100px;
  }

  .text-second-content {
    margin-top: 0;
    width: 100%;
  }

  .second-content img {
    width: 100%;
    order: 1;
  }

  .carrossel {
    margin-top: 100px;
  }

  .my-carrossel {
    margin-top: 30px;
  }

  .location {
    flex-wrap: wrap;
    margin-top: 60px;
  }

  .title-location {
    font-size: 20px;
  }

  .location img {
    width: 100%;
  }

  .location-find {
    padding-top: 0px;
  }
  
  .text-overlay {
    font-size: 20px;
  }

  .before-footer {
    margin-bottom: 50px;
  }

  #youtube-video {
    width: 95%;
  }

  .modal-content {
    max-width: 95%; /* Modal ocupará 95% da largura da tela */
    max-height: 75%; /* Modal ocupará no máximo 75% da altura da tela */
  }

  .text-overlay {
    font-size: 16px; /* Ajusta o tamanho da fonte para telas menores */
  }

  .close {
    font-size: 24px; /* Ajusta o tamanho do botão de fechar */
  }

  .div-btn .btn {
    width: 100%;
  }
}
