
:root {

  /**
   * coloress
   */

  --white: #fff;
  --light-grey: #e8e8e8;
  --black: hsl(0, 0%, 0%);
  --blue: #0648a8;
  --grey: #505050;

  /**
   * tipografia
   */

  --ff-poppins: "Poppins", sans-serif;
  --ff-archivo-black: "Archivo Black", sans-serif;
  
  --headline-lg: 5rem;
  --headline-md: 3rem;
  --headline-sm: 2rem;
  --title-lg: 1.8rem;
  --title-md: 1.5rem;
  --title-sm: 1.4rem;
  
  --fw-500: 500;
  --fw-700: 700;



  --section-padding: 120px;



  --shadow-1: 0px 2px 20px hsla(209, 36%, 72%, 0.2);
  --shadow-2: 0 4px 16px hsla(0, 0%, 0%, 0.06);



  --radius-circle: 50%;
  --radius-12: 12px;
  --radius-6: 6px;
  --radius-4: 4px;

  /**
   * transition
   */

  --transition-1: 0.25s ease;
  --transition-2: 0.5s ease;
  --transition-3: 1s ease;
  --cubic-in: cubic-bezier(0.51, 0.03, 0.64, 0.28);
  --cubic-out: cubic-bezier(0.05, 0.83, 0.52, 0.97);

}


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

li { list-style: none; }

a,
img,
span,
time,
input,
button,
ion-icon { display: block; }

a {
  color: inherit;
  text-decoration: none;
}

img { height: auto; }

input,
button {
  background: none;
  border: none;
  font: inherit;
}

input {
  width: 100%;
  outline: none;
}

button { cursor: pointer; }

ion-icon { pointer-events: none; }

address { font-style: normal; }

html {
  font-size: 10px;
  font-family: var(--ff-rubik);
  scroll-behavior: smooth;
}

body {
  background-color: var(--white);
  font-family: var(--ff-poppins);
  font-size: 1.6rem;
  color: var(--black);
  line-height: 1.8;
  overflow: hidden;
}

body.loaded { overflow-y: visible; }

body.nav-active { overflow: hidden; }




.header .container { padding-inline: 16px; }

.headline-lg {
  font-size: var(--headline-lg);
  color: var(--white);
  font-weight: var(--fw-500);
  line-height: 1.2;
}

.headline-md {
  font-size: var(--headline-md);
  font-weight: var(--fw-700);
}

.headline-lg,
.headline-md { font-family: var(--ff-oswald); }

.headline-md,
.headline-sm { line-height: 1.3; }

.headline-md,
.headline-sm { color: var(--midnight-green); }

.headline-sm { font-size: var(--headline-sm); }

.title-lg { font-size: var(--title-lg); }

.title-md { font-size: var(--title-md); }

.title-sm { font-size: var(--title-sm); }

.social-list { display: flex; }

.section { padding-block: var(--section-padding); }

.has-before,
.has-after {
  position: relative;
  z-index: 1;
}

.has-before::before,
.has-after::after {
  content: "";
  position: absolute;
}

.btn {
  background-color: var(--verdigris);
  color: var(--black);
  font-weight: var(--fw-700);
  padding: 12px 36px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: var(--radius-6);
  overflow: hidden;
}

.btn::before {
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--eerie-black);
  border-radius: var(--radius-6);
  transition: var(--transition-2);
  z-index: -1;
}

.btn:is(:hover, :focus-visible)::before { transform: translateX(100%); }

.w-100 { width: 100%; }

.grid-list {
  display: grid;
  gap: 40px 28px;
}

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

[data-reveal] {
  opacity: 0;
  transition: var(--transition-2);
}

[data-reveal].revealed { opacity: 1; }

[data-reveal="bottom"] { transform: translateY(50px); }

[data-reveal="bottom"].revealed { transform: translateY(0); }

[data-reveal="left"] { transform: translateX(-50px); }

[data-reveal="right"] { transform: translateX(50px); }

[data-reveal="left"].revealed,
[data-reveal="right"].revealed { transform: translateX(0); }





/*-----------------------------------*\
  #PRELOADER
\*-----------------------------------*/

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--verdigris);
  display: grid;
  place-items: center;
  z-index: 6;
  transition: var(--transition-1);
}

.preloader.loaded {
  visibility: hidden;
  opacity: 0;
}

.preloader .circle {
  width: 50px;
  height: 50px;
  border: 4px solid var(--white);
  border-radius: var(--radius-circle);
  border-block-start-color: transparent;
  animation: rotate360 1s ease infinite;
}

