@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Poppins:wght@400;500;600;700;800&display=swap');

/*
font-family: 'Oswald', sans-serif;
font-family: 'Poppins', sans-serif;
*/


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}

body {
    font-family: 'Poppins', sans-serif;
    
}

img {
    max-width: 100%;
}



header{
    background: url(img/header.jpg);
    background-size: cover;
    background-position:center;
    height: 300px;
}
header h1{
    text-align: center;
    font-size: 35px;
    /* background-color: #000; */
    color: #fff;
    padding: 30px 0;
}
.contenedor{
    max-width: 1200px;
    padding: 10px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    /* oculto lo que queda fuera del .contenedor */
    contain: paint;


}

header {
    display: flex;
    align-items: center;
    min-height: 10%;
    background-color: #ffffff;
    padding: 10px;

}

.menu {
    position: absolute;
    top: 4px;
    left: 0;
    right: 0%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.logo {
    font-size: 25px;
    color: #111111;
    text-transform: uppercase;
    font-weight: 800;
}


.menu .navbar ul li {
    position: relative;
    float: left;
 
}

.menu .navbar ul li a {
    font-size: 22px;
    padding: 20px;
    color: #111111;
    display: block;
}

#menu {
    display: none;
}

.menu-icono {
    width: 33px;
}

.menu label {
    cursor: pointer;
    display: none;
}

.submenu {
    position: relative;
}

.submenu #carrito {
    display: none;
    
}

.submenu:hover #carrito {
    display: block;
    position: absolute;
    right: 0%;
    backdrop-filter: blur(10px);
    top: 100%;
    z-index: 1;
    background-color: #4e4b5076;
    padding: 20px;
    min-width: 400px;
}


table {
    width: 100%;
}

th, td {
    color: #ffffff;
}

.borrar {
    background-color: #111111;
    border-radius: 50%;
    padding: 5px 10px;
    text-decoration: none;
    color: #ffffff;
    font-weight: 800;
    cursor: pointer;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
    padding: 30px;
    
}

.header-img {
    flex-basis: 50%;
    text-align: center;
    
}

.header-txt {
    flex-basis: 50%;
    text-align: center;
}

.header-txt h1 {
    font-size: 90px;
    text-transform: uppercase;
    line-height: 1;
    color: #111111;
    font-family: 'Oswald', sans-serif;
    margin-bottom: 15px;
}

.header-txt p {
    font-size: 20px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.btn-1 {
    display: inline-block;
    padding: 11px 25px;
    background-color: #111111;
    color: #ffffff;
    border-radius: 5px;
}


.ofert {
    padding: 100%
    display: flex;
    justify-content: space-between;
        /* oculto lo que queda fuera del .contenedor */
    contain: paint;
}

.ofert-1 {
    display: flex;
    align-items: center;
    flex-basis: calc(33.3% - 15px);
    background-color: #ffffff;
    padding: 30px;
}


.ofert-img {
    flex-basis: 100%;
    margin-right: 100%;
}

.ofert-img img {
    width: 100%;
}


.ofert-txt {
    flex-basis: 50%;
    text-align: center;
}

.ofert-txt h3 {
    color: #111111;
    font-family: 'Oswald', sans-serif;
    font-size: 25px;
    text-transform: uppercase;
    margin-bottom: 15px;
}


.btn-2 {
    display: inline-block;
    padding: 7px 10px;
    margin: 10px;
    background-color: #111111;
    color: #ffffff;
    border-radius: 5px;
    font-size: 15px;
}


.btn-pagar {
    display: inline-block;
    padding: 7px 10px;
    background-color: #111111;
    color: #ffffff;
    border-radius: 5px;
    font-size: 15px;
}


.products {
    padding: 100px 0;
    text-align: center;
}

.products h2 {
    color: #111111;
    font-family: 'Oswald', sans-serif;
    font-size: 50px;
    text-transform: uppercase;
    margin-bottom: 50px;
}

.contenedor .contenedor-items {
    display: grid;
  
    



    margin-top: 30px;
   
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-gap:30px;
    grid-row-gap: 30px;
    /* width: 60%; */
    width: 100%;
    transition: .3s;





}

.contenedor .contenedor-items .item {
    text-align: center;
 
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);

    max-width: 400px;
    margin: auto;
    border: 1px solid #666;
    border-radius: 10px;
    padding: 20px;
    transition: .3s;
    
    color: #111111;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
  

}
.contenedor .contenedor-items .item .img-item{
    width: 100%;
}

.contenedor .contenedor-items .item:hover{
    box-shadow: 30px #666;
    scale: 1.08;
}



.contenedor .contenedor-items .item .titulo-item{
    display: block;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
}
.contenedor .contenedor-items .item .precio-item{
    display: block;
    text-align: center;
    font-weight: bold;
    font-size: 22px;
}

