@charset "utf-8";
/* CSS Document */
@import url("reset.css");
@font-face {
    font-family: 'ArgentumSans-ExtraBold';
    src: url('../../resources/fuentes/ArgentumSans-ExtraBold.ttf') format('truetype');
    font-weight: bold;
}
@font-face {
    font-family: 'ArgentumSans-Bold';
    src: url('../../resources/fuentes/ArgentumSans-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}
@font-face {
    font-family: 'ArgentumSans-Regular';
    src: url('../../resources/fuentes/ArgentumSans-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
:root {
    --fondo-claro: #F6F7FA;
    --azul--osc: #0057B8;
    --azul-claro: #0072CE;
    --color-morado: #582C83;
    --color-gris: #3B5266;
    --color-negro: #000;
    --fuente-principal: 'Saira', sans-serif;
    --fuente-secundariaRegular: 'ArgentumSans-Regular', sans-serif;
	--fuente-secundariaBold: 'ArgentumSans-Bold', sans-serif;
	--fuente-secundariaExtraBold: 'ArgentumSans-ExtraBold', sans-serif;
}
html {
    scroll-behavior:smooth;
}
textarea{
	resize: vertical;
}
/*SLIDER CATEGORIAS*/
.banner-categorias{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin: 50px auto; 
	width: 95%;
	padding-bottom: 3%;
}
.banner-categorias h1{
	color: var(--azul-claro);
	text-align: center;
	font-family: var(--fuente-secundariaExtraBold)!important;
	font-size: 2.2rem;
	font-style: normal;
	font-weight: 800;
	line-height: 40px; 
	letter-spacing: -0.35px;
	margin-top: 5%;
}
.product-box{
	display: flex;
	flex-direction: column;
	min-height: 540px;
	width: 352px;
	padding:15px;
	margin: 0px 20px;
	position: relative;
	overflow: hidden; /* Para evitar que el contenido se salga del contorno del contenedor */
    transition: transform 0.3s ease-in-out; /* Para animar el zoom */
}
.product-box:hover {
    transform: scale(1.05); /* Esto aplica el zoom al hacer hover */
}
.img-container{
	width: 100%;
	height: 100%;
	display: flex; 
	overflow: hidden;
	border-radius: 20px;
}
.p-img{
	width: 352px;
	height: 544px;
}

.p-img a,
.p-img{
	width: 100%;
	height: 100%;
	display: flex;
}
.p-img a img{
	width: 100%;
	height: 100%; 
	object-position: center;
	object-fit: contain;
}
.btn-vermas-catego {
    width: 138px;
    padding: 16px 24px;
    justify-content: center;
    align-items: center;
    gap: 12px;
    border-radius: 25px;
    border: 1px solid #0057B8;
    position: absolute;
    right: 10%;
    bottom: 12%;
    height: 48px;
    display: flex;
    z-index: 100;
    background-color: #FFFFFF; 
    transition: background-color 0.3s, color 0.3s;
}

.btn-vermas-catego a {
    font-family: var(--fuente-secundariaBold);
    color: var(--azul-claro);
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px; 
    text-decoration: none; 
}

.btn-vermas-catego:hover {
    background-color: var(--azul-claro);
}

.btn-vermas-catego:hover a {
    color: #FFFFFF; 
}
.p-codigo{
	font-family: var(--fuente-secundariaBold);
	color: var(--azul-claro);
	position: absolute;
	left: 8%;
	top: 7%;
	width: 100%;
	height: 24px;
	display: flex;
	justify-content: flex-start;
	z-index: 100;
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: 24px; /* 150% */
}


.catego-title{
	color: var( --color-gris);
	font-family: var(--fuente-secundariaBold);
	font-size: 24px;
	font-style: normal;
	font-weight: 600;
	line-height: 24px; /* 100% */
	position: absolute;
	left: 10%;
	bottom: 30%;
	width: 80%;
	height: 48px;
	display: flex;
	justify-content: flex-start;
	z-index: 100;
}
.catego-desc{
	color: var( --color-gris);
	font-family: var(--fuente-secundariaRegular);
	font-size: 15px;
	font-style: normal;
	font-weight: 400;
	line-height: 20px; /* 133.333% */
	position: absolute;
	left: 10%;
	bottom: 29%;
	max-width: 76%;
	height: 24px;
	display: flex;
	justify-content: flex-start;
	z-index: 100;
	width: auto;
}

.slider-btns {
    display: flex;
    width: 92%;
    margin: 30px 25px 10px 0;
    padding: 0px 0 0 40px;
    justify-content: flex-end;
}


.slider-btns button{
	position: static!important;
	transform: translate(26px,0);
	width: 24px;
	height: 24px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 10px;
	padding: 5px;
	border: 1px solid var( --color-gris);
	border-radius: 50%;
}

.glider-next:hover,
.glider-prev:hover  {
    background-color: var(--color-morado);
	fill:var(--fondo-claro);
	border-radius: 50%;
	border: 1px solid var( --color-morado);
}




@media screen and (max-width: 414px){
.banner-categorias h1{
        text-align: center;
		margin-top: 10%;
    }
.banner-categorias{
    width: 100%;
	margin: 0 5px 0 0;
    }
    	
/*
.slider{
		display: ;
	}
*/
.banner-box{
	display: flex;
	flex-direction: column;
	width: 100%;
	padding:0;
	margin: 0;
	position: relative;
}
.img-container-movil{
	width: 100%;
	height: 100%;
	display: flex; 
	overflow: hidden;
}
.p-img-movil{
	width: 100%;
	height: 544px;
}

.p-img-movil a,
.p-img{
	width: 100%;
	height: 100%;
}
.p-img-movil a img{
	width: 100%;
	height: 100%; 
	object-position: center;
	object-fit: contain;
}

.glider-h1 {
  color: var(--fondo-claro);
  font-family: var(--fuente-secundariaBold);
  font-size: 20px;
  font-weight: 600;
  line-height: 20px;
  position: absolute;
  bottom: 23vh; 
  left: 53%;
  transform: translateX(-50%);
  display: flex;
  z-index: 100;
  text-align: end;
}
 
}


/*ESCRITORIO*/
@media screen and (max-width:1020px){
	.banner{
	width: 100%;
	height: calc(100vh - 226px);	
	}
	.txt h1 {
	font-size: 24px;
	line-height: 20px;
	margin-bottom: 4px;
	}
	.txt p {
	font-size: 18px;
	line-height: 20px;
	margin-bottom: 0;
	}
	#btn-conoce{
		width: 212px;
		height: 48px;	
	}
	#btn-conoce2{
		width: 212px;
		height: 48px;	
	}
	#btn-conoce3{
		width: 212px;
		height: 48px;	
	}
	#btn-conoce a{
		text-align: center;
		font-size: 12px;
		font-style: normal;
		font-weight: 600;
		line-height: 2px;
		padding: 0;
	}
	#btn-conoce2 a{
		text-align: center;
		font-size: 12px;
		font-style: normal;
		font-weight: 600;
		line-height: 2px;
		padding: 0;
	}
	#btn-conoce3 a{
		text-align: center;
		font-size: 12px;
		font-style: normal;
		font-weight: 600;
		line-height: 2px;
		padding: 0;
	}
	
	.product-box {
		margin: 0 2px;
	}
	.catego-title{
		bottom: 26%;
		font-size: 20px;
		margin-left: 10px;
	}

	.btn-vermas-catego{
		width: 121px;
		height: 40px;
	}
	.btn-vermas-catego a{
		font-size: 15px;
	}
	.p-codigo{
		left: 14%;
		width: 142px;
	}
	
	.table-iconos h1{
		font-size: 22px;
	}
	.table-iconos a{
		font-size: 18px;
	}
	.text-morado{
		font-size: 32px;
		line-height: 0px;
		margin-top: 48px;
	}
	#monitor-banner{
		height: 371px!important;
	}
	#laptop-banner{
		height: 371px!important;
	}
	#teclado-banner{
		height: 185.5px!important;
	}
	#mouse-banner{
		height: 185.5px!important;
	}
	#telefono-morado{
		height: 540px!important;
	}