@keyframes rotate360 {
  0% { transform: rotate(0); }
  100% { transform: rotate(1turn); }
}





/*-----------------------------------*\
  #HEADER
\*-----------------------------------*/

.header .btn { display: none; }

.header {
  padding: 10px;
  top: 0;
  left: 0;
  width: 100%;
  padding-block: 0px;
  z-index: 1000;
}

.header.active {
  position: fixed;
  background-color: var(--white);
  animation: headerActive 0.5s ease forwards;
  box-shadow: 0px 0px 20px 0px black;
}

@keyframes headerActive {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(0); }
}

.header > .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-open-btn {
  color: var(--black);
  font-size: 4rem;
}

.navbar,
.overlay {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100vh;
}

.navbar {
  right: -300px;
  max-width: 300px;
  background-color: var(--rich-black-fogra-29);
  z-index: 1001;
  transition: 0.25s var(--cubic-in);
  visibility: hidden;
  /* display: flex; */
  display: block;
  align-items: center;
}

.navbar.active {
  transform: translateX(-300px);
  visibility: visible;
  transition: 0.5s var(--cubic-out);
}

.navbar-top {
  position: relative;
  padding-inline: 25px;
  padding-block: 55px 100px;
}

.nav-close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  color: var(--black);
  font-size: 2.8rem;
}

.navbar-list {
  /* margin-block-end: 0px; */
  border-block-end: 1px solid var(--white);
  /* display: flex; */
  display: block;
  justify-content: center;
  align-items: center;
}

/* .navbar-items-container {
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: center;
} */

.navbar-item {
  border-block-start: 1px solid var(--white);
}

/* .navbar-item:hover {
  background-color: var(--grey);
} */

.navbar-link {
  color: var(--blue);
  text-transform: uppercase;
  padding: 10px 24px;
  font-weight: normal;
  font-size: 15px;
  transition: all 500ms ease;
}

.navbar-link:hover {
  background-color: var(--grey);
  color: var(--white);
}

.icono-carrito-container {
  width: auto;
  display: flex;
  align-items: initial;
  justify-content: center;
}

.sin-background:hover {
  background-color: transparent;
}

.icono-carrito {
  width: 30px;
  height: 30px;
}
.cls-1 {
  transition: all 500ms ease;
}

/* .sin-background:hover > .icono-carrito ~ .cls-1 {
  fill: var(--blue);
} */

.cantidad-carrito {
  color: var(--white);
  width: 20px;
  height: 20px;
  font-size: 11px;
  background-color: var(--blue);
  text-align: center;
  border-radius: 100%;
}

.above-header {
  background-color: var(--blue);
  color: var(--white);
  text-align: center;
  font-style: italic;
}

