/* Fondos Google */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;900&display=swap");
/* VARIABLES DEL CSS */
:root {
  --header-height: 3.5rem;
  /* COLORES */
  --hue: 14;
  --first-color: hsl(var(--hue), 91%, 54%);
  --first-color-alt: hsl(var(--hue), 91%, 50%);
  --title-color: hsl(var(--hue), 4%, 100%);
  --text-color: hsl(var(--hue), 4%, 85%);
  --text-color-light: hsl(var(--hue), 4%, 55%);
  /*COLRO GRADIANTE ROJOs*/
  --body-color: linear-gradient(
    90deg,
    #8f262b 0%,
    #290101 100%
    
  );
  
  --container-color: linear-gradient(
    136deg,
    #8f262b 0%,
    #290101 100%

  );
  --sub: #e02f38;
  /* Fondo y tipografía */
  --body-font: "Permanent Marker", sans-serif;
  --biggest-font-size: 2rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1rem;
  --normal-font-size: 0.938rem;
  --small-font-size: 0.813rem;
  --smaller-font-size: 0.75rem;
  /* Font weight */
  --font-medium: 500;
  --font-semi-bold: 600;
  --font-black: 900;
  /* Margenes Bottom */
  --mb-0-25: 0.25rem;
  --mb-0-5: 0.5rem;
  --mb-0-75: 0.75rem;
  --mb-1: 1rem;
  --mb-1-5: 1.5rem;
  --mb-2: 2rem;
  --mb-2-5: 2.5rem;
  /* z index */
  --z-tooltip: 10;
  --z-fixed: 100;
}
/* Tipografía resposive*/
@media screen and (min-width: 992px) {
  :root {
    --biggest-font-size: 4rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: 0.875rem;
    --smaller-font-size: 0.813rem;
  }
}
/* FACHERO */
.discount__img
.contenedor-imagen {
  position: relative;
  display: inline-block;

}

.imagen {
  max-width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease-in-out;
}

.animacion {
  animation: caida 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes caida {
  0% {
      transform: translateY(0);
  }
  15% {
      transform: translateY(-15px); /* Elevación suave hacia arriba */
  }
  50% {
      transform: translateY(30px); /* Caída */
  }
  85% {
      transform: translateY(-15px); /* Volver un poco hacia arriba */
  }
  100% {
      transform: translateY(0);
  }
}

/* Estilos para el div de información */
.infoPopup p {
  display: none;
}

.trick__subtitle{
  font-family: Arial, Helvetica, sans-serif;
}
/* BASE */

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: var(--header-height) 0 0 0;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background: var(--body-color);
  color: var(--text-color);
  transition: 0.3s;
}
h1,
h2,
h3,
h4 {
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
}
ul {
  list-style: none;
}
a {
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
}
button,
input {
  border: none;
  outline: none;
}
button {
  cursor: pointer;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
}
/* clases de css */
.section {
  padding: 4.5rem 0 2rem;
}
.section__title {
  font-size: var(--h2-font-size);
  margin-bottom: var(--mb-2);
  text-align: center;
}
/* LAYOUT */
.container {
  max-width: 968px;
  margin-left: var(--mb-1-5);
  margin-right: var(--mb-1-5);
}
.grid {
  display: grid;
}
.main {
  overflow: hidden; /*Para*/
}
/* PANTALLA DE FONDO PRINCIPAL  */
@import url('https://fonts.googleapis.com/css?family=Arima+Madurai:300');


.container-bird {
  z-index: 1;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 24rem;
  background-image: url('https://images.unsplash.com/photo-1446824505046-e43605ffb17f');
  background-blend-mode: soft-light;
  background-size: cover;
  background-position: center center;
  padding: 2rem;
  box-shadow: 0 0 10px 10px rgba(0, 0, 0, 0.142); /* Ajusta según sea necesario para controlar el nivel de borrosidad */
}

.bird {
    background-image: url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/174479/bird-cells-new.svg);
    background-size: auto 100%;
    width: 88px;
    height: 125px;
    will-change: background-position;
    animation-name: fly-cycle;
    animation-timing-function: steps(10);
    animation-iteration-count: infinite;
}

