/* ------------------------------------------------------------
   Variables
   ------------------------------------------------------------ */
/* ------------------------------------------------------------
   Mixins & placeholders
   ------------------------------------------------------------ */
.testimonies .testimonies_list li, .product .product_list li, .pain .pain_list li {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
}

/* ------------------------------------------------------------
   Font face + global resets
   ------------------------------------------------------------ */
@font-face {
  font-family: "helloparis";
  src: url("/fonts/helloparis.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
* {
  font-family: "Karla", sans-serif;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-variant-ligatures: none;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -webkit-font-variant-ligatures: none;
  -webkit-text-size-adjust: 100%;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
ul li {
  padding: 0;
  margin: 0;
}

/* ------------------------------------------------------------
   Layout containers (shared)
   ------------------------------------------------------------ */
.container-shared, .product_container,
.solution_container,
.pain_container,
.hero_container,
.faqs_container,
.testimonies_container,
.cta_container,
.lead_magnet_container {
  padding: 80px 20px;
  max-width: 900px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

/* map all your named containers to the shared rule */
/* ------------------------------------------------------------
   Titles & paragraph styles
   ------------------------------------------------------------ */
.title-primary,
.title-secondary {
  font-family: "helloparis";
  color: #fff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
  text-align: center;
}

.title-primary {
  font-size: 48px;
  margin: 0 0 20px;
}

.title-secondary {
  font-size: 40px;
  margin: 0 0 40px;
}

.p-primary,
.p-secondary {
  letter-spacing: -0.2px;
  line-height: 1.4;
  color: #fff;
}

.p-primary {
  font-size: 22px;
}

.p-secondary {
  font-size: 16px;
}

/* ------------------------------------------------------------
   Buttons
   ------------------------------------------------------------ */
.btn-primary,
.lead_magnet .btn-secondary {
  display: block;
  padding: 14px;
  font-size: 22px;
  letter-spacing: -0.2px;
  font-weight: 500;
  border-radius: 60px;
  line-height: 1;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  max-width: 300px;
  width: 100%;
  margin: 0 auto;
  transition: all 0.3s ease;
}

.btn-primary {
  border: 2px solid #fff;
  background-color: #fff;
  color: #5C4D6A;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}
.btn-primary:hover {
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  transition: all 0.3s ease;
}

.lead_magnet .btn-secondary {
  display: block;
  padding: 14px;
  font-size: 22px;
  font-weight: 500;
  border: 2px solid #fff;
  background-color: transparent;
  color: #fff;
  border-radius: 60px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.lead_magnet .btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

/* ------------------------------------------------------------
   Header
   ------------------------------------------------------------ */
header {
  background-color: #818799;
  position: sticky;
  top: 0;
  left: 0;
  padding: 15px;
  z-index: 999;
}
header .logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 7px 0 0;
}
header .logo img {
  height: 40px;
  width: 40px;
}
header .logo p {
  margin: 0 0 0 14px;
  font-size: 36px;
  font-weight: 700;
  text-shadow: none;
}
header .countdown {
  text-align: center;
  font-weight: 700;
}
header .countdown span:first-of-type {
  font-weight: 400;
}

/* ------------------------------------------------------------
   Hero
   ------------------------------------------------------------ */
.hero {
  background-image: linear-gradient(to bottom, transparent 30%, #5C4D6A 100%), url(/media/fondos/gris.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #5C4D6A;
}
.hero .hero_container {
  max-width: 700px;
  height: auto;
  text-align: center;
}
.hero .hero_container img {
  width: 100%;
  height: auto;
  display: flex;
  margin: 0 0 20px;
}

/* ------------------------------------------------------------
   Pain section
   ------------------------------------------------------------ */
.pain {
  background-color: #5C4D6A;
  text-align: center;
}
.pain .pain_list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  position: relative;
  z-index: 2;
}
.pain .pain_list::before {
  content: "";
  position: absolute;
  top: -115px;
  left: -60px;
  width: 160px;
  height: 160px;
  z-index: -1;
  background-image: url(/media/iconos/decor5.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.pain .pain_list li {
  border-radius: 6px;
}
.pain .pain_list li img {
  width: 100%;
  height: 150px;
  display: flex;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 6px 6px 0 0;
}
.pain .pain_list li p {
  margin: 0;
  padding: 14px 10px;
}

/* ------------------------------------------------------------
   Solution section
   ------------------------------------------------------------ */
.solution {
  background-image: url(/media/iconos/decor2.svg);
  background-size: 60px;
  background-position: center top;
  background-repeat: no-repeat;
  background-color: #5C4D6A;
}
.solution .solution-content {
  display: flex;
  justify-content: center;
  align-items: start;
}
.solution .solution-content img {
  height: auto;
  width: 100%;
  max-width: 250px;
  padding: 0 30px 0 0;
}
.solution .solution_list li {
  background-image: url(/media/iconos/check.svg);
  background-size: 27px;
  background-position: left 9px;
  background-repeat: no-repeat;
  padding: 12px 0 12px 30px;
}

/* ------------------------------------------------------------
   Product section
   ------------------------------------------------------------ */
.product {
  background-color: #5C4D6A;
}
.product .product_list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}
.product .product_list li:nth-child(5), .product .product_list li:nth-child(6) {
  grid-column: span 2;
}
.product .product_list li:nth-child(5) img, .product .product_list li:nth-child(6) img {
  -o-object-position: 0 -190px;
     object-position: 0 -190px;
}
.product .product_list li img {
  width: 100%;
  height: 140px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 6px;
  border: 1.5px solid #fff;
}
.product .product_list li div {
  padding: 14px 10px;
}
.product .product_list li div p {
  text-align: center;
}
.product .product_list li div p.p-primary:first-of-type {
  font-family: "helloparis";
  font-weight: 700;
  font-size: 30px;
  line-height: 1;
}
.product .product_list li div p.p-secondary {
  margin: 2px 0 8px;
}
.product .product_list li div p s {
  margin-right: 5px;
}
.product .price {
  text-align: center;
  margin: 10px 0 30px;
}
.product .price img {
  display: block;
  margin: auto;
  transform: scaleY(-1);
}
.product .discount-badge {
  display: inline-block;
  background-color: #818799;
  color: #fff;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin: 10px 0 20px;
  box-shadow: 0 4px 15px rgba(129, 135, 153, 0.8078431373);
}
.product .old-price {
  font-size: 28px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: line-through;
  margin: 0 0 10px;
}
.product .new-price {
  font-size: 56px;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
  margin: 0 0 30px;
}
.product .guarantee {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px 30px;
  margin: 0 auto 40px;
  max-width: 500px;
  font-size: 18px;
  color: #fff;
  line-height: 1.6;
  text-align: center;
}
.product .p-secondary {
  text-align: center;
  margin: 6px 0 0;
}

/* ------------------------------------------------------------
   Testimonies
   ------------------------------------------------------------ */
.testimonies {
  background-image: linear-gradient(to bottom, #5C4D6A 0%, transparent 40%, #5C4D6A 100%), url(/media/fondos/pasteles.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #5C4D6A;
}
.testimonies .testimonies_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}
.testimonies .testimonies_list li {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px 20px;
  text-align: center;
  position: relative;
}
.testimonies .testimonies_list li img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 10px auto 4px;
  border: 3px solid #fff;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}
.testimonies .testimonies_list li::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 30px;
  transform: translateX(-50%);
  font-size: 60px;
  color: rgba(255, 255, 255, 0.15);
  line-height: 1;
}

/* ------------------------------------------------------------
   FAQs
   ------------------------------------------------------------ */
.faqs {
  background-color: #5C4D6A;
}
.faqs .faqs_list {
  max-width: 700px;
  margin: 0 auto;
}
.faqs .faqs_list li {
  margin-bottom: 20px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  overflow: hidden;
}
.faqs .faqs_list li .faq-question {
  padding: 16px 40px 16px 16px;
  cursor: pointer;
  position: relative;
  display: block;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background-color: rgba(255, 255, 255, 0.15);
  transition: background-color 0.3s ease;
}
.faqs .faqs_list li .faq-question:hover {
  background-color: rgba(255, 255, 255, 0.3);
}
.faqs .faqs_list li .faq-question::after {
  content: "+";
  position: absolute;
  top: 17px;
  right: 16px;
  font-size: 24px;
  line-height: 1;
  transition: transform 0.3s ease;
}
.faqs .faqs_list li .faq-question.active::after {
  content: "-";
  transform: rotate(0deg);
}
.faqs .faqs_list li .faq-answer-wrapper {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-in-out;
}
.faqs .faqs_list li .faq-answer {
  padding: 16px;
}

/* ------------------------------------------------------------
   CTA
   ------------------------------------------------------------ */
.cta {
  background-image: linear-gradient(to bottom, #5C4D6A 0%, transparent 40%, #5C4D6A 100%), url(/media/retratos/6.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #5C4D6A;
  text-align: center;
}
.cta .cta_container {
  padding-top: 400px;
}
.cta .cta_container .title-secondary {
  margin-bottom: 20px;
}
.cta .cta_container .p-primary {
  margin-bottom: 40px;
}

/* ------------------------------------------------------------
   FOOTER
   ------------------------------------------------------------ */
footer {
  background-color: #5C4D6A;
  text-align: center;
}
footer div {
  display: flex;
  justify-content: center;
}
footer div a {
  display: flex;
}
footer div a img {
  width: 40px;
  height: 40px;
  padding: 8px;
}
footer p {
  padding: 0 20px 10px;
}

@media (max-width: 960px) {
  .container-shared, .product_container,
  .solution_container,
  .pain_container,
  .hero_container,
  .faqs_container,
  .testimonies_container,
  .cta_container,
  .lead_magnet_container {
    max-width: 360px;
  }
  /* Titles */
  .title-primary {
    font-size: 32px;
    margin-bottom: 14px;
  }
  .title-secondary {
    font-size: 28px;
    margin-bottom: 20px;
  }
  /* Paragraphs */
  .p-primary {
    font-size: 18px;
  }
  .p-secondary {
    font-size: 14px;
  }
  /* Buttons */
  .btn-primary,
  .lead_magnet .btn-secondary {
    font-size: 18px;
    padding: 12px;
    max-width: 100%;
  }
  /* Columns */
  .pain .pain_list,
  .product .product_list {
    grid-template-columns: 1fr;
  }
  .testimonies .testimonies_list {
    grid-template-columns: 1fr;
  }
  .solution .solution-content {
    flex-direction: column-reverse;
    align-items: center;
  }
  /* Other */
  header {
    display: flex;
    flex-direction: column-reverse;
  }
  header .logo {
    margin: 0 0 7px;
  }
  .pain .pain_list::before,
  header .logo p {
    display: none;
  }
  .hero .hero_container {
    padding: 30px 20px;
  }
  .product .product_list li:nth-child(5), .product .product_list li:nth-child(6) {
    grid-column: auto;
  }
  .product .product_list li:nth-child(5) img, .product .product_list li:nth-child(6) img {
    -o-object-position: center;
       object-position: center;
  }
  .product .product_list li img {
    height: 200px;
    -o-object-position: top;
       object-position: top;
  }
}/*# sourceMappingURL=style.css.map */