/* ==========================================================================
   Archivo: packs.css
   Descripción: Estilos de página Planes para el sitio web de Genvot.
   Autor: Ricardo D. Ponce M.
   Fecha: 25 de abril de 2025
   Versión: 1.0.0
   ========================================================================== */

/* === Sección Planes === */

.planes {
  padding: 10rem 0 5rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .planes {
    padding: 10rem 0 2rem 0;
  }
}

.planes h2 {
  font-family: "Mersad", serif;
  font-size: 8rem;
  line-height: 8.6rem;
  font-weight: 800;
  color: #6200e3;
  margin: 0;
}

@media (max-width: 768px) {
  .planes h2 {
    font-size: 6rem;
    line-height: 6.6rem;
  }
}

@media (max-width: 480px) {
  .planes h2 {
    font-size: 5rem;
    line-height: 5.6rem;
  }
}

/* === Sección Diseñados === */

.disenados {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  padding: 0 2rem;
  margin: 0 0 5rem 0;
}

@media (max-width: 768px) {
  .disenados {
    padding: 0;
    flex-direction: column;
  }
}

.disenados__columna-imagen {
  width: 50%;
  padding: 0rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 768px) {
  .disenados__columna-imagen {
    width: 100%;
    padding: 4rem 0;
  }
}

.disenados__columna-imagen img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

.disenados__columna-texto {
  width: 50%;
  padding-left: 0rem;
  text-align: left;
}

@media (max-width: 768px) {
  .disenados__columna-texto {
    width: 100%;
    padding: 0;
  }
}

.disenados__texto-titulo span {
  font-family: "Mersad", serif;
  font-size: calc(2rem + 1.8vw);
  line-height: calc(2rem + 2.6vw);
  font-weight: 600;
  color: #6200e3;
}

/* === Sección Invitación === */

.invitacion {
  text-align: center;
}

@media (max-width: 768px) {
  .invitacion {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .invitacion__descripcion {
    padding: 0 0 0 2rem;
  }
}

/* === Sección Planes === */

.planes__contenedor {
  gap: 1rem;
  flex-wrap: nowrap;
  justify-content: flex-start;
  transition: transform 0.5s ease;
  width: 100%;
}

@media (max-width: 1180px) {
  .planes__contenedor {
    width: 100%;
    row-gap: 2rem;
    column-gap: 0rem;
  }
}

.planes__card-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  width: 33%;
  padding-top: 6rem;
  height: auto;
  min-height: 1200px;    
}

@media (max-width: 1180px) {
  .planes__card-wrapper {
    width: 50%;
  }
}

@media (max-width: 768px) {
  .planes__card-wrapper {
    width: 100%;
  }
}

.planes__item {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  padding: 3rem 2rem 4rem 2rem;
  width: 100% !important;
  height: auto;
  min-height: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  margin: 0 1rem;
  z-index: 1;
}

@media (max-width: 1180px) {
  .planes__item {
    width: 50%;
    padding: 3rem 2rem 2rem 2rem;
    margin: 0 1.5rem 0 0;
  }
}

@media (max-width: 768px) {
  .planes__item {
    width: 100%;
    padding: 3rem 1rem 2rem 1rem;
    margin: 0 0.5rem;
  }
}

