* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: 0;
}

header {
  width: 100%;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

i {
  color: #FFF;
}

.header-icons {
  display: flex;
  gap: 14px;
}

.header-icons a:hover i {
  animation: translateY 0.8s infinite alternate;
  color: #d34040;
}

@keyframes translateY {
  from {
    transform: translateY(0) scale(1);
  }
  to {
    transform: translateY(-8px) scale(1.1);
  }
}
.header-button {
  border: 1px solid #FFF;
  padding: 8px 24px;
  border-radius: 4px;
  color: #FFF;
  background-color: transparent;
  transition: background-color 0.8s;
}

.header-button:hover {
  border: 1px solid #d34040;
  background-color: #d34040;
}

.header-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
}

@media screen and (max-width: 768px) {
  .header-content {
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .header-content i {
    margin-top: 16px;
    font-size: 34px;
  }
  .header-logo img {
    width: 160px;
    margin-top: 46px;
  }
  .header-button {
    display: none;
  }
}
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 8px;
}

.bg-home {
  position: relative;
}

.bg-home::before {
  content: "";
  display: block;
  position: absolute;
  background-image: linear-gradient(to bottom, rgba(6, 18, 30, 0.1), #06121e), url("../assets/fundo.jpeg");
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 0;
  opacity: 0.9;
}

.hero {
  color: #FFF;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 14px;
}
.hero h1 {
  text-align: center;
  line-height: 150%;
  max-width: 940px;
  font-size: 46px;
}
.hero p {
  text-align: center;
  margin: 14px 0;
}

.button-contact {
  padding: 14px 28px;
  color: #FFF;
  background-color: #d94140;
  border: 0;
  font-size: 18px;
  font-weight: 600;
  margin: 14px 0;
}

.button-pulse {
  padding: 16px 32px;
  color: #FFF;
  background-color: #e9a209;
  border: none;
  font-size: 20px;
  font-weight: 600;
  border-radius: 12px;
  animation: pulse 1.5s ease-in-out infinite;
  cursor: pointer;
  transition: transform 0.2s;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(233, 160, 9, 0.7);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 0 0 14px rgba(233, 160, 9, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(233, 160, 9, 0);
  }
}

@media screen and (max-width: 768px) {
  .button-pulse {
    display: block;
    margin: 24px auto;
    text-align: center;
  }
}


.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;
  }
  .hero h1 {
    font-size: 34px;
    padding: 0 14px;
    width: 100%;
  }
  .hero p {
    font-size: 14px;
  }
}
@media screen and (max-width: 480px) {
  .hero h1 {
    font-size: 24px;
  }
}
.about {
  background-color: #176d48;
  overflow: hidden;
  color: #FFF;
}

.about-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 34px 14px 64px 14px;
}
.about-content img {
  max-width: 570px;
}

.about-content div {
  flex: 1;
}

.about-description h2 {
  font-size: 38px;
  margin-bottom: 24px;
}
.about-description p {
  margin-bottom: 14px;
  line-height: 150%;
}

@media screen and (max-width: 768px) {
  .about-content {
    flex-direction: column;
  }
}
.services {
  background-color: #FFF;
  color: #232224;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 54px 14px;
}

.services-content h2 {
  text-transform: uppercase;
  text-align: center;
  font-size: 38px;
  margin-bottom: 14px;
}

.services-content p {
  line-height: 150%;
  margin-bottom: 14px;
  text-align: center;
  max-width: 780px;
}

.haircuts {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding: 0 44px 34px 44px;
}

.haircut {
  flex: 1;
  display: flex;
  flex-direction: column;
  background-color: #FFF;
  border-radius: 8px;
  box-shadow: 0px -1px 17px -4px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}
.haircut img {
  width: 100%;
  max-width: 354px;
  transition: transform 0.2s;
}

.haircut img:hover {
  transform: scale(1.2);
  z-index: 1;
}

.haircut-info {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 14px;
  background-color: #FFF;
  z-index: 99;
}

.haircut-info button {
  color: #FFF;
  background-color: #d94140;
  padding: 4px 8px;
  border-radius: 4px;
  border: 0;
  cursor: default;
}

@media screen and (max-width: 768px) {
  .haircuts {
    flex-direction: column;
  }
  .haircut img {
    max-width: 740px;
  }
}

.haircut-info {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
  }

  .haircut-info .inside {
    font-size: 13px;
    padding: 6px 10px;
    width: 100%;
    max-width: 120px;
  }

  .haircut-info a {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  
.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 54px 0;
  gap: 24px;
  color: #FFF;
}

.footer-icons {
  display: flex;
  gap: 8px;
  color: #FFF;
}

.btn-whatsapp {
  position: fixed;
  bottom: 14px;
  right: 24px;
  z-index: 99;
}
.btn-whatsapp img {
  max-width: 200px;
  transition: transform 0.4s;
}
.btn-whatsapp 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: #232224;
  color: #FFF;
  opacity: 0;
  transition: opacity 0.4s;
}

.btn-whatsapp:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}

/* RESPONSIVO: Celulares pequenos */
@media (max-width: 480px) {
  .services-content h2 {
    font-size: 22px;
  }

  .services-content p {
    font-size: 13px;
  }

  .haircut-info button {
    font-size: 13px;
    padding: 6px 10px;
  }
}

@media screen and (max-width: 768px) {
  .btn-whatsapp img {
    max-width: 150px;
  }
}
body {
  font-family: "Sora", sans-serif;
  width: 100%;
  height: 100vh;
  position: relative;
  background-color: #176d48;
}

button {
  font-family: "Sora", sans-serif;
  cursor: pointer;
}

svg {
  width: 100%;
}

img {
  width: 100%;
}

a {
  cursor: pointer;
  text-decoration: none;
}/*# sourceMappingURL=style.css.map */

 
.card{
  width: 320px;
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
  /*overflow:hidden;*/
  border: 8px solid #fff;
  position: relative;
}

.card-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

.card-body{
  width: 100%;
  height: 100%;
  top: 0;
  right: -100%;
  position: absolute;
  background: #1f3d4738;
  backdrop-filter: blur(5px);
  border-radius: 15px;
  color: #fff;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: 2s;
}

.card:hover .card-body{
  right: 0;

}

.card-title{
text-transform: uppercase;
font-size: 50px;
font-weight: 500;
}

.card-sub-title{
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 300;
}

.card-info{
  font-size: 16px;
  line-height: 25px;
  margin: 40px 0;
  font-weight: 400;
}

.card-btn{
  color: #1f3d47;
  background: #8fabba;
  padding: 10px 20px;
  width: 120px;
  border-radius: 5px;
  text-transform: capitalize; 
  border: none;
  outline: none;
  font-weight: 500;
  cursor: pointer;
}

/*FORM*/
form {
  background: #f47f0a;
  border-radius: 5px;
  box-shadow: 0 1px 2px #ccc;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 10px;
  padding: 20px;
}

input, textarea, button {
  background-color: #f7f7f7;
  border: none;
  border-radius: 5px;
  color: #777;
  font-size: 18px;
  outline: none;
  padding: 15px;
  width: 100%;
}

button {
  color: #777;
  cursor: pointer;
  font-weight: bold;
}


/*NEWS*/

.banner-section {
  background-color: #FFF;
  color: #232224;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 54px 14px;
}

.banner-content h2 {
  text-transform: uppercase;
  text-align: center;
  font-size: 38px;
  margin-bottom: 14px;
}

.banner-content p {
  line-height: 150%;
  margin-bottom: 14px;
  text-align: center;
  max-width: 780px;
}

.banner-item {
  max-width: 800px;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0px -1px 17px -4px rgba(0, 0, 0, 0.45);
}

.banner-item img {
  width: 100%;
  vertical-align: middle;
}

.banner-item-info {
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.8);
}

.banner-item-info strong {
  font-size: 24px;
  display: block;
  margin-bottom: 10px;
}

.banner-button {
  color: #FFF;
  background-color: #233f4f;
  padding: 10px 20px;
  border-radius: 4px;
  border: 0;
  cursor: pointer;
  font-size: 18px;
  transition: background-color 0.3s ease;
}

.banner-button:hover {
  background-color: #cfb271;
}

/*NEVE*/

.snowflake {
  color: #fff;
  font-size: 1em;
  font-family: Arial;
  text-shadow: 0 0 1px #000;
  position: fixed;
  top: -10%;
  z-index: 9999;
  user-select: none;
  cursor: default;
  animation-name: snowflakes-fall, snowflakes-shake;
  animation-duration: 10s, 3s;
  animation-timing-function: linear, ease-in-out;
  animation-iteration-count: infinite, infinite;
  animation-play-state: running, running;
}

@keyframes snowflakes-fall {
  0% {
    top: -10%;
  }
  100% {
    top: 100%;
  }
}

@keyframes snowflakes-shake {
  0% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(80px);
  }
  100% {
    transform: translateX(0px);
  }
}

