:root {
    --primario: #000;
    --secundario: #832561;
    --logo: #5CDDF2;
    --textos: #e1e1e1;
}

body {
    background: var(--primario);
    color: var(--textos);
    font-family: 'Roboto-Regular', sans-serif;
    background-image: linear-gradient(179.2deg,
            rgba(0, 0, 0, 1) 0%,
            rgba(0, 0, 0, 1) 30%,
            rgba(8, 0, 153, 1) 60%,
            rgba(118, 6, 166, 1) 97%,
            rgba(233, 0, 64, 1) 100%);
}

a:link,
a:visited,
a:active {
    color: var(--textos);
    text-decoration: none;
}

a:hover {
    color: var(--logo);
}


.ubicanos {
    display: flex;
    Justify-content: space-between;
    padding: 5px 10px 10px 5px;
    border-color: rgba(255, 255, 255, 0.15);
    border-bottom-width: 1px;
    border-bottom-style: solid;
}

@font-face {
    font-family: "woodmart-font";
    src: url("./fonts/woodmart-font.ttf");
}

@font-face {
    font-family: "Roboto-Regular";
    src: url("./fonts/roboto-regular.ttf");
}

.social {
    font-family: 'woodmart-font';
}

.social2 {
    font-family: 'woodmart-font';
    font-size: 28px;
}

.logo {
    background-image: url('../img/logo.png');
    background-repeat: no-repeat;
    height: 18vh;
    width: 90vw;
    margin: 0 auto;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 100;
}

.baja {
    width: 100%;
    text-align: center;
}


.bajar:before {
    content: "\f129";
}

.compras:before {
    content: "\f126";
}

.carrito:before {
    content: "\f123";
}

.instagram:before {
    content: "\f163";
}

.facebook:before {
    content: "\f180";
}

.tiktok:before {
    content: "\f133";
}

.email:before {
    content: "\f132";
}

.whatsapp:before {
    content: "\f175";
}

.bigwhatsapp:before {
    content: "\f175";
    color: var(--logo);
}

.botonwhatsapp{
    position: fixed;
    bottom: 45px;
    right: 45px;
    font-family: 'woodmart-font';
    font-size: 36px;
  }

.btncatalogo{
    display: flex;
    justify-content: center;
    margin: 0 auto;
    width: 80%;
}

.my-button {
    padding: 10px 20px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 9px;
    cursor: pointer;
  }
  
  .my-button:hover {
    background-color: var(--logo);
    color: var(--secundario);
    font-weight: 900;
  }

#carousel {
    position: relative;
    transform-style: preserve-3d;
    top: 15px;
    left: 650px;
    height: 580px;
    z-index: 1;
    margin: 10px 0;
}

.card {
    position: absolute;
    width: 526px;
    height: 526px;
    transform-style: preserve-3d;
    transition: 0.7s;
    border-radius: 25px;
}

.card:nth-child(1) {
    transform: translateX(0) translateZ(0);
    background: url('../img/2.jpg') no-repeat;
}

.card:nth-child(2) {
    transform: translateX(-55%) translateZ(-50px) scale(0.8);
    background: url('../img/1.jpg') no-repeat;
}

.card:nth-child(3) {
    transform: translateX(55%) translateZ(-50px) scale(0.8);
    background: url('../img/3.jpg') no-repeat;
}


.categorias {
    display: flex;
    margin: 10px auto;
    justify-content: space-around;
    width: 60vw;
    flex-wrap: wrap;
}

.cat {
    width: 300px;
    height: 480px;
    margin: 35px;
    border-radius: 25px;
    border: 1px solid var(--secundario);
}


.cat:nth-child(1) {
    background: #000 url('../img/cats/mouse.jpg') center;
}

.cat:nth-child(2) {
    background: url('../img/cats/pantallas.jpg') center;
}

.cat:nth-child(3) {
    background: url('../img/cats/headsets.jpg') center;
}

.cat:nth-child(4) {
    background: url('../img/cats/coolers.jpg') center;
}

.cat:nth-child(5) {
    background: url('../img/cats/keyboards.jpg') center;
}

.cat:nth-child(6) {
    background: url('../img/cats/videocards.jpg') center;
}

.cat:nth-child(7) {
    background: url('../img/cats/micros.jpg') center;
}

.footer {
    display: flex;
    min-height: 30vh;
    margin: 15px;
    padding: 0 70px;
    width: 80%;
}

.direccion {
    width: 50vw;
}

.gmap {
    width: 50vw;
    min-height: 30vh;
    border-radius: 15px;
}

@media (min-width: 576px) {}

@media (min-width: 768px) {}

@media (min-width: 992px) {}

@media (min-width: 1200px) {}

@media (min-width: 1400px) {}

progress {
    position: fixed;
    top: 0;
    left: 0;
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 5px;
    border: none;
    background: transparent;
    z-index: 101;
}

progress::-webkit-progress-bar {
    background: transparent;
}

progress::-webkit-progress-value {
    background: linear-gradient(to left, #db38b5, #01b3e3, #25ce7b, #fdc741, #ff6b01, #fc4236);
    background-attachment: fixed;
}

progress::-moz-progress-bar {
    background: linear-gradient(to left, #db38b5, #01b3e3, #25ce7b, #fdc741, #ff6b01, #fc4236);
    background-attachment: fixed;
}