.bird--one {
    animation-duration: 1s;
    animation-delay: -0.5s;     
}

.bird--two {
    animation-duration: 0.9s;
    animation-delay: -0.75s;
}

.bird--three {
    animation-duration: 1.25s;
    animation-delay: -0.25s;
}

.bird--four {
    animation-duration: 1.1s;
    animation-delay: -0.5s;
}

.bird-container {
    position: absolute;
    top: 20%;
    left: -10%;
    transform: scale(0) translateX(-10vw);
    will-change: transform;
    animation-name: fly-right-one;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.bird-container--one {
    animation-duration: 15s;
    animation-delay: 0;
}

.bird-container--two {
    animation-duration: 16s;
    animation-delay: 1s;
}

.bird-container--three {
    animation-duration: 14.6s;
    animation-delay: 9.5s;
}

.bird-container--four {
    animation-duration: 16s;
    animation-delay: 10.25s;
}

@keyframes fly-cycle {
    100% {
        background-position: -900px 0;
    }
}  

@keyframes fly-right-one {
    0% {
        transform: scale(0.3) translateX(-10vw);
    }
    10% {
        transform: translateY(2vh) translateX(10vw) scale(0.4);
    }
    20% {
        transform: translateY(0vh) translateX(30vw) scale(0.5);
    }
    30% {
        transform: translateY(4vh) translateX(50vw) scale(0.6);
    }
    40% {
        transform: translateY(2vh) translateX(70vw) scale(0.6);
    }
    50% {
        transform: translateY(0vh) translateX(90vw) scale(0.6);
    }
    60% {
        transform: translateY(0vh) translateX(110vw) scale(0.6);
    }
    100% {
        transform: translateY(0vh) translateX(110vw) scale(0.6);
    }
}



/* HEADER */
.header {
  width: 100%;
  background: var(--body-color);
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-fixed);
}
/* NAV */
.nav {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav__logo {
  display: flex;
  align-items: center;
  column-gap: 0.5rem;
  font-weight: var(--font-medium);
}
.nav__logo-img {
  width: 1.25rem;
}
.nav__link,
.nav__logo,
.nav__toggle,
.nav__close {
  color: var(--sub);
  text-shadow: 0 0 8px #00000096;
}

.nav__toggle {
  font-size: 1.25rem;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .nav__menu {
    position: fixed;
    width: 100%;
    background: var(--container-color);
    top: -150%;
    left: 0;
    color: #e02f38;
    padding: 3.5rem 0;
    transition: 0.4s;
    z-index: var(--z-fixed);
    border-radius: 0 0 1.5rem 1.5rem;
  }
}
.nav__img {
  width: 100px;
  position: absolute;
  top: 0;
  left: 0;
}
.nav__close {
  font-size: 1.8rem;
  position: absolute;
  top: 0.5rem;
  right: 0.7rem;
  cursor: pointer;
}
.nav__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1.5rem;
}
.nav__link {
  text-transform: uppercase;
  font-weight: var(--font-black);
  transition: 0.4s;
}

.nav__link:hover {
  color: var(--text-color);
}
/* Mostrar menú */
.show-menu {
  top: 0;
}
/* cambiar background header */
.scroll-header {
  background: var(--container-color);

}
/* Link activo (Puntos del menú) 
.active-link {
  position: relative;
}
.active-link::before {
  content: "";
  position: absolute;       Para después
  bottom: -0.75rem;
  left: 45%;
  width: 5px;
  height: 5px;
  background-color: var(--sub);
  border-radius: 50%;
}
*/

/* HOME */
.home__content {
  row-gap: 1rem;

}
.home__group {
  display: grid;
  position: relative;
  padding-top: 2rem;
}
.home__img {
  height: 250px;
  justify-self: center;
}


