* {
  font-family: "Quicksand", sans-serif;;
}

.icon {
  height: 30px;
}

.logo-img {
  height: 30px;
  margin-right: 8px;
}

.hero-section-img {
  height: 85vh;
  width: 100%;
  object-fit: cover;
  filter: brightness(0.5);
}
.hero-section-img2 {
  height: 82vh;
  width: 100%;
  object-fit: cover;
}

.shop_by_category, .beauty-section {
  background-color: #f0fffb;
}

.card {
  transition: all 0.5s;
}

.card:hover {
  transform: scale(1.05);
}

.sticky-top {
  top: 50px; /* ajusta conforme altura do seu navbar */
}

.mission-section {
  position: relative;
  color: #333;
  background: url("../img/mission-section.png") no-repeat center center;
  background-size: cover;
  height: 50vh;    
}

.mission-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.7);
}

.mission-section .container {
  position: relative;
  z-index: 1;
}

.impact-section {
  background-color: #e8fbe8;
}

.faq {
  max-width: 700px;
  margin: 2rem auto;
}

.faq h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  font-weight: bold;
}

.faq details {
  border-radius: 8px;
  margin-bottom: 10px;
  padding: 0.8rem 1rem;
  transition: all 0.3s ease;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  position: relative;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none; /* remove o ícone padrão do navegador */
}

.faq summary::after {
  content: "▼";
  font-size: 0.9rem;
  position: absolute;
  right: 0;
  transition: transform 0.3s ease;
}

details[open] summary::after {
  transform: rotate(-180deg);
}

.faq p {
  margin-top: 0.5rem;
  line-height: 1.4;
  color: #555;
}

.input-qtd {
  width: 80px;
}

.cart-section {
  min-height: 65dvh;
}

.five-stars {
  width: 40%
}

.four-stars {
  width: 30%
}

.three-stars {
  width: 15%
}

.two-stars {
  width: 10%
}

.one-star {
  width: 5%
}


.item-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.item-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  filter: brightness(0.8);
}

.fashion-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 15px;
  color: #fff;
  text-align: left;
  border-radius: 0 0 10px 10px;
}

.fashion-overlay h5 {
  margin: 0;
  font-size: 2rem;
}

.fashion-overlay p {
  margin: 0;
  font-size: 1.1rem;
}