* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  user-select: none;
}

body {
  width: 100%;
  background-color: #000000;

  background-image:
    linear-gradient(135deg,
      #7B2EE7 0%,
      #ad9eff 33%,
      #24E2FA 66%,
      #3221D9 100%);

  /* background-image: url(../img/dusty_grunge_pattern.png); */

  background-size: 100% auto;
  /* background-attachment: fixed; */
  /* opcional: para efecto de parallax */
}

/* .body-filter {
  background: 
  url("../img/dusty_grunge_pattern_white.png"),
  rgba(43, 34, 49, 0.7);
} */

.body-filter {
  background:
    url("../img/dusty_grunge_pattern_white.png"),
    rgba(43, 34, 49, 0.4);
  background-blend-mode: overlay;
  /* overlay, multiply, screen, soft-light */
}

#canvas1 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(#6dc0ff, #852ba8);
  z-index: -1;
}

/* NAVEGADOR ____________________________________________________________________ */

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 30px;
  background-color: #222;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logo {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;

  cursor: pointer;
}

.logo-img {
  width: 4em;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-size: 0.9rem;
  padding: 0.5em 1em;
  margin: 0;
}

.nav-links a:hover {
  color: #d445ff;
}

.nav-links a.activo {
  background-color: #9245a1;
  border-radius: 25px 2px 25px 2px;
  padding: 0.5em 2em;
  color: #fff;
}

/* BOTONES DE WPP, IG ___________________________________________________________*/

.social-buttons {
  position: fixed;
  bottom: 50px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 998;
}

.social-buttons .btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: transform 0.2s;
}

.social-buttons .btn:hover {
  transform: scale(1.2);
}

.social-buttons .btn img {
  width: 65%;
  height: 65%;
}

/* BOTON de volver arriba */
#scrollTopBtn {
  display: none;
  /* oculto al inicio */

  font-size: 1.5rem;
  color: #232d49;
  border: none;
}

.social-buttons .btn .whatsapp {
  /* background-color: greenyellow; */
  /* color: #fff; */
}

/* MODAL NOTICIAS ___________________________________________________________ */

/* Fondo oscuro detrás del modal */
.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 999;
}

/* El modal */
.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 15px 15px 10px 15px;
  border-radius: 6px;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  width: 70%;
  /* height: 90%; */
  text-align: center;
}

.title-modal {
  margin: 0 0 5px 0;
  padding: 0;
  text-align: start;
  color: #3f3f3f;
  font-size: 1rem;
}

.modal img {
  max-width: 100%;
  border-radius: 4px;
}

/* Botón de cerrar */
.close-btn {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 15px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
  border: 1px solid rgb(165, 165, 165);
  padding: 0px 5px 2px 5px;
  border-radius: 7px;
}

/* FOOTER __________________________________________________________________________ */

.footer {
  background-color: #222;
  color: white;
  padding: 40px 40px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.footer-row {
  display: flex;
  justify-content: space-around;
}

.footer-col h4 {
  margin-bottom: 10px;
}

.footer-col p {
  font-size: 14px;
  margin-bottom: 5px;
}

/* REDES */
.footer-redes {
  display: flex;
  gap: 20px;
  margin: 10px 0;
}

.footer-redes i {
  color: #fff;
}

/* ITEMS (medios de pago y de envio) */
.footer-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* 3 columnas */
  gap: 3px;
}

.footer-items .item {
  width: 100%;
  /* gap: 1em; */
}

.footer-items .item .item-img {
  /* width: 100%; */
  background-color: #fff;
  height: 1.5em;
  border: 1px solid #bbbbbb;
  border-radius: 3px;
  padding: 1px 3px;
}

.footer .info {
  text-align: center;
}

.footer .link-atencion {
  color: #cd7fec;
  text-decoration: none;
}

.footer .link-creador {
  color: #fff;
  /* text-decoration: none; */
}

/* RESPONSIVE CSS*/
/*-------------------------------------------------------------------------------------------------------------------- */