.icono-sesion-container {
  display: none;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.icono-sesion {
  position: absolute;
  width: 30px;
  height: 30px;
}

.social-list {
  justify-content: center;
  gap: 20px;
  color: var(--blue);
  font-size: 1.8rem;
}

.overlay {
  right: -100%;
  background-color: var(--black);
  opacity: 0.3;
  visibility: hidden;
  transition: var(--transition-2);
  z-index: 2;
}

.overlay.active {
  transform: translateX(-100%);
  visibility: visible;
}

.nav-set{
  display: flex;
  align-items: center;
  height: 60px;
  gap: 10px;
}
/*-----------------------------------*\
  #BODY
\*-----------------------------------*/

/* CAROUSEL */

.slideshow-container {
  width: 100dvw;
  position: absolute;
  z-index: -1;
}

.mySlides {
  display: none;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.sl-img{
  width: unset;
  height: 100%;
}
.dot {
  cursor: pointer;
  position: relative;
  height: 10px;
  width: 10px;
  margin: 0 2px;
  top: 450px;
  background-color: #777777;
  border-radius: 50%;
  display: inline-block;
  z-index: 999;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: var(--white);
}

.fade {
  animation-name: fade;
  animation-duration: 2s;
}

@keyframes fade {
  from {opacity: .6}
  to {opacity: 1}
}

.contenido-portada {
  z-index: 999;
  position: relative;
  font-size: 40px;
  font-family: var(--ff-poppins);
  top: 100px;
  left: 16px;
  line-height: 1.1;
  font-size: 3rem;
  color: #fff;
  line-height: 50px;
  font-family: var(--ff-archivo-black);
}

.shadow {
  position: relative;
  width: 100%;
  height: 300px;
  top: 235px;
  background: var(--grey);
  background: linear-gradient(0deg, var(--grey) 10%, transparent 100%);
}

.iconos-container {
  margin-top: 220px;
  width: 100%;
  height: auto;
  background-color: var(--grey);
}

.iconos-container > div > h2 {
  color: var(--white);
  font-family: var(--ff-archivo-black);
  text-align: center;
  font-size: 3rem;
  line-height: 1.2;
}

.portaba-btn {
  background-color: var(--white);
  position: relative;
  z-index: 999;
  width: 300px;
  padding: 20px 5px;
  color: var(--blue);
  font-weight: bold;
  font-size: 13px;
  text-align: center;
  top: 60dvh;
  left: 50%;
  transition: all 500ms ease;
  transform: translate(-50%);
}

.portaba-btn:hover{
  background-color: var(--blue);
  color: var(--white);
}

.iconos-cards {
  display: flex;
  justify-content: space-around;
  margin-top: 60px;
  flex-direction: column;
  gap: 40px;
}

.icono > div {
  width: 100%;
  display: flex;
  justify-content: center;
}

.icono > div > img {
  width: 30%;
  text-align: center;
}

.icono > p {
  color: var(--white);
  text-align: center;
  width: 100%;
  margin-top: 20px;
  line-height: 20px;
  font-size: 16px;
}

.first-grid {
  display: contents;
  width: 100%;
  grid-template-columns: 60% 40%;
  gap: 10px;
}

.second-grid {
  display: contents;
  width: 100%;
  grid-template-columns: 40% 60%;
  gap: 10px;
  margin-top: 10px;
}

.titular {
  position: relative;
}

.titular > img{
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.titular > h3{
  color: var(--white);
  font-family: var(--ff-poppins);
  font-weight: 400;
  z-index: 2;
  top: 75%;
  left: 40px;
  font-size: 25px;
  position: absolute;
}

.titular > p {
  color: var(--white);
  z-index: 2;
  top: 85%;
  left: 40px;
  position: absolute;
  font-size: 13px;
}

/* .header.active {
  position: fixed;
  background-color: var(--rich-black-fogra-29);
  animation: headerActive 0.5s ease forwards;
  backdrop-filter: blur(13px);
}

@keyframes headerActive {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(0); }
} */

.ver-en-productos-link {
  text-decoration: underline 1px rgba(0, 0, 0, 0);
  text-underline-offset: 4px;
  transition: text-decoration-color 500ms;
}

.ver-en-productos-link:hover {
  text-decoration-color: rgba(255, 255, 255, 1);
}

.shadow-blue {
  width: 100%;
  height: 100px;
  position: absolute;
  top: 72%;
  background: rgb(6,72,168);
  background: linear-gradient(0deg, rgba(6,72,168,1) 5%, rgba(34,193,195,0) 100%);
}

.shadow-grey {
  width: 100%;
  height: 100px;
  top: 72%;
  position: absolute;
  background: rgb(119,119,119);
  background: linear-gradient(0deg, rgba(119,119,119,1) 5%, rgba(34,193,195,0) 100%);
}

.populares-section > h2 {
  color: var(--blue);
  font-size: 35px;
  text-align: center;
  font-family: var(--ff-archivo-black);
}

.populares-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 10px;
}

.popular-card {
  transition: all 100ms ease;
}

.popular-card:hover {
  /* border: var(--blue) solid 1px; */
  outline: var(--blue) solid 2px;
  outline-offset: var(--blue) solid -2px;
}

.popular-card:hover > button {
  background-color: var(--blue);
}

.imagen-popular-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.imagen-popular-container > img {
  width:  100%;
  transition: all 1s ease;
}
.imagen-popular-container > img:hover,  .imagen-popular-container > img:focus{
  width: 70%;
}
.texto-popular-card {
  background-color: var(--light-grey);
  height: 230px;
  padding: 25px 15px;
}

.producto-name {
  font-weight: bold;
  text-align: center;
  font-size: 14px;
}

.producto-descripcion {
  max-height: 100px;
  font-size: 14px;
  text-align: justify;
  line-height: 17px;
  margin-top: 15px;
  overflow: clip;
}
.pps{
    position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translate(-50%);
}
.producto-precio {
    
  color: var(--grey);
  text-align: center;
  font-size: 13px;
  font-weight: bold;
  margin-top: 20px;
}

.agregar-carrito-btn {
  background-color: var(--grey);
  color: var(--white);
  text-align: center;
  width: 100%;
  padding: 10px;
  font-weight: bold;
  transition: all 500ms ease;
}

.ver-mas-btn-container {
  width: 100%;
  margin-top: 100px;
  margin-bottom: 100px;
  display: flex;
  justify-content: center;
}

.ver-mas-btn {
  text-align: center;
  background-color: var(--blue);
  color: var(--white);
  width: 250px;
  padding: 10px 0;
  font-weight: bold;
  transition: all 500ms ease;
}

.ver-mas-btn:hover {
  background-color: var(--white);
  color: var(--blue);
}

.ver-mas-btn2 {
  text-align: center;
  background-color: var(--blue);
  color: var(--white);
  width: 250px;
  padding: 10px 0;
  font-weight: bold;
  transition: all 500ms ease;
}

.ver-mas-btn2:hover {
  background-color: #9aa0a6;
  color: var(--blue);
}
.logo { 
  margin-block-end: 0px; 
  padding: 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  
}

.logo > img {
  position: absolute;
  width: 80px;
}
/*-----------------------------------*\
  #productos
\*-----------------------------------*/
.filt{
 width: 100%;
 background-color: #043681;
 min-height: 30px;
}
.cate{
  width: 100%;
}
.busc{
  width: 100%;
}
.cont-busc{
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding: 10px;
}
/* From Uiverse.io by TimTrayler */ 
.searchbar {
  font-size: 14px;
  font-family: arial, sans-serif;
  color: #202124;
  display: flex;
  z-index: 3;
  height: 44px;
  background: white;
  border: 1px solid #dfe1e5;
  box-shadow: none;
  border-radius: 24px;
  margin: 0 auto;
  
}

.searchbar:hover {
  box-shadow: 0 1px 6px rgb(32 33 36 / 28%);
  border-color: rgba(223,225,229,0);
}

.searchbar-wrapper {
  flex: 1;
  display: flex;
  padding: 5px 8px 0 14px;
}

.searchbar-left {
  font-size: 14px;
  font-family: arial, sans-serif;
  color: #202124;
  display: flex;
  align-items: center;
  padding-right: 13px;
  margin-top: -5px;
}

.search-icon-wrapper {
  margin: auto;
}

.search-icon {
  margin-top: 3px;
  color: #9aa0a6;
  height: 20px;
  line-height: 20px;
  width: 20px;
}

.searchbar-icon {
  display: inline-block;
  fill: currentColor;
  height: 24px;
  line-height: 24px;
  position: relative;
  width: 24px;
}

.searchbar-center {
  display: flex;
  flex: 1;
  flex-wrap: wrap;
}

.searchbar-input-spacer {
  color: transparent;
  flex: 100%;
  white-space: pre;
  height: 34px;
  font-size: 16px;
}

.searchbar-input {
  background-color: transparent;
  border: none;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, .87);
  word-wrap: break-word;
  outline: none;
  display: flex;
  flex: 100%;
  margin-top: -37px;
  height: 34px;
  font-size: 16px;
  max-width: 100%;
  width: 100%;
}

.searchbar-right {
  display: flex;
  flex: 0 0 auto;
  margin-top: -5px;
  align-items: stretch;
  flex-direction: row
}

.searchbar-clear-icon {
  margin-right: 12px
}

.voice-search {
  flex: 1 0 auto;
  display: flex;
  cursor: pointer;
  align-items: center;
  border: 0;
  background: transparent;
  outline: none;
  padding: 0 8px;
  width: 2.8em;
}
/*-----------------------------------*\
  #CONTACTO
\*-----------------------------------*/
.con1{
  background-color: #e6e6e6;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.con2{
  width: 350px;
  padding: 20px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 20px;

}
.con3{
  width: 300px;
}
.con4{
  color: var(--gris);
  margin-top: 20px;
  font-weight: 400;
}
.con5{
  border: 1px solid #2f2f2f;
  width: 100%;
  padding: 5px 15px 5px 15px;
  border-radius: 13px;
  margin-top: 10px;
}
.con7{
  border: 1px solid #2f2f2f;
  width: 100%;
  padding: 5px 15px 5px 15px;
  border-radius: 10px;
  display: flex;
  margin-top: 13px;
}
.con8{
  border: 1px solid #2f2f2f;
  width: 100%;
  padding: 5px 15px 5px 15px;
  border-radius: 10px;
  display: flex;
  margin-top: 13px;
}
.con9{
  border: none;
  width: 100%;
  height: 70px;
}
.con10{
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: 20px;
}
.con13{
  display: flex;
  align-items: center;

}
.con11{
  width: 20px;
}
.con12{
  font-size: 1rem;
}
.con12b{
  font-size: 1.2rem;
}
.arm1{
    width: auto;
    filter: brightness(0.5);
}
/*-----------------------------------*\
  #PERFIL PRODUCTO
\*-----------------------------------*/
.pr11b{
  padding: 50px;
  background-color: #e6e6e6;
}
.pro1{
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
}
.pro2{
  width: 100%;
  min-width: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.pro3{
  position: relative;

}
.pro3b {
  width: 80vw;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  position: relative; /* Mantiene el contexto de posicionamiento */
}

.pro4 {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Asegura que la imagen mantenga proporciones y llene el contenedor */
  position: absolute;
  transition: transform 0.3s ease-out; /* Suaviza tanto el movimiento como el escalado */
  transform-origin: center; /* Define el centro de la imagen como punto de referencia para el escalado */
}

.pro5{
  width: 35px;
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 10px;
}
.pro6{
  width: 35px;
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 10px;
}

.pro7{
  width: 60%;
  overflow: auto;
  position: relative;
  padding: 20px;
}
.pro8{
  display: inline-flex;
  gap: 10px;
  
  
}
.pro8b{
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.pro9{
width: 100%;
}
.pro11{
  position: absolute;
  top: 40%;
  z-index: 2;
  width: 20px;
  right: 5px;
  opacity: 1;
  transition: all 0.5s ease;
}
.pro12{
  position: absolute;
  top: 40%;
  z-index: 2;
  width: 20px;
  left: 5px;
  opacity: 0;
}
.ocult{
  opacity: 0;
}
.mostr{
  opacity: 1;
}
/*info*/
.pro13{
  width: 100%;

}
.pro14{
  margin-top: 0px;
}
.pro15{
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 3rem;
}
.pro16{
  font-weight: 500;
}
.pro17{
  width: 100%;
  display: flex;
  gap: 20px;
  align-items: center;
}
.pro18{
  font-size: 3rem;
  font-weight: 500;
}
.pro19{
  font-size: 1.8rem;
  font-weight: 100;
}
.pro20{
  display: flex;
  align-items: flex-end;
  gap: 15px;
  margin-bottom: 50px;
}
.pro21{
  display: flex;
  align-items: center;
  color: #f7ba02;
  gap: 0;
  font-size: 24px;
}
.pro27{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
}
/*-----------------------------------*\
  #FOOTER
\*-----------------------------------*/

.footer {
  background-color: var(--grey);
  padding-bottom: 40px;
}

.top-footer {
  display: grid;
  grid-template-columns: repeat(1, 1fr); 
  justify-items: center;
}

.logo-footer {
  width: 150px;
}

.navegacion-footer, .contacto-footer, .registro-link-footer {
  color: var(--white);
  margin-top: 30px;
}

.navegacion-footer > h3, .contacto-footer > h3, .registro-link-footer > h3 {
  margin-bottom: 20px;
}

.nav-list-footer, .contacto-footer > p, .registro-link-footer > p {
  line-height: 15px;
  font-size: 1.4rem;
}

.apartado-footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: baseline;
  margin-left: 10%;
}

.footer-form {
  display: flex;
  margin-bottom: 5px;
}

.email-input {
  background-color: var(--white);
  width: 80%;
  height: 25px;
  font-size: 12px;
  padding: 10px;
}

.submit-btn-container {
  background-color: var(--blue);
  color: var(--white);
  width: 20%;
  cursor: pointer;
  height: 25px;
  display: flex;
  align-items: center;
  transition: all 500ms ease;
  overflow: hidden;
}

.submit-btn-container:hover {
  background-color: var(--white);
}

.submit-btn-container:hover > .submit-btn {
  color: var(--blue);
}

.submit-btn {
  color: var(--white);
  font-size: 25px;
}

.engrane-icon {
  width: 100%;
  height: 100px;
  display: flex;
  justify-content: space-between;
  margin-top: 70px;
}

.down-footer {
  margin-top: 0px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
}

.powered-text {
  color: var(--white);
  font-size: 10px;
  display: flex;
  align-items: center;
}

.logo-nexxu {
  width: 50px;
}

.avisos-pivacidad-texto {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--light-grey);
  gap: 0px;
  font-size: 11px;
}

.avisos-pivacidad-texto > a {
  transition: all 500ms ease;
}

.avisos-pivacidad-texto > a:hover {
  color: var(--white);
}

/*-----------------------------------*\
  #BACK TO TOP
\*-----------------------------------*/

.back-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: var(--blue);
  color: var(--white);
  padding: 16px;
  font-size: 2rem;
  border-radius: var(--radius-circle);
  transition: var(--transition-1);
  opacity: 0;
  z-index: 3;
}