.home__indicator {
  width: 8px;
  height: 8px;
  background-color: var(--title-color);
  border-radius: 50%;
  position: absolute;
  top: 7rem;
  right: 2rem;
}
.home__indicator::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 48px;
  background-color: var(--title-color);
  top: -3rem;
  right: 45%;
}
.home__details-img {
  position: absolute;
  right: 0.5rem;
}
.home__details-title,
.home__details-subtitle {
  display: block;
  font-size: var(--small-font-size);
  text-align: right;
}
.home__subtitle {
  font-size: var(--h3-font-size);
  color: var(--sub);
  text-transform: uppercase;
  margin-bottom: var(--mb-1);
}
.pumpkin__subtitle {
  font-size: var(--h3-font-size);
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: var(--mb-1);
}
.home__title {
  font-size: var(--biggest-font-size);
  font-weight: var(--font-black);
  line-height: 109%;
  margin-bottom: var(--mb-1);
}
.home__description {
  margin-bottom: var(--mb-1);
  text-align: justify;
}

.home__description img {
  margin: 0 auto;
  width: 400px; /* Ajusta el ancho según sea necesario */
  height: auto; /* Mantiene la proporción de la imagen */
}
.home__buttons {
  display: flex;
  justify-content: space-between;
}
/* Swiper Class */
.swiper-pagination {
  position: initial;
  margin-top: var(--mb-1);
}
.swiper-pagination-bullet {
  width: 5px;
  height: 5px;
  background-color: var(--title-color);
  opacity: 1;
}
.swiper-pagination-horizontal.swiper-pagination-bullets
  .swiper-pagination-bullet {
  margin: 0 0.5rem;
}
.swiper-pagination-bullet-active {
  width: 1.5rem;
  height: 5px;
  border-radius: 0.5rem;
}
/* BOTONES */
.button {
  display: inline-block;
  background-color: var(--first-color);
  color: var(--sub);
  padding: 1rem 1.75rem;
  border-radius: 0.5rem;
  font-weight: var(--font-medium);
  transition: 0.3s;
}
.button:hover {
  background-color: var(--first-color-alt);
}

.button__icon {
  font-size: 1.25rem;
}
.book--now {
  display: inline-block;
  transition: 0.3s;
}
.book--now:hover {
  transform: scale(1.2);
}
.button--ghost {
  border: 2px solid;
  background-color: transparent;
  border-radius: 3rem;
  padding: 0.75rem 1.5rem;
}
.button--ghost:hover {
  background: none;
}
.button--link {
  color: var(--title-color);
}
.button--flex {
  display: inline-flex;
  align-items: center;
  column-gap: 0.5rem;
}
/* CATEGORÍAS WASA */
.category__container {
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 2rem;
}
.category__data {
  text-align: center;
}
.category__img {
  width: 120px;
  margin-bottom: var(--mb-0-75);
  transition: 0.3s;
  animation: floating 5s ease-in-out infinite;
}

.category__title {
  margin-bottom: var(--mb-0-25);
  
}
.category__data:hover .category__img {
  transform: translateY(-0.5rem);
  
}
/* ACERCA DE */
.about__container {
  row-gap: 2rem;
}
.about__data {
  text-align: center;
}
.about__description {
  margin-bottom: var(--mb-2);
  
}
.about__img {
  width: 200px;
  justify-self: center;
  animation: floating 2s ease-in-out infinite;
}



.cuadro-imagen-html,
.cuadro-imagen-css,
.cuadro-imagen-scr,
.cuadro-imagen-cr,
.cuadro-imagen-java,
.cuadro-imagen-python,
.cuadro-imagen-cmasmas