@media (max-width: 768px) {
  .resp-center {
    display: block;
    text-align: center;
    margin: 0 auto;
    font-size: 28px; /* ou outro valor menor que os 40px do desktop */
  }
}

.frase-impacto {
  font-size: 40px;
}

/* Responsivo para telas menores que 768px */
@media (max-width: 768px) {
  .frase-impacto {
    font-size: 24px;
    text-align: center;
    display: block;
  }
}

.snowflake:nth-of-type(1) { left: 10%; animation-delay: 1s, 1s; }
.snowflake:nth-of-type(2) { left: 20%; animation-delay: 6s, 0.5s; }
.snowflake:nth-of-type(3) { left: 30%; animation-delay: 4s, 2s; }
.snowflake:nth-of-type(4) { left: 40%; animation-delay: 2s, 2s; }
.snowflake:nth-of-type(5) { left: 50%; animation-delay: 8s, 3s; }
.snowflake:nth-of-type(6) { left: 60%; animation-delay: 6s, 2s; }
.snowflake:nth-of-type(7) { left: 70%; animation-delay: 2.5s, 1s; }
.snowflake:nth-of-type(8) { left: 80%; animation-delay: 1s, 0s; }
.snowflake:nth-of-type(9) { left: 90%; animation-delay: 3s, 1.5s; }

.apoie-section {
  display: flex;
  justify-content: center;
  padding: 40px 14px;
  background-color: #fff;
}

.apoie-container {
  position: relative;
  width: 90vw;
  max-width: 1200px;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.apoie-img {
  width: 100%;
  height: 60vh;
  object-fit: cover;
  display: block;
}

.apoie-conteudo {
  padding: 40px 20px;
  text-align: center;
  background-color: #fff;
}

/* Garante que o botão pulse mesmo no mobile */
.button-pulse {
  padding: 16px 32px;
  font-size: 20px;
  background-color: #e9a209;
  border: none;
  border-radius: 12px;
  color: white;
  font-weight: bold;
  animation: pulse 1.5s ease-in-out infinite;
  cursor: pointer;
  display: inline-block;
  transition: transform 0.2s;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(233, 160, 9, 0.7);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 0 0 14px rgba(233, 160, 9, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(233, 160, 9, 0);
  }
}

/* Responsivo */
@media (max-width: 768px) {
  .apoie-img {
    height: 40vh;
  }

  .button-pulse {
    font-size: 16px;
    padding: 12px 24px;
    margin: 0 auto;
  }

  .apoie-conteudo {
    padding: 24px 14px;
  }
}

/*SPAM*/

.popup {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 16px;
}

.popup-content {
  background: white;
  padding: 16px;
  border-radius: 10px;
  width: 100%;
  max-width: 350px; /* menor que antes */
  text-align: center;
  position: relative;
  box-shadow: 0 0 12px rgba(0,0,0,0.25);
}

.popup-content h2 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.popup-content p {
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.popup-content img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
}

.close-btn {
  position: absolute;
  top: 8px; right: 12px;
  font-size: 1.3rem;
  cursor: pointer;
  color: #333;
}

@media (max-width: 480px) {
  .popup-content {
    padding: 12px;
    max-width: 90%;
  }

  .popup-content h2 {
    font-size: 1.1rem;
  }

  .popup-content p {
    font-size: 0.9rem;
  }

  .close-btn {
    font-size: 1.2rem;
  }
}

/* Seção extra para o carrossel de logos */
.logos-section {
  background-color: #176d48;
  padding: 80px 0; /* aumentou de 60px para 80px */
  margin-top: 40px;
}

/* Carrossel base */
.logos {
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}
.logos-slide {
  display: inline-block;
  animation: slide 35s linear infinite;
}

.logos-slide img {
  height: 80px; /* antes era 50px */
  width: auto;
  margin: 0 30px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Efeito de gradiente nas bordas */
.logos::before,
.logos::after {
  content: "";
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
}

.logos::before {
  left: 0;
  background: linear-gradient(to left, rgba(23, 109, 72, 0), #176d48);
}

.logos::after {
  right: 0;
  background: linear-gradient(to right, rgba(23, 109, 72, 0), #176d48);
}

/* Animação do slide */
@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

/*DILL E LEO*/



.contact-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.contact {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #176d48;
  padding: 10px 15px;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.profile-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #25d366; /* Verde WhatsApp */
  cursor: pointer;
}

.info h3 {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
}

.info p {
  margin: 0;
  font-size: 14px;
  color: white;
}