.contenedor .contenedor-items .item .boton-item{
    display: block;
    margin: 10px auto;
    border: none;
    background-color: black;
    color: #fff;
    padding: 5px 15px;
    border-radius: 5px;
    cursor: pointer;
}



/* seccion carrito */
.carrito{
    border: 1px solid #666;
    width: 35%;
    margin-top: 30px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: auto;
    position: sticky !important;
    top: 0;
    transition: .3s;
    /* Estilos para ocultar */
    margin-right: -100%;
    opacity: 0;
}
.carrito .header-carrito{
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 30px 0;
}
.carrito .carrito-item{
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
    position: relative;
    border-bottom: 1px solid #666;
    padding: 20px;
}
.carrito .carrito-item img{
    margin-right: 20px;
}
.carrito .carrito-item .carrito-item-titulo{
    display: block;
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.carrito .carrito-item .selector-cantidad{
    display: inline-block;
    margin-right: 25px;
}
.carrito .carrito-item .carrito-item-cantidad{
    border: none;
    font-size: 18px;
    background-color: transparent;
    display: inline-block;
    width:30px;
    padding: 5px;
    text-align: center;
}
.carrito .carrito-item .selector-cantidad i{
    font-size: 18px;
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    border-radius: 50%;
    border: 1px solid #000;
    cursor: pointer;
}
.carrito .carrito-item .carrito-item-precio{
    font-weight: bold;
    display: inline-block;
    font-size: 18px;
    margin-bottom: 5px;
}
.carrito .carrito-item .btn-eliminar{
    position: absolute;
    right: 15px;
    top: 15px;
    color: #000;
    font-size: 20px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    border: 1px solid #000;
    cursor: pointer;
    display: block;
    background: transparent;
    z-index: 20;
}
.carrito .carrito-item .btn-eliminar i{
    pointer-events: none;
}

.carrito-total{
    background-color: #f3f3f3;
    padding: 30px;
}
.carrito-total .fila{
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 10px;
}
.carrito-total .btn-pagar{
    display: block;
    width: 100%;
    border: none;
    background: #000;
    color: #fff;
    border-radius: 5px;
    font-size: 18px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: .3s;
}
.carrito-total .btn-pagar:hover{
    scale: 1.05;
}








.product img {
    width: 300px;
    height: 400px;
    margin-bottom: 5px;
}

.product h3 {
    font-size: 20px;
    color: #111111;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    margin-bottom: 0px;
}

.product p, .precio {
    font-size: 25px;
    color: #111111;
    margin-bottom: 10px;
}

.precio {
    font-weight: 800;
}


.icons {
    padding: 50px 0 100px 0;
    display: flex;
    justify-content: space-between;
}

.icon-1 {
    flex-basis: calc(33.3% - 30px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px;
    background-color: #f5f5f5;
}

.icon-txt h3 {
    font-size: 20px;
    color: #111111;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}

.icon-txt p {
    font-size: 16px;
    color: #111111;
}

.blog {
    display: flex;
    justify-content: space-between;
    padding-bottom: 100%;
}

.blog-1 {
    flex-basis: calc(33.3% - 30px);
}

.blog-1 img {
    margin-bottom: 20px;
}

.blog-1 h3 {
    font-size: 20px;
    color: #111111;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.blog-1 p {
    font-size: 16px;
    color: #111111;
}


.footer {
    padding: 50px 0;
    background-color: #111111;
}

.footer-content {
    display: flex;
    justify-content: space-between;
}


.link h3 {
    font-size: 18px;
    color: #ffffff;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    margin-bottom: 20px;
}


.link a {
    font-size: 16px;
    color: #dcdcdc;
    display: block;
    margin-bottom: 10px;
}

        .marq {
            padding-top: 30px;
            padding-bottom: 30px;
        }

        .geek1 {
            font-size: 30px;
            font-weight: bold;
            color: #000;
            padding-bottom: 10px;
        }


@media (max-width:992px) {
    .menu {
        padding: 22px;
        
    }
    .menu label {
        display: initial;

    }


    .contenedor {
      display: block;
    }
    .contenedor-items{
        width: 100% !important;
    }
    .carrito{
        width: 100%;
    }



    
    .menu .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #4e4b5076;
        display: none;
        right: 0%;
        backdrop-filter: blur(10px);
        z-index: 1;
        padding: 20px;
        min-width: 400px;
    }
    .menu .navbar ul li {
        width: 100%;
    }
    .menu .navbar ul li a {
        color: #000000;
    }

    #menu:checked ~ .navbar {
        display: initial;
    }

    .logo {
        display: absolute;
    }

    .submenu:hover #carrito {
        min-width: 100%;
    }
    
    .header {
        min-height: 10%;
    }

    .header-content {
        padding: 50 0;
        flex-direction: column;
    }

    .header-img {
        display: none;
    } 

    .header-txt {
        flex-basis: 100%;
        text-align: center;
    }


    .header-txt h1 {
        font-size: 70px;
    }


    .ofert {
        padding: 0px 0px 0 0px;
        flex-direction: column;
    }


    .ofert-1 {
        margin-bottom: 30px;
    }


    .product {
        padding: 0 30px 30px 30px;
    }


    .product h2 {
        margin-bottom: 30px;
    }


    .product-content {
        grid-template-columns: repeat(1, 1fr);
        gap: 30px;
    }


    .product img {
        width: 300px;
        height: 400px;
    }

    .icons {
        padding: 30px;
        flex-direction: column;
    }

    .icon-1 {
        margin-bottom: 30px;
    }


    .blog {
        padding: 0 30px 30px 30px;
        flex-direction: column;
    }

    .blog-1 {
        margin-bottom: 30px;
    }


    .footer {
        padding: 30px;
    } 

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

}