@media (max-width: 575px) {

  /* NAVEGADOR ________________________________________________ */

  .navbar {
    display: flex;
    flex-direction: column;

    justify-content: space-between;
    gap: 0.75em;

    align-items: center;
    padding: 0.5em 1em 1.5em 1em;
    background-color: #222;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }

  .logo {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
  }

  .logo-img {
    width: 4em;
  }

  .nav-links a {
    font-size: 0.8rem;
    padding: 0.5em 1em;
    margin: 0;
  }

  .nav-links a.activo {
    border-radius: 25px 0px 25px 0px;
  }

  /* MODAL NOTICIAS ________________________________________________ */

  /* El modal */
  .modal {
    width: 95%;
    /* height: 90%; */
    padding: 5px 5px 0px 5px;
    border-radius: 3px;
  }

  .title-modal {
    font-size: 0.6rem;
  }

  .modal img {
    border-radius: 3px;
  }

  /* Botón de cerrar */
  .close-btn {
    top: 4px;
    right: 5px;
    font-size: 10px;
    padding: 0 3px 1px 3px;
    border-radius: 3px;
  }

  /* FOOTER ____________________________________________________ */
  .footer {
    padding: 40px 40px;
    display: flex;
    flex-direction: column;
    gap: 1.5em;
  }

  .footer-row {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1em;
  }

  .footer .row-2 .info {
    text-align: start;
  }

  .footer-col h4 {
    margin-bottom: 10px;
  }

  .footer-col p {
    font-size: 14px;
    margin-bottom: 5px;
  }

  /* REDES */
  .footer-redes {
    display: flex;
    gap: 20px;
    margin: 10px 0;
  }

  /* ITEMS (medios de pago y de envio) */
  .footer-items {
    display: flex;
    flex-wrap: wrap;

    /* grid-template-columns: repeat(3, 1fr); */
    /* 3 columnas */

    gap: 3px;
  }

  .footer-items .item {
    /* width: 100%; */
    width: auto;
  }

  .footer-items .item .item-img {
    height: 1.5em;
    padding: 1px 3px;
  }

}

/*-------------------------------------------------------------------------------------------------------------------- */

@media (min-width: 576px) and (max-width: 767px) {

  /* NAVEGADOR ________________________________________________ */
  .nav-links a {
    font-size: 0.75rem;
    padding: 0.5em 1em;
    margin: 0;
  }

  /* MODAL NOTICIAS ________________________________________________ */

  /* El modal */
  .modal {
    width: 85%;
    /* height: 90%; */
  }

  .title-modal {
    font-size: 0.75rem;
  }

  /* FOOTER ________________________________________________ */
  .footer {
    padding: 40px 40px;
    display: flex;
    flex-direction: column;
  }

  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    gap: 1.25em 5em;
  }

  .footer .row-1 .col-1 {
    width: 100%;
  }

  .footer .row-2 .info {
    width: 100%;
  }

  .footer-col h4 {
    margin-bottom: 10px;
  }

  .footer-col p {
    font-size: 14px;
    margin-bottom: 5px;
  }

  /* REDES */
  .footer-redes {
    display: flex;
    gap: 20px;
    margin: 10px 0;
  }

  /* ITEMS (medios de pago y de envio) */
  .footer-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 columnas */
    gap: 3px;
  }

  .footer-items .item {
    width: 100%;
    /* gap: 1em; */
  }

  .footer-items .item .item-img {
    height: 1.5em;
    padding: 1px 3px;
  }

}

/*-------------------------------------------------------------------------------------------------------------------- */
/* Estilos para tablets grandes */
@media (min-width: 768px) and (max-width: 991px) {

  /* NAVEGADOR ________________________________________________ */
  .nav-links a {
    font-size: 0.8rem;
    padding: 0.5em 1em;
    margin: 0;
  }

  /* MODAL NOTICIAS ________________________________________________ */

  /* El modal */
  .modal {
    width: 85%;
    /* height: 90%; */
  }

  .title-modal {
    font-size: 0.85rem;
  }

  /* FOOTER ________________________________________________ */
  .footer {
    padding: 40px 40px;
    display: flex;
    flex-direction: column;
  }

  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    gap: 1.25em 5em;
  }

  .footer .row-1 .col-1 {
    width: 100%;
  }

  .footer .row-2 .info {
    width: 100%;
  }

  .footer-col h4 {
    margin-bottom: 10px;
  }

  .footer-col p {
    font-size: 14px;
    margin-bottom: 5px;
  }

  /* REDES */
  .footer-redes {
    display: flex;
    gap: 20px;
    margin: 10px 0;
  }

  /* ITEMS (medios de pago y de envio) */
  .footer-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 columnas */
    gap: 3px;
  }

  .footer-items .item {
    width: 100%;
    /* gap: 1em; */
  }

  .footer-items .item .item-img {
    height: 1.5em;
    padding: 1px 3px;
  }

}

/*-------------------------------------------------------------------------------------------------------------------- */
/* 6. Escritorio */
@media (min-width: 992px) {}