/* *********************************** */
/* HEADER */
/* *********************************** */

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fdf3f3;
  border-top: 10px solid #c2255c;

  height: 12.8rem;
  padding: 0 9.6rem;
}

.logo {
  height: 9.6rem;
}

/* *********************************** */
/* SOCIAL LINKS */
/* *********************************** */

.social-links {
  display: flex;
  gap: 2.4rem;
  list-style: none;
}

.social-link:link,
.social-link:visited {
  text-decoration: none;
  font-size: 1.6rem;
  color: #c2255c;
}

.social-link:hover,
.social-link:active {
  color: #c25555;
}

.social-icon {
  height: 3.2rem;
  width: 3.2rem;
}

/* *********************************** */
/* HERO SECTION */
/* *********************************** */

.section-hero {
  background-color: #fdf3f3;
  padding: 4.8rem 0 9.6rem 0;
}

.hero {
  max-width: 130rem;
  margin: 0 auto;
  padding: 0 3.2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.8rem;
  align-items: center;
}

.hero-description,
.hero-discount-info {
  font-size: 2.4rem;
  line-height: 1.6;
  margin-bottom: 3.2rem;
}

.hero-description {
  color: #495057;
}

.hero-discount-info {
  padding: 1.2rem;
  color: #a61e4d;
}

.hero-img-box {
  display: flex;
  justify-content: center;
}

.hero-img {
  width: 75%;
  border-radius: 16px;
}

/* *********************************** */
/* QUE INCLUYE SECTION */
/* *********************************** */

.product-details {
  background-color: #fff;
  padding: 9.6rem 0;
}

.product-description {
  max-width: 60rem;
  margin: 0 auto 4.8rem;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
}

.product-mockup {
  width: 60%;
  margin-bottom: 3.2rem;
}

.product-content {
  max-width: 110rem;
  padding: 0 3.2rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4.8rem;
  margin-bottom: 6.4rem;
}

.product-feature {
  box-shadow: 0 20px 30px 0 rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  padding: 3.2rem;
  transition: all 0.2s;
}

.product-feature:hover {
  transform: translateY(-1rem);
}

.feature-icon {
  width: 3.2rem;
  height: 3.2rem;
  margin-bottom: 2.4rem;
}

.feature-title {
  margin-bottom: 1.6rem;
  font-size: 2.4rem;
  font-weight: bold;
}

.feature-text {
  font-size: 1.8rem;
  line-height: 1.7;
  margin-bottom: 2.4rem;
  color: #495057;
}

.feature-price {
  display: block;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.7;
  text-align: center;
  border-radius: 50px;
  padding: 1.2rem 0;
  text-decoration: line-through;
}

.foundations {
  background-color: #fae6e6;
  color: #c2255c;
  grid-column: span 2;
}
.weekly--menu {
  background-color: #fffcec;
  color: #d9480f;
  grid-column: span 2;
}
.breakfast--recipes {
  background-color: #f5f1ff;
  color: #6a45c7;
  grid-column: span 2;
}
.snacks--recipes {
  background-color: #e6f4ff;
  color: #016ec0;
  grid-column: span 3;
  margin: 0 0 0 18.5rem;
}
.healthy--recipes {
  background-color: #f6fff7;
  color: #008c13;
  grid-column: span 3;
  margin: 0 18.5rem 0 0;
}

.btn-center {
  display: flex;
  justify-content: center;
  padding-bottom: 3.2rem;
}

/* *********************************** */
/* BONUS SECTION */
/* *********************************** */

.bonus-section {
  background-color: #fff;
  padding: 0 0 9.6rem;
}

.bonuses {
  max-width: 90rem;
  margin: 0 auto;
  margin-bottom: 4.8rem;
}

.bonus-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15rem;
}

.bonus-detail {
  box-shadow: 0 20px 30px 0 rgba(0, 0, 0, 0.07);
  border-radius: 2.4rem;
  background-color: #fce8e0;
  transition: all 0.2s;
}

.bonus-detail:hover {
  transform: translateY(-1rem);
}

.bonus-detail img {
  border-radius: 24px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  width: 100%;
}

.bonus-box {
  padding: 2.4rem;
}

.bonus-box h3 {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 1.6rem;
}

.bonus-description {
  font-size: 1.8rem;
  line-height: 1.4;
  color: #495057;
}

.bonus-price {
  display: block;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.7;
  text-align: center;
  border-radius: 50px;
  padding: 1.2rem 0;
  text-decoration: line-through;
}

.free-price {
  text-decoration: none;
  border: 2px dotted;
}

/* *********************************** */
/* WARRANTY SECTION */
/* *********************************** */

.warranty-section {
  background-color: #fce8e0;
  padding: 9.6rem 0;
}

.warranty {
  max-width: 90rem;
  margin: 0 auto;
  /* margin-bottom: 4.8rem; */
}

.warranty-information {
  display: grid;
  grid-template-columns: 1fr;
  justify-content: center;
}

.warranty-image {
  justify-self: center;
  width: 40%;
  margin-bottom: 3.2rem;
}

.warranty-description {
  text-align: center;
  font-size: 2.4rem;
  line-height: 1.6;
}

/* *********************************** */
/* FINAL PRICE SECTION */
/* *********************************** */

.final-price-section {
  background-color: #fff;
  padding: 9.6rem 0;
}

.final-price {
  margin: 0 auto;
  margin-bottom: 4.8rem;
}

.old-price {
  font-size: 3rem;
  text-align: center;
  text-decoration: line-through;
  margin-bottom: 2.4rem;
  color: #495057;
}

.new-price {
  font-size: 3.6rem;
  text-align: center;
  margin-bottom: 2.4rem;
}

.limited-discount {
  display: flex;
  justify-self: center;
  max-width: 60rem;
  margin: 0 auto;
  padding: 2.4rem;
  font-size: 3rem;
}

/* *********************************** */
/* FOOTER SECTION */
/* *********************************** */

.footer {
  background-color: #fdf3f3;
  padding: 8rem 0;
  border-top: 1px solid #eee;
}

.container-footer {
  max-width: 120rem;
  padding: 0 3.2rem;
  margin: 0 auto;
}

.footer-images {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer img {
  max-width: 10rem;
}

.footer-text {
  font-size: 1.4rem;
}