.back-top-btn:is(:hover, :focus-visible) { background-color: #043681; }

.back-top-btn.active {
  transform: translateY(-10px);
  opacity: 1;
}





/*-----------------------------------*\
  #MEDIA 
\*-----------------------------------*/

@media (min-width: 768px) {
  :root {
    --headline-lg: 8rem;
    --headline-md: 4.8rem;

  }
  .container {
    max-width: 750px;
    width: 100%;
    margin-inline: auto;
  }

  .header .btn { display: block; }

  .nav-open-btn { margin-inline-start: auto; }

  .header .container { gap: 40px; }


  .pr11b{
    padding: 100px;
  }
  .pro1{
    flex-direction: row;
  }
  .pro2{
    width: 50%;
    min-width: 500px;
  }
  .pro3b {
    width: 400px;
    height: 500px;
    border-radius: 60px;
  }
  .pro13{
    width: 50%;
  }
  .pro14{
    margin-top: 60px;
  }

  /**
   * FOOTER
   */

  .footer-top { grid-template-columns: 1fr 1fr; }

  .footer-brand { grid-column: 1 / 3; }

  .contact-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
  }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .footer-bottom .social-list { margin-block-start: 0; }

}




@media (min-width: 992px) {


  .container { max-width: 940px; }
  .icono-sesion-container{
    display: flex;
  }
  .sl-img{
    width: 100%;
    height: unset;
  }
  .contenido-portada {
    top: 200px;
    left: 100px;
    font-size: 4rem;
  }
  .portaba-btn {
    top: 400px;
  }
  .iconos-container > div > h2 {
    font-size: 4rem;
    line-height: 1.2;
  }
  .iconos-cards {
    flex-direction: row;
    gap: 0;
  }
  .icono > p {
    color: var(--white);
    text-align: center;
    width: 300px;
    margin-top: 40px;
    line-height: 20px;
    font-size: 16px;
  }
  .first-grid {
    display: grid;
  }
  .second-grid {
    display: grid;
  }
  .populares-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 100px;
  }

  .navegacion-footer, .contacto-footer, .registro-link-footer {
    color: var(--white);
    margin-top: unset;
  }
  .top-footer {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    justify-items: unset;
  }
  .apartado-footer {
    width: 200px;
    display: flex;
    flex-direction: column;
    align-items: unset;
    margin-left: unset;
  }
  .down-footer {
    margin-top: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
  }
  .avisos-pivacidad-texto {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: unset;
    color: var(--light-grey);
    gap: 15px;
    font-size: 11px;
  }
  .arm1{
    width: 100%;
    filter: brightness(0.5);
    }
    .cont-busc{
      display: flex;
      flex-direction: row;
      gap: 0;
      align-items: center;
      justify-content: space-between;
      padding: 20px;
    }
    .cate{
      width: 40%;
    }
    .busc{
        width: auto;
    }
}



