@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

/*generales*/

body {
    text-align: center;
    background-color: #000000;
    font-family: "lato";
}

/*navbar*/

.nav-link {
    color: #000000 !important;
}

.nav-link.active {
    background-color: #ef1414 !important;
    border-radius: 15px;
}

.banner p {
    font-size: 16px;
    color: white;
    padding: 7px;
    display: inline-block;
    padding-left: 100%;
    animation: mover 12s linear infinite;
    font-size: 20px;
    margin: 0;
}

.banner {
    background-color: #ef1414;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
}

@keyframes mover {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/*productos*/
.productos h1 {
    padding-top: 25px;
    color: white;
    font-size: 40px;
    font-family: "Bebas Neue";
    letter-spacing: 10px;
}

.productos img {
    padding: 20px;
}

.producto-hover {
    display: block;
    transition: transform .4s ease;
}

.producto-hover:hover {
    transform: translateY(-10px);
}


/*pagina envios*/

.envios {
    padding-bottom: 250px;
}

.envios h1 {
    padding-top: 80px;
    padding-bottom: 30px;
    color: white;
    font-size: 40px;
    font-family: "Bebas Neue";
    letter-spacing: 10px;
}

.envios p {
    color: white;
    font-size: 25px;
    text-align: justify !important;
}

.envios h2 {
    color: white;
    font-size: 30px;
    font-weight: bold;
    text-align: justify !important;
}


/*pagina producto tote clancy*/

.tote-clancy {
    padding-bottom: 440px;
    background-color: #e7e7e7;
}

.tote-clancy img {
    padding: 80px 0px;
}

.tote-clancy h2 {
    padding-bottom: 10px;
    padding-left: 28px;
    color: rgb(0, 0, 0);
    font-size: 45px;
    font-family: "Bebas Neue";
    letter-spacing: 10px;
    text-align: left !important;
}

.nav-link {
    color: #000000 !important;
}

.nav-link.active {
    background-color: #ef1414 !important;
    color: white !important;
}

.tote-clancy li {
    color: rgb(0, 0, 0);
    list-style: none;
    text-align: left !important;
    font-size: 20px;
    padding-top: 10px;
}

.tab-content p {
    font-size: 20px !important;
    padding-top: 10px !important;
    line-height: 40px;
}

.tote-clancy p {
    color: rgb(0, 0, 0);
    padding-left: 28px;
    text-align: left !important;
    font-size: 35px;
    padding-bottom: 20px;
}

.tote-clancy a {
    text-decoration: none;
    color: white;
    background-color: #ef1414;
    padding: 20px 140px;
    border-radius: 8px;
    font-size: 18px;
}

.boton-compra {
    display: inline-block;
    margin-bottom: 50px;
    transition: transform .3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .3);
}

.boton-compra:hover {
    transform: scale(1.1);
}

.producto-img {
    position: relative;
    overflow: hidden;
}

.producto-img img {
    width: 100%;
    height: auto;
    display: block;
}

.img-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity .4s ease;
}

.producto-img:hover .img-hover {
    opacity: 1;
}

.producto-img:hover .img-normal {
    opacity: 0;
}

/*reseñas*/
.titulo-reseñas h1 {
    padding-top: 80px;
    color: white;
    font-size: 40px;
    font-family: "Bebas Neue";
    letter-spacing: 10px;
}

.carousel-item img {
    padding: 70px 10px;

}

/*whatsapp*/
.whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .3s ease;
}

.whatsapp:hover {
    transform: scale(1.1);
}

.whatsapp img {
    width: 30px;
}

/*footer*/
footer {
    background-color: #dbdbdb;
    color: black;
    padding-top: 20px;
}

.enlaces {
    list-style: none;
    padding-left: 0 !important;
}

.enlaces a {
    text-decoration: none;
    color: black;
    display: block;
    padding-bottom: 14px;
}

.icono-ig img {
    width: 25px;
    padding-bottom: 17px;
}


/*responsive*/

@media (min-width: 991.98px) {
    .tote-clancy h2 {
        padding-top: 80px;
    }
}