* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Helvetica Neue", Arial, sans-serif;
}

/* FUNDO GLOBAL */
html, body {
  background: #fdf9f8;
  color: #2b2b2b;
}

/* HEADER FIXO PREMIUM */
.header-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 70px;

  background: linear-gradient(135deg, #f3d6cf, #d4a373);
  display: flex;
  justify-content: center;
  align-items: center;

  z-index: 1000;
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}

.header-fixed img {
  max-height: 62px;
  width: auto;
}

/* COMPENSA HEADER FIXO */
.container {
  padding-top: 70px;
}

}

/* CONTAINER */
.container {
  max-width: 480px;
  margin: 0 auto;
  padding: 16px;
  padding-top: 96px; /* 40 (status) + 70 (header) + margem */
  background: #fdf9f8;
}
  
  /* CARROSSEL */
  .carousel {
    overflow: hidden;
    margin-bottom: 14px;
  }
  
  .carousel-track {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
  }
  
  .carousel-track::-webkit-scrollbar {
    display: none;
  }
  
  .carousel-track img {
    width: 82%;
    flex-shrink: 0;
    border-radius: 16px;
    scroll-snap-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  }
  
  /* BOTÃO */
  .cta-top {
    margin: 18px 0 22px;
  }
  
  .btn-whatsapp {
    display: block;
    background: linear-gradient(135deg, #00ff1e, #27a600);
    color: #fff;
    text-align: center;
    padding: 16px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 14px;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(212,163,115,0.45);
  }
  
/* TEXTO CENTRALIZADO */
.hero h1 {
  font-size: 16px;
  margin-bottom: 6px;
  font-weight: 600;
  text-align: center;
}

.hero p {
  font-size: 13px;
  color: #6b5f5b;
  margin-bottom: 16px;
  text-align: center;
}

.services p {
  font-size: 13px;
  margin-bottom: 6px;
  color: #3f3a38;
  text-align: center;
}





/* GARANTE SOBREPOSIÇÃO */
.carousel {
  position: relative;
}

/* GIF PROMO */
.promo-gif {
  position: absolute;
  top: 10px;
  right: 10px; /* pode trocar pra left se quiser */
  z-index: 20;
}

.promo-gif img {
  width: 130px;   /* tamanho pequeno */
  height: auto;
}

/* DEPOIMENTOS */
.testimonials {
  margin: 28px 0;
  text-align: center;
}

.testimonials h2 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #2b2b2b;
}

.testimonials-carousel {
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  padding-bottom: 4px;
}

.testimonials-track::-webkit-scrollbar {
  display: none;
}

.testimonials-track img {
  width: 75%;
  flex-shrink: 0;
  scroll-snap-align: center;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

/* LOCAL DE ATENDIMENTO */
.location {
  margin: 24px 0 32px;
  text-align: center;
}

.location h2 {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #2b2b2b;
}

.location-carousel {
  overflow: hidden;
}

.location-track {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}

.location-track::-webkit-scrollbar {
  display: none;
}

.location-track img {
  width: 60%;               /* MENOR que os outros */
  flex-shrink: 0;
  scroll-snap-align: center;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

/* TIPOS DE UNHAS */
.nail-types {
  margin: 28px 0;
  text-align: center;
}

.nail-types h2 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #2b2b2b;
}

.nail-types-intro {
  font-size: 13px;
  color: #6b5f5b;
  margin-bottom: 16px;
}

.nail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}

.nail-item img {
  width: 100%;
  height: 180px;          /* altura fixa */
  object-fit: cover;     /* corta sem distorcer */
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.nail-item span {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #3f3a38;
}

.nail-types-desc {
  font-size: 13px;
  color: #6b5f5b;
  line-height: 1.4;
}

.footer {
  text-align: center;
  padding: 36px 20px 28px;
  background: linear-gradient(135deg, #f7e1db, #e2bfa6);
  border-radius: 24px 24px 0 0;
}

.footer h3 {
  font-size: 17px;
  font-weight: 600;
  color: #2b2b2b;
  margin-bottom: 10px;
}

.footer p {
  font-size: 13px;
  line-height: 1.6;
  color: #5c504c;
  max-width: 360px;
  margin: 0 auto 12px;
}

.footer-location {
  display: block;
  font-size: 12px;
  color: #6b5f5b;
  margin-bottom: 16px;
}

.footer small {
  font-size: 11px;
  color: #6b5f5b;
  opacity: 0.7;
}