{
  height: 200px; /* Alto fijo del cuadro */
  border: 0.1px solid #cccccc00; /* Borde para el cuadro */
  display: flex; 
  justify-content: center; /* Centra la imagen horizontalmente */
  align-items: center; /* Centra la imagen verticalmente */
  transition: border-color 0.3s, transform 0.3s; /* Transición suave para el cambio de color del borde y la transformación */
  border-radius: 3%;
  justify-self: center;
  animation: floating 2s ease-in-out infinite;
}
/* Estilos para imágenes dentro de los cuadros en pantallas grandes */
.cuadro-imagen-html img,
.cuadro-imagen-css img,
.cuadro-imagen-scr img,
.cuadro-imagen-cr img,
.cuadro-imagen-java img,
.cuadro-imagen-python img,
.cuadro-imagen-cmasmas img {
  max-width: 100%;
  max-height: 10%;
  width: auto;
  height: auto;
}
/* Estilos para pantallas pequeñas like teléfonos móviles */
@media (max-width: 767px) {
  .cuadro-imagen-html,
  .cuadro-imagen-css,
  .cuadro-imagen-scr,
  .cuadro-imagen-cr,
  .cuadro-imagen-java,
  .cuadro-imagen-python,
  .cuadro-imagen-cmasmas {
    display: block; /* Cambia a bloque en pantallas pequeñas */
    text-align: center; /* Centra horizontalmente */
  }
}
.cuadro-imagen-html:hover {
  border-color: #e44d26; /* Cambia el color del borde al pasar el cursor */
  transform: scale(0.9); 
  box-shadow: 0 0 1px #e44d26,
  0 0 25px #e44d26, 0 0 5px #e44d26,
  0 0 100px #e44d26, 0 0 2px #e44d26;
}
.cuadro-imagen-css:hover {
  border-color: #264de4; /* Cambia el color del borde al pasar el cursor */
  transform: scale(0.9); 
  box-shadow: 0 0 1px #264de4,
  0 0 25px #264de4, 0 0 5px #264de4,
  0 0 100px #264de4, 0 0 2px #264de4;
}
.cuadro-imagen-scr:hover {
  border-color: #e9ca32; /* Cambia el color del borde al pasar el cursor */
  transform: scale(0.9); 
  box-shadow: 0 0 1px #e9ca32,
  0 0 25px #e9ca32, 0 0 5px #e9ca32,
  0 0 100px #e9ca32, 0 0 2px #e9ca32;
}
.cuadro-imagen-cr:hover {
  border-color: #280068; /* Cambia el color del borde al pasar el cursor */
  transform: scale(0.9); 
  box-shadow: 0 0 1px #280068,
  0 0 25px #280068, 0 0 5px #280068,
  0 0 100px #280068, 0 0 2px #280068;
}
.cuadro-imagen-java:hover {
  border-color: #105997; /* Cambia el color del borde al pasar el cursor */
  transform: scale(0.9); 
  box-shadow: 0 0 1px #105997,
  0 0 25px #105997, 0 0 5px #e06141,
  0 0 100px #105997, 0 0 2px #e06141;
}
.cuadro-imagen-python:hover {
  border-color: #bb9402; /* Cambia el color del borde al pasar el cursor */
  transform: scale(0.9); 
  box-shadow: 0 0 1px #ffeba1,
  0 0 25px #ffeba1, 0 0 5px #ffd231,
  0 0 100px #ffd231, 0 0 2px #ffd231;
}
.cuadro-imagen-cmasmas:hover {
  border-color: #5C8DBC; /* Cambia el color del borde al pasar el cursor */
  transform: scale(0.9); 
  box-shadow: 0 0 1px #5C8DBC,
  0 0 25px #5C8DBC, 0 0 5px #5C8DBC,
  0 0 100px #5C8DBC, 0 0 2px #5C8DBC;
}

/* Tamaño para las imagenes de adentro */
.cuadro-imagen-html img,
.cuadro-imagen-css img,
.cuadro-imagen-scr img,
.cuadro-imagen-cr img,
.cuadro-imagen-java img,
.cuadro-imagen-python img,
.cuadro-imagen-cmasmas img

{
  max-width: 100%; /* La imagen no superará el ancho del cuadro */
  max-height: 100%; /* La imagen no superará la altura del cuadro */
  width: auto; /* Ajusta el ancho automáticamente */
  height: auto; /* Ajusta la altura automáticamente */  
}

.imagen-alternativa-html {
  display: none; /* Oculta la imagen alternativa por defecto */
  position: absolute; /* Posición absoluta para que esté sobre la imagen original */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f16529;
  text-align: center;
  
}

.imagen-alternativa-css {
  display: none; /* Oculta la imagen alternativa por defecto */
  position: absolute; /* Posición absoluta para que esté sobre la imagen original */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #2965f0;
  text-align: center;
}

.imagen-alternativa-scr {
  display: none; /* Oculta la imagen alternativa por defecto */
  position: absolute; /* Posición absoluta para que esté sobre la imagen original */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffde25;
  text-align: center;
}

.imagen-alternativa-cr {
  display: none; /* Oculta la imagen alternativa por defecto */
  position: absolute; /* Posición absoluta para que esté sobre la imagen original */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #390091;
  text-align: center;
}

.imagen-alternativa-java {
  display: none; /* Oculta la imagen alternativa por defecto */
  position: absolute; /* Posición absoluta para que esté sobre la imagen original */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #105997;
  text-align: center;
}

.imagen-alternativa-python {
  display: none; /* Oculta la imagen alternativa por defecto */
  position: absolute; /* Posición absoluta para que esté sobre la imagen original */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffd231;
  text-align: center;
}

.imagen-alternativa-cmasmas {
  display: none; /* Oculta la imagen alternativa por defecto */
  position: absolute; /* Posición absoluta para que esté sobre la imagen original */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #5C8DBC;
  text-align: center;
}


/* CAMBIAR NOMBRE LUEGO */
.trick__container {
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  padding-top: 1rem;
}
.trick__content {
  position: relative;
  background: var(--container-color);
  border-radius: 1rem;
  padding: 1.5rem 0 1rem 0;
  text-align: center;
  overflow: hidden;
}
.trick__img {
  width: 90px;
  transition: 0.3s;
}
.trick__subtitle,
.trick__price {
  display: block;
}
.trick__subtitle {
  font-size: var(--smaller-font-size);
  margin-bottom: var(--mb-0-5);
}
.trick__title,
.trick__price {
  color: var(--title-color);
  font-weight: var(--font-medium);
  font-size: var(--normal-font-size);
}
.trick__button {
  display: inline-flex;
  padding: 0.5rem;
  border-radius: 0.25rem 0.25rem 0.75rem 0.25rem;
  position: absolute;
  right: -3rem;
  bottom: 0;
}
.trick__icon {
  font-size: 1.25rem;
  color: var(--title-color);
}
.trick__content:hover .trick__img {
  transform: translateY(-0.5rem);
}
.trick__content:hover .trick__button {
  right: 0;
}
/* DISCOUNT */
.discount__container {
  background: var(--container-color);
  border-radius: 1rem;
  padding: 2.5rem 0 1.5rem;
  row-gap: 0.75rem;
}
.discount__data {
  text-align: center;
}
.discount__title {
  font-size: var(--h2-font-size);
  margin-bottom: var(--mb-2);
}
.discount__img {
  width: 200px; /* Ancho de la imagen */
  
  /* Usando Flexbox */
  display: flex;
  justify-content: center;
  
  /* Usando text-align */
  display: block;
  margin: 0 auto;
  
  /* Usando grid */
  justify-self: center;
  align-self: center;
}

/* PRODUCTOS NUEVOS */
.new__container {
  padding-top: 1rem;
}
.new__img {
  width: 120px;
  margin-bottom: var(--mb-0-5);
  transition: 0.3s;
}
.new__content {
  position: relative;
  background: var(--container-color);
  width: 242px;
  padding: 2rem 0 1.5rem 0;
  border-radius: 0.75rem;
  text-align: center;
  overflow: hidden;
}
.new__tag {
  position: absolute;
  top: 8%;
  left: 8%;
}
.new__title {
  font-size: var(--normal-font-size);
  font-weight: var(--font-medium);
}
.new__subtitle {
  display: block;
  font-size: var(--small-font-size);
  margin-bottom: var(--mb-0-5);
}
.new__prices {
  display: inline-flex;
  align-items: center;
  column-gap: 0.5rem;
}
.new__price {
  font-weight: var(--font-medium);
  color: var(--title-color);
}
.new__discount {
  color: var(--first-color);
  font-size: var(--smaller-font-size);
  text-decoration: line-through;
  font-weight: var(--font-medium);
}
.new__button {
  display: inline-flex;
  padding: 0.5rem;
  border-radius: 0.25rem 0.25rem 0.75rem 0.25rem;
  position: absolute;
  bottom: 0;
  right: -3rem;
}
.new__icon {
  font-size: 1.25rem;
}
.new__content:hover .new__img {
  transform: translateY(-0.5rem);
}
.new__content:hover .new__button {
  right: 0;
}
/* DESCRIPCIÓN DE NUEVOS */
.newsletter__description {
  text-align: center;
  margin-bottom: var(--mb-1-5);
}
.newsletter__form {
  background: var(--container-color);
  padding: 2rem;
  display: flex;
  flex-direction: column; /* Cambiamos la dirección del diseño a vertical */
  justify-content: center; /* Centramos verticalmente el contenido */
  align-items: center; /* Centramos horizontalmente el contenido */
  border-radius: 1.5rem; /* Aumentamos el radio de borde */
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.3); /* Hacemos la sombra más fuerte */
}

