:root {
  /*** COLORES ***/
  --principal: #f08700;
  --accion: #ffe100;
  --secundario: #e3d886;
  --blanco: #fbfaf4;
  --complemento1: #e5d665;
  --bg: #231f00;
  --gris: #d9d9d9;
  --grisFuentes: #15140a;
  /*** FUENTES ***/
  --fuente: "Lato", sans-serif;
  /* BORDERS */
  --radius: 12px;
  /* SOMBRA */
  --shadow: 0px 2px 16px 0px rgba(0, 0, 0, 0.32);
}

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 8em;
}

body {
  position: relative;
  color: var(--grisFuentes);
  font-family: var(--fuente);
  background-color: #fefefe;
}

h1,
h2,
h3,
h4 {
  text-transform: initial;
  line-height: 1.05;
  max-width: 560px;
}

h1 {
  font-size: clamp(2rem, 3vw + 1rem, 3rem);
  font-weight: 900;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(1.5rem, 1.357rem + 0.71vw, 2rem);
  text-align: center;
}

h3 {
  font-size: clamp(1.25rem, 1.068rem + 0.91vw, 1.75rem);
}

h4 {
  font-size: clamp(1.125rem, 1.034rem + 0.45vw, 1.375rem);
}

p,
a {
  word-wrap: break-word;
  font-size: clamp(1.125rem, 1.089rem + 0.18vw, 1.25rem);
  max-width: 720px;
}

a {
  text-decoration: none;
  font-weight: bolder;
  transition: all 0.2s ease-in;
  display: block;
}

a:hover {
  transform: scale(1.025);
}

img {
  border-style: none;
  max-width: 100%;
}

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

/***************** ESTILOS UNIVERSALES ****************/

.boton-whatsapp {
  position: fixed;
  bottom: 8rem;
  right: 12px;
  z-index: 100;
  -webkit-animation: scale-up-center 0.4s cubic-bezier(0.390,0.575,0.565,1.000) 0.5s 6 alternate-reverse both;
  animation: scale-up-center 0.4s cubic-bezier(0.390,0.575,0.565,1.000) 0.5s 6 alternate-reverse both;
  transition: all .2s ease-in-out;
}

@media screen and (width >=800px) {
  .boton-whatsapp::before {
    content: "Escríbenos";
    font-size: 16px;
    color: white;
    background-color: rgba(46, 218, 46, 0.702);
    border: 4px solid white;
    padding: 8px 12px;
    border-radius: 16px;
  }
}

.boton-whatsapp:hover {
  -webkit-filter: drop-shadow(5px 5px 5px rgba(190, 190, 190, .7));
  filter: drop-shadow(5px 5px 5px rgba(190, 190, 190, .7));
}

.bn {
  padding: 0.9em 1.6em;
  border: none;
  outline: none;
  color: var(--grisFuentes);
  font-family: inherit;
  font-weight: 500;
  font-size: 17px;
  cursor: pointer;
  position: relative;
  z-index: 0;
  border-radius: 32px;
  font-weight: 700;
  text-align: center;
  max-width: 400px;
}

.bn::after {
  content: "";
  z-index: -1;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--accion);
  left: 0;
  top: 0;
  border-radius: 10px;
}

.bn::before {
  content: "";
  background: linear-gradient(
    45deg,
    var(--principal),
    #e40851,
    var(--complemento1),
    var(--secundario),
    #ec0808,
    var(--blanco),
    var(--accion),
    var(--complemento1)
  );
  position: absolute;
  top: -2px;
  left: -2px;
  background-size: 600%;
  z-index: -1;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  filter: blur(8px);
  animation: glowing345 20s linear infinite;
  transition: opacity 0.3s ease-in-out;
  border-radius: 20px;
  opacity: 0;
}

@keyframes glowing345 {
  0% {
    background-position: 0 0;
  }

  50% {
    background-position: 400% 0;
  }

  100% {
    background-position: 0 0;
  }
}

.bn:hover::before {
  opacity: 1;
}

.bn:active:after {
  background: transparent;
}

.bn:active {
  color: #000;
  font-weight: bold;
}

.wrapper {
  width: min(calc(100% - 20px), 1128px);
  margin-inline: auto;
  padding: 4rem 0;
}

.flow > * + *:not(h1) {
  margin-top: 1.2em;
}

.resaltar {
  color: var(--principal);
}

.nav {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 12px 20px;
  background-color: transparent;
  z-index: 100;
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav div {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav span {
  display: none;
}

.pa-fixed-header {
  background-color: #fefefe !important;
  -webkit-transition: background-color 0.2s ease-out;
  -moz-transition: background-color 0.2s ease-out;
  -o-transition: background-color 0.2s ease-out;
  transition: background-color 0.2s ease-out;
}

.text-black {
  color: var(--grisFuentes);
}

header {
  display: grid;
  place-items: center;
  min-height: 80vh;
  background-image: linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0.5)
    ),
    url("img/header.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

header div {
  color: white;
}

.plataformas {
  display: grid;
  place-items: center;
  text-align: center;
}

.logos {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 2em;
  flex-wrap: wrap;
  padding-top: 2em;
}

.logos li {
  flex: 1 0 256px;
  max-width: 256px;
}

.logos li a{
  color: var(--principal);
}

.beneficios {
  background: url("img/bg-movies.webp") no-repeat center center;
  background-size: cover;
  display: grid;
  place-items: center;
}

.beneficios div {
  display: grid;
  place-items: center;
  color: white;
}

.beneficios_puntos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.beneficios_puntos li:last-child p {
  mix-blend-mode: exclusion;
}

.beneficios_puntos li {
  flex: 1 0 344px;
  max-width: 344px;
  text-align: center;
}

.beneficios_puntos h3 {
  color: var(--accion);
}

.series {
  background-color: var(--bg);
  color: white;
  padding-top: 4em;
}

.cta {
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
  align-items: center;
  justify-content: space-between;
}

.cta > * {
  flex: 1 0 400px;
  max-width: 100%;
}

.cta div {
  display: grid;
  gap: 2em;
}

.cta div ul li span {
  color: var(--accion);
  font-weight: 700;
  font-size: 1.4em;
}

.cta img{
  width: min(100%, 480px);
}

.testimonios {
  background: url("img/bg-testimonios.webp") no-repeat center center;
  background-size: cover;
}

.testimonios > div {
  color: white;
  display: grid;
  place-items: center;
  gap: 2em;
}

.tarjetas {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.tarjeta {
  width: min(100%, 320px);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
  background-color: #fefefe;
  color: var(--grisFuentes);
}

.tarjeta div {
  padding: 20px;
  text-align: center;
}

.tarjeta img {
  width: 100%;
}

.tarjeta div p{
  font-size: 16px;
}

.pagos {
  background: url('img/footer.webp') no-repeat center center;
  background-size: cover;
  display: grid;
  padding: 4em 0;
  place-items: center;
  color: white;
  text-align: center;
}

.pagos ul{
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  justify-content: space-between;
}

.pagos ul li{
  display: grid;
  text-align: left;
  max-width: 528px;
}

.pagos ul li p img{
  width: min(100%, 528px);
}

footer{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1em;
}

footer a{
  color: var(--principal);
  margin: 0;
  font-size: 16px;
}

/********* MEDIAQUERIES *********/

@media screen and (min-width: 767px) {
  .nav span {
    display: inline-block;
    font-weight: 700;
    color: var(--principal);
    font-size: 1.4em;
  }

  .beneficios_puntos li {
    text-align: left;
  }
}