.catego-title {
    width: 236px;
}
.catego-desc {
    left: 13%;
	margin-right: 4%;
	bottom: 25%;
}
}

@media screen and (max-width: 800px){
	#btn-conoce{
	display: none;	
	}
	#btn-conoce2{
	display: none;
	}
	#btn-conoce3{
	display: none;	
	}
	.txt p {
    font-size: 12px!important;
    line-height: 12px!important;
    margin-bottom: 10px;
}
	.txt h1 {
    font-size: 22px;
    line-height: 16px;
    margin-bottom: 4px;
}
	.banner-susc h2{
	font-size: 1rem;
	line-height: 1rem;
	}
	.banner-susc h1 {
    font-size: 2rem;
    line-height: 2rem;
}
	.banner-susc p {
    margin-top: 1.5rem;
    font-size: 1rem;
}
	.banner-susc button {
    width: 9.5rem;
	height: auto;	
    min-height: 2.5rem;
	}
	.table-iconos h1 {
    font-size: 18px!important;
}
	.table-iconos a {
    font-size: 16px!important;
    line-height: 18px!important;
}
}
/*tablet*/
@media only screen and (max-width: 682px){
	.prev img{
		width: 30px!important;
		height: 30px!important;
	}
	.next img{
		width: 30px!important;
		height: 30px!important;
	}	
}
/*
@media only screen and (min-width: 606px){
    
}
*/
@media only screen and (min-width: 596px){
	.movil{
		display: none;
	}
}

@media only screen and (max-width: 597px){
    .banner-categorias h1 {
        text-align: center;
		margin-bottom:10%;
    }
	.carousel__contenedor{
		position: relative!important;
	}
	
	.carousel__next,
	.carousel__prev{
		position: absolute;
		display: block;
		width: 30px;
		height: 30px;
	    top: calc(50% - 35px)!important;
		cursor: pointer;
		line-height: 30px;
		text-align: center;
	}

	.carousel__prev{
		left: 30px;
		z-index: 2;
	}
	.carousel__next{
		right: 30px;
	}
	
}

@media screen and (min-width: 414px){
.banner-categorias h1{
        text-align: center;
/*        font-size: 1.3rem;*/
    }
.banner-categorias{
    width: 100%;
	margin: 0 5px 0 0;
    }
    	

.banner-box{
	display: flex;
	flex-direction: column;
	width: 100%;
	padding:0;
	margin: 0;
	position: relative;
}
.img-container-movil{
	width: 100%;
	height: 100%;
	display: flex; 
	overflow: hidden;
}
.p-img-movil{
	width: 100%;
	height: 544px;
}

.p-img-movil a,
.p-img{
	width: 100%;
	height: 100%;
}
.p-img-movil a img{
	width: 100%;
	height: 100%; 
	object-position: center;
	object-fit: contain;
}

.glider-h1 {
  color: var(--fondo-claro);
  font-family: var(--fuente-secundariaRegular);
  font-size: 20px;
  font-weight: 600;
  line-height: 20px;
  position: absolute;
  bottom: 23vh; 
  left: 53%;
  transform: translateX(-50%);
  display: flex;
  z-index: 100;
  text-align: end;
}


}













