.header {
  padding: 0 10%;
  background-color: var(--main-color);
  height: 14vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.header img {
  height: 40%;
  flex-grow: 1;
}

.header a {
  display: block;
}
.header a svg {
  height: 4.5rem;
  transition: all 500ms;
  display: block;
}

.header a svg:hover {
  transform: scale(1.05);
}
/* ✨ Page Title Section ✨ */

.page-title {
  padding: 10%;
  line-height: 1.5;
  background: url('../assets/title-section-background-4.jpg') no-repeat center;
  background-size: cover;
  color: white;
}

.page-title h2 {
  font-weight: 400;
  font-size: var(--p);
}

.page-title button {
  margin-left: 0;
}
/* END OF ✨ Page Title Section ✨ */

.section-introduction-caracteristicas {
  background-color: var(--black);
  text-align: center;
  line-height: 1.4;
}

.section-introduction-caracteristicas p {
  font-size: var(--p);
  margin: 2rem 0;
}

.lista-vantagens {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  color: white;
  font-size: clamp(1rem, 3.5vw, 2rem);
  text-align: left;
  padding: 5%;
  border-radius: 2rem;
  list-style: none;
}

.item-vantagens {
  align-items: flex-start;
  display: flex;
  gap: 1rem;
}

.section-introduction-caracteristicas img {
  width: 2rem;
  height: 2rem;
}

/* 🥩 Product Section 🥩 */
.product-section {
  background-color: var(--black);
  color: var(--main-color);
}

.float-right-image {
  max-height: 90%;
  margin: 0 0 0 1.5rem;
  float: right;
  max-width: 20rem;
  max-height: fit-content;
}

.product-section h2 {
  font-size: 3rem;
  text-align: center;
}

.product-section h2::after {
  content: '';
  display: block;
  background-color: var(--main-color);
  width: 70%;
  height: 5px;
  margin: 0 auto;
}

.product-wrapper-float {
  margin: 2.5rem 0;
}

.product-section p {
  font-size: var(--p);
  font-weight: 500;
  color: white;
  line-height: 1.5;
}

.product-image {
  max-width: 80%;
  margin: 2.5rem auto;
}

.font-size-alternated p {
  text-align: center;
  font-size: var(--p);
}

/* 🥩 Product Section 🥩 */

/* Product Advantages Section */

.advantages-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--black);
}

.advantages-list h2 {
  margin-bottom: 5%;
}

.advantages-list ul {
  list-style: square;
  font-size: var(--p);
  width: 90%;
}

.advantages-list ul li {
  margin: 2rem 0;
}

/* Product Advantages Section */

/* 🖼️ Carrousel Section 🖼️ */

.carrousel-section {
  background-color: var(--black);
  text-align: center;
}

.carrousel-section h2,
.carrousel-section h3 {
  margin-bottom: 3rem;
}

.carrousel-section h3 {
  font-weight: 500;
}

/* 🖼️ Carrousel ITSELF 🖼️ */
.swiper {
  width: 100%;
}

.swiper-slide img {
  width: 100%;
}

.swiper-button-prev,
.swiper-button-next {
  color: rgba(255, 255, 255, 1);
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
  color: rgba(255, 255, 255, 0.5);
}

.swiper-pagination-bullet-active {
  background: #ffff;
}

/* END OF 🖼️ Carrousel ITSELF 🖼️ */

/* END OF 🖼️ Carrousel Section 🖼️ */

/* Comparative Section */
.comparative-section-before {
  background-color: var(--black);
}

.comparative-section-after {
  background-color: var(--main-color-hover);
}

.underline {
  text-decoration: underline;
}

.comparative-section-before h2,
.comparative-section-after h2 {
  text-align: center;
  line-height: 1.6;
}

.comparative-section-before ul li,
.comparative-section-after ul li {
  font-size: var(--p);
  margin: 1rem 0;
}

/* END OF Comparative Section */

/* About Section */
.section-introduction {
  background-color: var(--main-color);
}

.section-introduction img {
  max-width: 40%;
  margin: 0 auto 10% auto;
  display: block;
}

.section-introduction p {
  font-size: var(--p);
  text-align: center;
}

/* END OF About Section */
/* Bio Section */

.bio-section {
  background-color: var(--grey);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}

.bio-section h2 {
  text-align: center;
  font-size: var(--big-title);
}

.bio-wrapper {
  background: var(--black);
  padding: 7%;
  border-radius: 5px;
}

.bio-pic {
  width: 16rem;
  margin: 0 auto;
  margin-bottom: 1.5rem;
  display: block;
  border-radius: 50%;
  border: var(--main-color) 3px solid;
}

.bio {
  font-size: clamp(1rem, 3vw, 1.8rem);
  text-align: justify;
}

/* FAQ SECTION */

.faq-section {
  background-color: var(--offwhite);
}
.faq-section h2 {
  font-size: var(--big-title);
  color: var(--main-color);
}

details {
  color: var(--black);
  font-size: var(--p);
  margin: 2rem 0;
}

summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  transition: all 1s ease;
}

summary::-webkit-details-marker {
  display: none;
}

summary:after {
  content: '\002B';
  color: var(--main-color);
  font-weight: 600;
  cursor: pointer;
}

details[open] summary:after {
  content: '\00D7';
  color: var(--main-color);
  font-weight: 600;
  cursor: pointer;
}

details[open] div {
  margin: 1rem 0;
}
/* Footer */

.footer {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: var(--black);
  font-size: clamp(1rem, 3vw, 1.8rem);
}

.footer-logo {
  width: 20%;
}

.social-icons {
  display: flex;
  gap: 2rem;
}

.social-icons * {
  max-height: 2.5rem;
  transition: transform 300ms ease-in-out;
}

.social-icons *:hover {
  cursor: pointer;
  transform: scale(1.03);
}

@media (min-width: 767px) {
  .desktop-nav {
    display: block;
  }
  .hamburguer {
    display: none;
  }
  .mobile-nav {
    display: none;
  }
  .page-title {
    padding: 4% 20%;
  }
  .section {
    padding: 3% 25%;
  }
  .lista-vantagens {
    margin: 0 auto;
  }
  .product-image {
    max-width: 55%;
  }
  .main-btn {
    width: 60%;
    font-size: 1.7rem;
  }
  .anchor-main-btn {
    width: 60%;
    font-size: 1.7rem;
  }
  .dry-aged-button {
    margin: 2rem 0;
  }
  .swiper {
    max-width: 70%;
  }
  .bio-wrapper {
    padding: 5%;
  }
  .form-section button {
    width: 60%;
  }
}