.newsletter__form input[type="email"],
.newsletter__form textarea,
.newsletter__form input[type="text"] {
  width: 100%; /* Hacemos que los campos de entrada ocupen todo el ancho */
  padding: 1rem; /* Aumentamos el espacio alrededor del campo */
  margin-bottom: 1.5rem; /* Añadimos espacio entre los campos */
  border: 1px solid #ccc; /* Agregamos un borde */
  border-radius: 0.5rem; /* Ajustamos el radio de borde */
  font-size: 1rem; /* Tamaño de fuente */
}

.newsletter__form button {
  padding: 1rem 2rem; /* Aumentamos el espacio alrededor del botón */
  background-color: var(--primary-color); /* Color de fondo */
  color: white; /* Color del texto */
  border: none; /* Quitamos el borde */
  border-radius: 0.5rem; /* Ajustamos el radio de borde */
  font-size: 1rem; /* Tamaño de fuente */
  cursor: pointer; /* Cambiamos el cursor */
  transition: background-color 0.3s ease; /* Agregamos una transición suave */
}

.newsletter__form button:hover {
  background-color: var(--primary-color-dark); /* Color de fondo en el hover */
}

.newsletter__input {
  width: 70%;
  padding: 0 0.5rem;
  background: none;
  color: var(--title-color);
}
.newsletter__input::placeholder {
  color: var(--text-color);
}
/* FOOTER */
.footer {
  position: relative;
  overflow: hidden;
}
.footer__img-one,
.footer__img-two {
  position: absolute;
  transition: 0.3s;
}
.footer__img-one {
  width: 100px;
  top: 6rem;
  right: -2rem;
}
.footer__img-two {
  width: 150px;
  bottom: 4rem;
  right: 4rem;
}
.footer__img-one:hover,
.footer__img-two:hover {
  transform: translateY(-0.5rem);
}
.footer__container {
  row-gap: 2rem;
}
.footer__logo {
  display: flex;
  align-items: center;
  column-gap: 0.5rem;
  margin-bottom: var(--mb-1);
  font-weight: var(--font-medium);
  color: var(--title-color);
}
.footer__logo-img {
  width: 20px;
}
.footer__description {
  margin-bottom: var(--mb-2-5);
}
.footer__social {
  display: flex;
  column-gap: 0.75rem;
}
.footer__social-link {
  display: inline-flex;
  background: var(--container-color);
  padding: 0.25rem;
  border-radius: 0.25rem;
  color: var(--title-color);
  font-size: 1rem;
}
.footer__social-link:hover {
  background: var(--body-color);
}
.footer__title {
  font-size: var(--h3-font-size);
  margin-bottom: var(--mb-1);
}
.footer__links {
  display: grid;
  row-gap: 0.35rem;
}
.footer__link {
  font-size: var(--small-font-size);
  color: var(--text-color);
  transition: 0.3s;
}
.footer__link:hover {
  color: var(--title-color);
}
.footer__copy {
  display: block;
  text-align: center;
  font-size: var(--smaller-font-size);
  margin-top: 4.5rem;
}
/* SCROLL UP */
.scrollup {
  position: fixed;
  background: var(--container-color);
  right: 1rem;
  bottom: -20%;
  display: inline-flex;
  padding: 0.3rem;
  border-radius: 0.25rem;
  z-index: var(--z-tooltip);
  opacity: 0.8;
  transition: 0.4s;
}
.scrollup__icon {
  font-size: 1.25rem;
  color: var(--title-color);
}
.scrollup:hover {
  background: var(--container-color);
  opacity: 1;
}
/* Mostrar Scroll Up*/
.show-scroll {
  bottom: 3rem;
}
/* BAR SCROLL */
/* Para dispositivos pequeños */
@media screen and (max-width: 320px) {
  .container {
    margin-left: var(--mb-1);
    margin-right: var(--mb-1);
  }
  .home__img {
    height: 200px;
  }
  .home__buttons {
    flex-direction: column;
    width: max-content;
    row-gap: 1rem;
  }
  .category__container,
  .trick__container {
    grid-template-columns: 0.8fr;
    justify-content: center;
  }
}
/* Para dispositivos medianos */
@media screen and (min-width: 576px) {
  .about__container {
    grid-template-columns: 0.8fr;
    justify-content: center;
  }
  .newsletter__container {
    display: grid;
    grid-template-columns: 0.7fr;
    justify-content: center;
  }
  .newsletter__description {
    padding: 0 3rem;
  }
}
@media screen and (min-width: 767px) {
  body {
    margin: 0;
  }

  .section {
    padding: 7rem 0 2rem;
  }
  .nav {
    height: calc(var(--header-height) + 1.5rem);
  }
  .nav__img,
  .nav__close,
  .nav__toggle {
    display: none;
  }
  .nav__list {
    flex-direction: row;
    column-gap: 3rem;
  }
  .nav__link {
    text-transform: initial;
    font-weight: initial;
  }
  .home__content {
    padding: 8rem 0 2rem;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
  }
  .home__img {
    height: 300px;
  }
  .swiper-pagination {
    margin-top: var(--mb-2);
  }

  .category__container {
    grid-template-columns: repeat(3, 200px);
    justify-content: center;
  }

  .about__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }
  .about__title,
  .about__data {
    text-align: initial;
  }
  .about__img {
    width: 250px;
  }
  .trick__container {
    grid-template-columns: repeat(3, 200px);
    justify-content: center;
    gap: 2rem;
  }
  .discount__container {
    grid-template-columns: repeat(2, max-content);
    justify-content: center;
    align-items: center;
    column-gap: 3rem;
    padding: 3rem 0;
    border-radius: 3rem;
  }
  .discount__img {
    width: 350px;
    order: -1;
  }
  .discount__data {
    padding-right: 6rem;
  }
  .newsletter__container {
    grid-template-columns: 0.5fr;
  }
  .footer__container {
    grid-template-columns: repeat(4, 1fr);
    justify-items: center;
    column-gap: 1rem;
  }
  .footer__img-two {
    right: initial;
    bottom: 0;
    left: 15%;
  }
}
/* Para dispositivos largos */
@media screen and (min-width: 992px) {
  .container {
    margin-left: auto;
    margin-right: auto;
  }
  .section__title {
    font-size: var(--h1-font-size);
    margin-bottom: 3rem;
  }
  .home__content {
    padding-top: 9rem;
    gap: 3rem;
  }
  .home__group {
    padding-top: 0;
  }
  .home__img {
    height: 400px;
    transform: translateY(-3rem);
  }
  .home__indicator {
    top: initial;
    right: initial;
    bottom: 15%;
    left: 45%;
  }
  .home__indicator::after {
    top: 0;
    height: 75px;
  }
  .home__details-img {
    bottom: 0;
    right: 58%;
  }
  .home__title {
    margin-bottom: var(--mb-1-5);
  }
  .home__description {
    margin-bottom: var(--mb-2-5);
    padding-right: 2rem;
  }
  .category__container {
    column-gap: 8rem;
  }
  .category__img {
    width: 200px;
  }
  .about__container {
    column-gap: 7rem;
  }
  .about__img {
    width: 350px;
  }
  .about__description {
    padding-right: 2rem;
  }
  .trick__container {
    gap: 3.5rem;
  }
  .trick__content {
    border-radius: 1.5rem;
  }
  .trick__img {
    width: 110px;
  }
  .trick__title {
    font-size: var(--h3-font-size);
  }
  .discount__container {
    column-gap: 7rem;
  }
  .new__content {
    width: 310px;
    border-radius: 1rem;
    padding: 2rem 0;
  }
  .new__img {
    width: 150px;
  }
  .new__img,
  .new__subtitle {
    margin-bottom: var(--mb-1);
  }
  .new__title {
    font-size: var(--h3-font-size);
  }
  .footer__copy {
    margin-top: 6rem;
  }
}
@media screen and (min-width: 1200px) {
  .home__img {
    height: 420px;
  }
  .swiper-pagination {
    margin-top: var(--mb-2-5);
  }
  .footer__img-one {
    width: 120px;
  }
  .footer__img-two {
    width: 180px;
    top: 30%;
    left: -3%;
  }
}
/* KEYFRAMES */
@keyframes floating {
  0% {
    transform: translate(0, 0px);
  }
  50% {
    transform: translate(0, 15px);
  }
  100% {
    transform: translate(0, -0px);
  }
}
.skull-blur {
  position: absolute;
  width: 680px;
  height: 632px;
  left: -79px;
  top: 75%;
  background: linear-gradient(
    142.97deg,
    rgba(0, 255, 133, 0.3) 17.43%,
    rgba(63, 239, 60, 0.22) 73.23%
  );
  filter: blur(157.708px);
}