.float{
	position:fixed;
	width:65px;
	height:65px;
	bottom:25px;
	right:25px;
	background-color:#25d366;
	color:#000;
	border-radius:50px;
	text-align:center;
  font-size:35px;
	box-shadow: 2px 2px 3px #272d30;
  z-index:100;
}
.float:hover {
	text-decoration: none;
	color: #FFF;
  background-color:#1ab152;
    
    animation: shake 1s;

 
  animation-iteration-count: infinite;
}

.my-float{
	margin-top:16px;
}
.pulse {
	animation: pulse-animation 2s infinite;
}
@keyframes pulse-animation {
	0% {
		box-shadow: 0 0 0 0px #08100bfa;; rgba(0, 0, 0, 0.2);
	}
	100% {
		box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
	}
}

@keyframes shake {
 0% { transform: translateY(0) }
 25% { transform: translateY(5px) }
 50% { transform: translateY(-5px) }
 75% { transform: translateY(5px) }
 100% { transform: translateY(0) }
}




.float1{
	background-color:#000000;
	color:#ffffff;
	border-radius:30px;
	text-align:center;
  font-size:20px;
	box-shadow: 2px 2px 3px #272d30;
  z-index:100;
}
.float1:hover {
	text-decoration: none;
	color: #FFF;
  background-color:#000000;
    
    animation: shake 1s;

 
  animation-iteration-count: infinite;
}

.my-float1{
	margin-top:16px;
}
.pulse1 {
	animation: pulse-animation 2s infinite;
}
@keyframes pulse-animation {
	0% {
		box-shadow: 0 0 0 0px #08100bfa;; rgba(0, 0, 0, 0.2);
	}
	100% {
		box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
	}
}

@keyframes shake {
 0% { transform: translateY(0) }
 25% { transform: translateY(5px) }
 50% { transform: translateY(-5px) }
 75% { transform: translateY(5px) }
 100% { transform: translateY(0) }
}






.float2{
	border-radius:50px;
	text-align:center;
  font-size:30px;
	box-shadow: 2px 2px 3px #272d30;
  z-index:100;
}
.float2:hover {
	text-decoration: none;
	color: #FFF;
    
    animation: shake 1s;

 
  animation-iteration-count: infinite;
}

.my-float2{
	margin-top:16px;
}





.float3{
	background-color:#000000;
	color:#ffffff;
	border-radius:30px;
	text-align:center;
  font-size:20px;
	box-shadow: 2px 2px 3px #272d30;
  z-index:100;
}
.float3:hover {
	text-decoration: none;
	color: #FFF;
  background-color:#000000;
    
    animation: shake 1s;

 
  animation-iteration-count: infinite;
}

.my-float3{
	margin-top:16px;
}
.pulse3 {
	animation: pulse-animation 2s infinite;
}
@keyframes pulse-animation {
	0% {
		box-shadow: 0 0 0 0px #08100bfa;; rgba(0, 0, 0, 0.2);
	}
	100% {
		box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
	}
}

@keyframes shake {
 0% { transform: translateY(0) }
 25% { transform: translateY(5px) }
 50% { transform: translateY(-5px) }
 75% { transform: translateY(5px) }
 100% { transform: translateY(0) }
}




.float4{
	position:fixed;
	width: 100%;
	height:36px;
	top:center;
	right:center;
	background-color:#ffffff;
	color:#ffffff;
	text-align:fixed;
  font-size:20px;
  z-index:100;
}

.float4:hover {
	text-decoration: none;
	color: #FFF;
  background-color:#ffffff;
    
}

.my-float4{
	margin-top:100px;
}











        