@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

.poppins-thin {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: normal;
  }

.poppins-extralight {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: normal;
  }
  
.poppins-light {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
  }
  
.poppins-regular {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  
.poppins-medium {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
  }

.poppins-semibold {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
  }
  
.poppins-bold {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
  }
  
.poppins-extrabold {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: normal;
  }
  
.poppins-black {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: normal;
  }
  
.poppins-thin-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: italic;
  }
  
.poppins-extralight-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: italic;
  }
  
.poppins-light-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: italic;
  }
  
.poppins-regular-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: italic;
  }
  
.poppins-medium-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: italic;
  }
  
.poppins-semibold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: italic;
  }
  
.poppins-bold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: italic;
  }
  
.poppins-extrabold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: italic;
  }
  
.poppins-black-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: italic;
  }


/* ____________________variables____________________ */
:root{
--color-azul-principal: #224792;
}


*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html{
  max-width: 100vw;
}

body{
  font-family: poppins;
  background: #ffffff;
  max-width: 100vw;
}

h1{
  font-weight: 700;
  color: var(--color-azul-principal);
}

h2{
  font-weight: 600;
}


/* modificación del navbar */

.btnactivo{
    padding: 0 10px 0 10px;
    background: var(--color-azul-principal);
    border-radius: 4px;
    margin-right: 5px;
}


.btnactivo:hover .txt-blanco{
    color: white;
}
/* modificación de enlaces */
.a-blanco{
    color: white;
}

.a-azul{
    color: var(--color-azul-principal);
}

.a-azul:hover{
    font-family: poppins;
    font-weight: 800;
    font-size: 16px;
    color:var(--color-azul-principal);
    margin: 0 3px; 

}

/* modificación de h1 */
.h1-azul{
    color: var(--color-azul-principal);
}


/* modificación de nav*/
#nav{
    box-shadow: 1px 3px 3px -3px rgba(0,0,0,0.75);
}

/* modificación del header */
nav{
    width: 100%;
    height: 80px;
}

.nav-link{
    font-family: poppins;
    font-weight: 700;
    font-size: 16px;
}

#navbarNav,
#navbarNav-1{
    background: #ffffff !important;
}

#navbarNav .a-blanco:link{
    color: white;
}
#navbarNav .a-blanco:visited{
    color: white;
}
#navbarNav .a-blanco:active{
    color: white;
}

main{
    width: 100%;
    height: calc(100vh - 87px);
}

.catalogo{
    width: 100%;
    height: 100%;
}

.navbar-toggler{
  background-color: #ffffff !important;
}