@media (min-width: 1200px) {

  .container { max-width: 1200px; }



  /**
   * HEADER
   */

  .header { padding-block: 0px; }

  .nav-open-btn,
  .overlay,
  .navbar-top,
  .navbar .social-list { display: none; }

  .navbar,
  .navbar.active,
  .navbar-list {
    all: unset;
    display: block;
  }

  .navbar { margin-inline-start: auto; }

  .navbar-list {
    display: flex;
    /* gap: 8px; */
   /*  align-items: center; */
  }

  .navbar-item { border-block-start: none; }

  .navbar-link {
    --title-md: 1.8rem;
    font-weight: var(--fw-500);
    height: 100%;
    padding-inline: 16px;
    text-transform: capitalize;
    padding-block: 16px;
  }


  /**
   * FOOTER
   */

  .footer { background-size: auto; }

  .footer-top { grid-template-columns: repeat(4, 1fr); }

  .footer-brand {
    grid-column: 1 / 5;
    padding: 28px 56px;
    display: grid;
    grid-template-columns: 0.3fr 1fr;
    align-items: center;
  }

  .footer .logo { margin-block-end: 0; }

  .contact-list { justify-content: space-between; }

  .contact-list::after {
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background-color: var(--white_a20);
  }

  .contact-item { margin-block-start: 0; }

}