.planes__item.esencial {
  border: 1px solid #0f8c5b;
  overflow: visible;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.planes__item.avanzado {
  border: 1px solid #6200e3;
  overflow: visible;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.planes__item.supremo {
  border: 1px solid transparent;
  background: linear-gradient(#fff, #fff) padding-box,
    linear-gradient(to right, #0f8c5b, #6200e3) border-box;
  overflow: visible;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.planes__imagen-fondo {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  z-index: 0;
  opacity: 1;
  pointer-events: none;
}

@media (max-width: 420px) {
  .planes__imagen-fondo {
    top: 2%;
  }
}

.planes__titulo {
  font-size: calc(4.5rem + 1.8vw);
  line-height: calc(4.5rem + 2.6vw);
  font-weight: 400;
  width: 100%;
  text-align: center;
}

.planes__frase {
  width: 100%;
  margin: 1rem 0;
  text-align: center;
}

@media (max-width: 1180px) {
  .planes__frase {
    margin: 1rem 0;
  }
}

.planes__frase-especifica {
  font-size: 1.1rem;
  color: #fff;
}

.planes__frase-final--after {
  color: #000;
  font-size: calc(1rem + 1.8vw);
  line-height: calc(1rem + 2.6vw);
  font-weight: 400;
  text-transform: uppercase;
}

.planes__precio {
  font-weight: bold;
  margin-bottom: 1rem;
  width: 100%;
  text-align: center;
}

.planes__precio.desde:before {
  content: "*Desde";
  position: absolute;
  left: 15%;
  color: #000;
  font-size: calc(1rem + 1.8vw);
  line-height: calc(1rem + 2.6vw);
  font-weight: 400;
  text-transform: uppercase;
}

.planes__precio-simbolo {
  color: #000;
  font-family: "Neue Haas Grotesk Text Pro", Sans-serif;
  font-size: calc(2.5rem + 1.8vw);
  line-height: calc(2.5rem + 2.6vw);
  font-weight: 400;
}

.planes__precio-cantidad {
  color: #000;
  font-size: calc(5em + 1.8vw);
  line-height: calc(5rem + 2.6vw);
  font-weight: 400;
}

.planes__precio-moneda {
  color: #000;
  font-size: calc(2.5rem + 1.8vw);
  line-height: calc(2.5rem + 2.6vw);
  font-weight: 100;
}

.planes__cta {
  margin: 1rem 0;
  padding: 0.75rem 1.5rem;
  border: none;
  cursor: pointer;
  border-radius: 0.5rem;
  font-weight: 500;
  text-align: center;
  transition: background-color 0.3s ease;
}

.planes__cta--principal {
  font-weight: 600;
  background-color: #6200e3;
  color: #fff;
  text-decoration: none;
  width: 100%;
}

.planes__cta--principal:hover {
  background-color: #9f5cff;
  color: #fff;
}

.planes__cta--secundario {
  color: #6200e3;
  background-color: transparent;
  font-weight: 600;
  text-decoration: none;
  padding: 2rem 0;
  margin: 0 auto;
  border: 0;
  width: 100%;
}

.planes__cta--secundario:hover,
.planes__cta--secundario:active,
.planes__cta--secundario:focus {
  color: #6200e3;
  border: 0;
}

.planes__cta--terciario {
  display: block;
  font-weight: 600;
  background-color: #6200e3;
  color: #fff;
  text-decoration: none;
  width: 100%;
}

.planes__cta--terciario:hover,
.planes__cta--terciario:active,
.planes__cta--terciario:focus {
  color: #fff;
  border: 0;
}

.planes__separador {
  width: 100%;
  border: 0;
  border-top: 1px solid #ddd;
}

.planes__caracteristicas-generales {
  list-style: disc;
  padding-left: 1rem;
  margin: 1rem 0;
  width: 100%;
}

.planes__caracteristica,
.planes__caracteristica-general {
  margin: 0.5rem 0;
  position: relative;
  cursor: default;
}

.planes__caracteristica-general {
  cursor: pointer;
}

.planes__caracteristica-general:hover {
  text-decoration: underline;
}

.planes__caracteristicas-especificas { 
  list-style: disc;
  padding-left: 1rem;
  margin: 0 0 2rem 0;
  width: 100%;
}

.planes__caracteristica,
.planes__caracteristica-especifica {
  margin: 0.5rem 0;
  position: relative;
  cursor: default;
}

.planes__caracteristica-especifica {
  cursor: pointer;
  text-decoration: underline;
}

.planes__caracteristica-especifica:hover {
  text-decoration: underline;
}

.planes__caracteristica-especifica.pregunta-final {
  list-style: none !important;    
  cursor: pointer;
  text-decoration: none !important;
  text-align: center;
}

.planes__titulo-esencial {
  text-transform: uppercase;
  color: #0f8c5b;
}

.planes__titulo-avanzado {
  text-transform: uppercase;
  color: #6200e3;
}

.planes__titulo-supremo {
  text-transform: uppercase;
  background: linear-gradient(90deg, #0f8c5b, #6200e3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.planes__wrapper-opcion {
  width: 100%;
  background-color: #707070;
  transition: background-color 0.3s ease;
  cursor: pointer;
  margin: 0.5rem 0;
  padding: 1rem;
  border-radius: 0.5rem;
}

.planes__wrapper-opcion.activo {
  background-color: #707070;
}

.planes__titulo-opcion {
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.7rem;
  font-weight: 700;
  text-align: center;
  width: 100%;
  padding: 0;
}

@media (max-width: 1180px) {
  .planes__titulo-opcion {
    font-size: 1.1rem;
  }
}

#opcion-a__contenido,
#opcion-b__contenido {
  width: 100%;
  padding: 0;
  margin: 0;
  border: 0;
  box-sizing: border-box;
}

.tooltip {
  position: absolute;
  width: 100%;
  top: -2rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: #6200e3;
  color: #fff;
  font-size: 0.75rem;
  line-height: 1.1rem;
  padding: 0.4rem 0.6rem;
  border-radius: 4px;
  white-space: normal;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 10;
  word-wrap: break-word;
  text-align: center;
  box-sizing: border-box;
}

.tooltip::after {
  display: none;    
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px 6px 0 6px;
  border-style: solid;
  border-color: #6200e3 transparent transparent transparent;
}

.planes__caracteristica-especifica:hover .tooltip {
  opacity: 1;
  pointer-events: auto;
}

.planes__caracteristica-general:hover .tooltip {
  opacity: 1;
  pointer-events: auto;
}

.tooltip--visible {
  opacity: 1 !important;
  pointer-events: auto !important;
}

#elige-plan {
  padding: 1.5rem 0;
}

/* === Sección Revolución === */

.revolucion {
  padding: 5rem 2rem 0rem 2rem;
  margin: 0;
  background-image: linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.8) 100%
    ),
    url(/wp-content/uploads/genvot-icono-border.svg);
  background-repeat: repeat;
  background-size: 100px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

@media (max-width: 768px) {
  .revolucion {
    padding: 3rem 1.5rem;
    background-size: 80px;
  }
}

@media (max-width: 480px) {
  .revolucion {
    padding: 2rem 1rem;
    background-size: 60px;
  }
}

.revolucion__intro {
  width: 100%;
  position: relative;
  display: inline-block;
  padding: 2rem 0;
}

@media (max-width: 768px) {
  .revolucion__intro {
    position: relative;
    display: inline-block;
    margin: 0 auto;
    padding: 2rem 0;
  }
}

.revolucion__linea--1,
.revolucion__linea--2 {
  position: relative;
  font-size: calc(4.5rem + 1.8vw);
  line-height: calc(4.5rem + 2.6vw);
  font-weight: 400;
  text-transform: uppercase;
  color: #fff;
  padding: 0.2rem 1.5rem;
  z-index: 1;
}

.revolucion__linea--1 {
  background-color: #6200e3;
  display: block;
  padding: 2rem 2rem 2rem 0;
  margin-right: 40%;
  text-align: right;
}

@media (max-width: 1024px) {
    .revolucion__linea--1 {
       background-color: transparent; 
       color: #6200e3; 
       margin-right: 0;
       padding: 0 2rem;
       text-align: right;
    }
}

.revolucion__linea--2 {
  background-color: #0f8c5b;
  display: block;
  padding: 2rem 0 2rem 2rem;
  margin-left: 40%;
  text-align: left;
}

@media (max-width: 1024px) {
    .revolucion__linea--2 {
       background-color: transparent; 
       color: #0f8c5b; 
       margin-left: 0;
       padding: 0 2rem; 
       text-align: right;
    }
}

.revolucion__mensaje {
  width: 100%;
  font-size: 2rem;
  line-height: 2.6rem;
  font-weight: 400;
  padding: 2rem 0;
  margin: 0;
}

/* === Sección Porque === */

.porque__linea {
  font-size: clamp(4rem, 20vw, 10rem);
  line-height: clamp(4rem, 20vw, 10rem);
  font-weight: 400;
  color: transparent;
  -webkit-text-stroke: 1px #6200e3;
  text-stroke: 1px #6200e3;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
  padding: 1rem 0;
}

.porque__mensaje {
  width: 100%;
  font-size: 2rem;
  font-weight: 600;
  line-height: 2.6rem;
  margin: 0;
  text-align: center;
}

/* === Sección Beneficios Antiguo === */

.beneficios__grid {
  display: grid;
  gap: 5rem;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}

@media (min-width: 1024px) {
  .beneficios__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .beneficios__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .beneficios__grid {
    grid-template-columns: 1fr;
  }
}

.beneficios__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 8px;
  text-align: center;
}

.beneficios__imagen {
  width: 100%;
  height: auto;
  max-height: 140px;
}

.beneficios__contenido {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.beneficios__titulo {
  font-weight: 300;
  margin: 0;
}

.beneficios__texto {
  font-weight: 300;
  padding: 1rem 0 0;
}

/* === Sección Funcionamiento Antiguo ===

.funcionamiento {
  margin: 5rem 0;
  padding: 0;
}

.funcionamiento__paso {
  display: flex;
  align-items: center;
  margin: 2rem 0;
  justify-content: space-between;
}

@media (max-width: 1024px) {
  .funcionamiento__paso {
    flex-direction: column;
    margin: 2rem 0;
  }
}

.funcionamiento__paso--invertido {
  flex-direction: row-reverse;
}

@media (max-width: 1024px) {
  .funcionamiento__paso--invertido {
    flex-direction: column;
  }
}

.funcionamiento__imagen {
  width: 40%;
  max-width: 450px;
  padding: 0 4rem;
  position: relative;
  overflow: hidden;
}

@media (max-width: 1024px) {
  .funcionamiento__imagen {
    width: 100%;
    max-width: 100%;    
    max-height: 250px;
    padding: 0;
    margin-bottom: 1rem;
    order: 1;
  }
}

@media (max-width: 1024px) {
  .funcionamiento__paso--invertido .funcionamiento__imagen {
    margin: 2rem 0;
  }
}

.funcionamiento__imagen img {
  width: 100%;
  height: auto;
}

.funcionamiento__contenido {
  width: 60%;
  padding: 0 4rem;
}

@media (max-width: 1024px) {
  .funcionamiento__contenido {
    width: 100%;
    padding: 0;
    order: 2;
  }
}

.funcionamiento__titulo {
  font-size: calc(1.6rem + 1.4vw);
  line-height: calc(1.6rem + 2.2vw);
  font-weight: 600;
  color: #6200e3;
  margin: 2rem 0;
  display: flex;
  align-items: center;
}

.funcionamiento__numero {
  font-size: 8rem;
  color: #6200e3;
  margin-right: 3rem;
  line-height: 8.6rem;
}

@media (max-width: 1024px) {
  .funcionamiento__numero {
    display: none;
  }
}

.funcionamiento__numero-movil {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 8rem;
  color: #ffffff;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  z-index: 1;
}

@media (max-width: 1024px) {
  .funcionamiento__numero-movil {
    display: block;
  }
}

.funcionamiento__texto {
  margin: 2rem 0;
  padding: 0 2rem 0 10rem;
}

@media (max-width: 1024px) {
  .funcionamiento__texto {
    padding: 0 1rem;
  }
}

.funcionamiento__destacado {
  font-family: "Mersad", serif;
  font-size: 1.6rem;
  line-height: 2.2rem;
  color: #0f8c5b;
  font-weight: bold;
  padding: 0 0 0 10rem;
  margin-bottom: 1rem;
}

@media (max-width: 1024px) {
  .funcionamiento__destacado {
    padding: 0 !important;
  }
}

.funcionamiento__lista {
  list-style: none;
  margin: 2rem 0;
  padding: 0 3rem 0 6rem;
}

@media (max-width: 1024px) {
  .funcionamiento__lista {
    padding: 0 2rem;
  }
}

.funcionamiento__lista li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
}

.funcionamiento__lista li::before {
  content: "â€¢";
  position: absolute;
  left: 0;
  color: #0f8c5b;
  font-size: 1.5rem;
}

/* === Sección Funcionamiento === */

.funcionamiento {
  padding: 0;
  position: relative;
}

.funcionamiento__step {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 20rem;
}

.funcionamiento__step::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: #0f8c5b;
  z-index: 0;
}

.funcionamiento__step-number {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background-color: white;
  border: 3px solid #0f8c5b;
  color: #0f8c5b;
  font-family: "Mersad", sans-serif;    
  font-weight: bold;
  font-size: 2rem;
  line-height: 2.7rem;    
  width: 60px;
  height: 60px;
  border-radius: 50%;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.funcionamiento__step-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1000px;
  gap: 200px;
  position: relative;
  z-index: 2;
}

.funcionamiento__step-image {
  width: 120px;
  height: auto;
  flex: 1;
  text-align: center;
}

.funcionamiento__step-text {
  flex: 1;
  font-size: 1rem;
  line-height: 1.5;
}

.funcionamiento__step-title {
  color: #6200e3;     
  flex: 1;
  font-size: 1.5rem;
  line-height: 1.5;
}

.funcionamiento__step-cta {
  color: #6200e3;     
  font-size: 1.5rem; 
  font-weight: 600;    
  text-transform: uppercase;
  padding: 1rem 0;    
}

.funcionamiento__step--reverse .funcionamiento__step-content {
  flex-direction: row-reverse;
}

@media (max-width: 768px) {
    .funcionamiento {
      padding: 2rem 0;
      position: relative;
    }    
    
  .funcionamiento__step {
    flex-direction: column;
    align-items: flex-start;
    height: 25rem;  
  }

  .funcionamiento__step::before {
    left: 30px;
  }

  .funcionamiento__step-number {
    left: 0;
    transform: translateX(0);
    margin-bottom: 20px;
  }

  .funcionamiento__step-content {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .funcionamiento__step--reverse .funcionamiento__step-content {
    flex-direction: column;
  }

  .funcionamiento__step-image {
    order: -1;
    width: 200px;
  }

  .funcionamiento__step-text {
    text-align: center;
    margin: 0 2rem;
    padding: 0 2rem;    
  }
}

/* === Sección Hablemos === */

.hablemos__titulo {
  font-size: clamp(3.5rem, 17vw, 20rem);
  width: 100%;
  text-align: center;
  font-weight: bold;
  margin: 0;
  padding: 0;
  cursor: none;
  position: relative;
}

.hablemos__link {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.hablemos__link:hover {
  color: inherit;
  text-decoration: none;
}

/* === Sección Salto === */

.salto {
  margin: 5rem 0 0 0;
  padding: 0;
}

.salto__contenedor {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.salto__texto {
  margin-bottom: 2rem;
}

.salto__titulo {
  font-size: 2.5rem;
  line-height: 3.5rem;
  margin: 0;
}

@media (max-width: 768px) {
  .salto__titulo {
    font-size: 2rem;
    line-height: 2.8rem;
  }
}

@media (max-width: 480px) {
  .salto__titulo {
    font-size: 1.8rem;
    line-height: 2.4rem;
  }
}

.salto__frase {
  display: block;
}

.salto__frase--morado {
  color: #6200e3;
}

.salto__frase--verde {
  color: #0f8c5b;
}

.salto__imagen {
  max-width: 960px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .salto__imagen {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .salto__imagen {
    max-width: 100%;
  }
}

.salto__imagen img {
  width: 100%;
  height: auto;
}

/* === Estilos base del popup === */

.recibes__trigger {
  font-family: "Neue Haas Grotesk Text Pro", Sans-serif;
  font-size: 1.3rem;
  font-weight: 600;  
  line-height: 1.8rem;
  color: #6200e3;
  margin: 0;
  padding: 1rem 0 1.5rem 0;
  display: flex;
  justify-content: center;
}

.recibes__trigger::after {
  content: "";
  display: inline-block;
  background-image: url(/wp-content/uploads/check-mark-packs-green.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  margin-left: 0.5em;
  vertical-align: middle;
}

.recibes__trigger--pregunta-final {
  font-family: "Neue Haas Grotesk Text Pro", Sans-serif;
  font-size: 1.3rem;
  font-weight: 600;  
  line-height: 1.8rem;
  color: #6200e3;
  margin: 0;
  padding: 2rem 0 1rem 0;
  display: flex;
  justify-content: center;
}

@keyframes colorShift {
  0%, 100% {
    color: #6200e3;
  }
  50% {
    color: #0f8c5b;
  }
}

.color-shift-animation {
  animation: colorShift 2s infinite;
}

.recibes {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9991;
}

.recibes--visible {
  display: flex;
  justify-content: center;
  align-items: center;
}

.recibes__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
}

.recibes__popup {
  position: relative;
  background-color: #fff;
  width: 90%;
  max-width: 80%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  overflow: hidden;
  padding-top: 5rem;
}

@media screen and (max-width: 1024px) {
  .recibes__popup {
    max-width: 90%;
    max-height: 85vh;
    padding-top: 3rem;
  }
}

.recibes__popup-inner {
  overflow-y: auto;
  max-height: calc(90vh - 3.5rem);
  padding: 0 4rem 4rem 4rem;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  box-sizing: border-box;
}

@media screen and (max-width: 1024px) {  
  .recibes__popup-inner {
    max-height: calc(85vh - 3rem);
    padding: 0 1.5rem 1.5rem 1.5rem;
  }
}

.recibes--visible .recibes__popup {
  animation: popupFadeIn 0.3s ease forwards;
}

@keyframes popupFadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.recibes__close, .recibes__close:active, .recibes__close:focus  {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  background: #fff;
  border: 1px solid #0f8c5b;
  cursor: pointer;
  color: #0f8c5b;
  z-index: 2;
  padding: 0.6rem 1.1rem;
  border-radius: 20rem;
}

.recibes__close:hover {
  background: #0f8c5b;
  border: 1px solid #0f8c5b;
  color: #fff;
}

.recibes__title {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.recibes__intro {
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.recibes__text {
  margin: 1.5rem 0;
  line-height: 1.5;
}

.recibes__list {
  list-style: decimal;
  padding-left: 1.5rem;
  margin: 1rem 0;
}

.recibes__item {
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.no-scroll {
  overflow: hidden;
  height: 100%;
  width: 100%;
}