/* PARTE DE ECHALE UN VISTAZO */


.fas.fa-arrow-right.new {
  opacity: 0;
  font-size: 18px;
  color: #fff;
  will-change: transform;
  -webkit-transform: scale(0.1);
  transform: scale(0.1);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

body.new {
  background-color: #E6E5E1;
  width: 100vw;
  height: 100vh;
}

.container2.new {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.container2.new .card.new {
  position: relative;
  width: 500px;
  height: 200px;
  background-color: #fff;
  overflow: hidden;
  margin-bottom: 4px;
}

.container2.new .card.new:before,
.container2.new .card.new:after {
  content: "";
  z-index: 99;
  position: absolute;
  left: 32px;
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 16px;
}

.container2.new .card.new:before {
  top: -10px;
  background-color: #E6E5E1;
}

.container2.new .card.new:after {
  bottom: -10px;
  background-color: #E6E5E1;
}

.container2.new .card.new ul {
  z-index: 99;
  position: absolute;
  left: 39px;
  top: 5px;
  list-style-type: none;
}

.container2.new .card.new ul li {
  width: 2px;
  height: 2px;
  border-radius: 2px;
  margin: 6px 0;
  background-color: #E6E5E1;
}

.container2.new .card.new h2 {
  z-index: 99;
  font-family: "Poppins", sans-serif;
  position: absolute;
  bottom: 0;
  right: 130px;
  font-size: 60px;
  font-weight: 700;
  color: #fff;
}

.container2.new .card.new .fas.fa-arrow-right.new {
  z-index: 100;
  position: absolute;
  right: 75px;
  bottom: 25px;
  font-size: 40px;
  cursor: pointer;
}

.container2.new .card.new p {
  z-index: 99;
  position: absolute;
  top: 20px;
  right: 70px;
  color: var(--sub);
  opacity: 0.7;
  font-size: 12px;
  letter-spacing: 1px;
  writing-mode: vertical-lr;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.container2.new .card.new .pic {
  z-index: 100;
  width: 400px;
  height: 200px;
  background-size: 100% 100%;
  filter: grayscale(100%);
}

.container2.new .card.new .social {
  position: absolute;
  left: 60px;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 180px;
  height: 64px;
  border-radius: 80px;
}

.container2.new .card.new .social i {
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

.container2.new .card.new .social i:nth-of-type(1) {
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
}

.container2.new .card.new .social i:nth-of-type(2) {
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

.container2.new .card.new .social i:nth-of-type(3) {
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

.container2.new .card.new .social i:nth-of-type(4) {
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.container2.new .card.new:hover i {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.container2.new .card.new button {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 30px;
  height: 30px;
  background-color: #DA4D1D;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  outline: none;
  transition: all 0.3s ease;
  mix-blend-mode: hard-light;
}

.container2.new .card.new:hover button {
  transform: scale(16.5);
}

.container2.new .card.new:hover p {
  color: #fff;
}

.container2.new .card.new:hover .pic {
  filter: grayscale(0);
}

.container2.new .card2.new .pic {
  background-image: url("./IDEAS/img/fondo1.png");
}


.container2.new .card2.new button {
  background-color: var(--sub);
}

.dr.new {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 100px;
}

