/* =========================================================
   Home Page (index.html)
   Hero carousel, feature sections, testimonials, Instagram feed
   ========================================================= */

/* ---------- Hero Carousel ---------- */

/* ---------- Icon Highlights ---------- */
.icon-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.icon-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.icon-card h5 {
  color: var(--purple-dark);
  font-family: "Poppins", sans-serif;
  font-weight: 700;
}

/* ---------- Special Treatments Banner ---------- */
.special-treatments {
    display: flex;
    height: 18rem;
    margin: 3rem 0;
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
  }

  .special-text-box {
    background-color: #4a3b57; /* roxo escuro */
    color: white;
    width: 300px;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
    flex-shrink: 0;
  }

  .special-text-box h2 {
    margin: 0;
    font-weight: 700;
    line-height: 1.1;
  }

  .special-text-box h2:first-child {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
  }

  .special-text-box h2:last-child {
    font-size: 2rem;
  }

  .special-image-container {
    flex-grow: 1;
    overflow: hidden;
  }

  .special-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* Responsividade simples */
  @media (max-width: 768px) {
    .special-treatments {
      flex-direction: column;
      height: auto;
    }
    .special-text-box {
      width: 100%;
      padding: 2rem 1rem;
    }
    .special-image-container {
      height: 200px;
    }
  }

/* ---------- Enhance Beauty Banner ---------- */

/* ---------- Services & Pricing ---------- */

.services-pricing{
      align-items: center;
  justify-content: center;
}
.service-card-simple {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
}

.service-img {
    width: 100%;
    max-width: 300px; /* Limita a largura máxima */
    height: auto;
    border-radius: 15px;
    margin: 0 auto 1rem auto; /* Centraliza a imagem e adiciona margem inferior */
    display: block;
}
.service-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #4a4a4a;
    margin-bottom: 0.5rem;
}

.price {
       font-family: "Rische", sans-serif;
    color: #6b8b7a;
    font-weight: 600;
    font-size: 2rem;
}

.price .currency {
      font-family: "Rische", sans-serif;
    color: #6b8b7a;
    font-size: 1.5rem;
    margin-right: 0.2rem;
    vertical-align: top;
}

.price .amount {
      font-family: "Rische", sans-serif;
    color: #6b8b7a;
    font-size: 3rem;
    line-height: 1;
}

.price .cents {
      font-family: "Rische", sans-serif;
    color: #6b8b7a;
    font-size: 1.5rem;
    vertical-align: top;
}

/* ---------- Differentials ---------- */
.differential-card {
  transition: transform 0.3s ease;
}

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

.differentials h4 {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}

.differentials p {
  color: var(--purple-dark);
}

.differential-icon {
  width: 80px;
  height: 80px;
  background-color: var(--purple-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.img-prancheta {
  width: 10%;
  height: 10%;
}

/* ---------- Instagram Feed ---------- */

.instagram-feed-header h2 {
  font-family: "Rische", sans-serif;
  font-weight: 500;
  color: var(--purple-primary);
}

.btn-instagram {
  background-color: var(--purple-primary);
  color: var(--white);
  padding: 12px 0px;
  border-radius: 25px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.btn-instagram:hover {
  background-color: var(--purple-dark);
}

.logo-footer {
  margin-top: 50px;
  display: flex;
  justify-content: center;
}

.footer-logo-svg {
  width: 300px;
  height: auto;
  opacity: 0.9;
}


/* ---------- Responsive Behaviour ---------- */


@media (max-width: 767.98px) {
  .instagram-feed-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .instagram-feed-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 992px) {
  .instagram-feed-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
/* Remove qualquer overflow forçado */
  html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }