header, footer, .productosTitle, .texto, .bq, .fs, .pqc, .title {
    font-family: "Renogare-Regular";
}

.productosTitle {
    top: 166px;
    font-size: 60px;
    padding-top: 120px;
    padding-bottom: 50px;
    font-weight: bold;
    text-align: center;
    color: rgb(255, 255, 255);
    cursor: default;
    background: linear-gradient(90deg, rgba(0, 131, 202, 1) 0%, rgba(191, 214, 48, 1) 100%);
    transition: all 500ms ease;
}

.productosTitle:hover {
    color:  #bfd630;
}

.posicion {
    padding: 37px 150px;
    background: url('fondos/fondo3.jpg') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 200px;
}

.posicion img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.posicion img:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.img {
    width: 373px;
    height: 373px;
    background-color: rgba(0, 0, 0, 0.6);
    color: rgb(255, 255, 255);
    border-radius: 10px;
}

.texto {
    text-align: center;
    background-color: rgba(0, 0, 0, 0.6);
    color: rgb(255, 255, 255);
    border-radius: 10px;
    font-size: 50px;
    font-weight: 400;
    line-height: 50px;
    cursor: default;
}

.bq, .fs, .pqc {
    text-align: center;
    font-weight: 400px;
    padding: 30px;
    transition: all 500ms ease;
}

.bq {
    background: linear-gradient(90deg, rgba(0, 131, 202, 1) 0%, rgba(191, 214, 48, 1) 100%);
}

.fs {
    background: linear-gradient(90deg, rgb(164, 164, 164) 0%, rgb(214, 133, 57) 100%);
}

.pqc {
    background: linear-gradient(90deg, rgb(20, 52, 132) 0%, rgb(220, 140, 27) 100%);
}

.bq a, .fs a, .pqc a {
    color: white;
    text-decoration: none;
    font-size: 50px;
    line-height: 36px;
    transition: all 500ms ease;
    border-bottom: 2px solid transparent;
}

.bq a:hover{
    color: #bfd630;
    border-bottom: 2px solid #bfd630;
}

.fs a:hover{
    color: #6d4016;
    border-bottom: 2px solid #6d4016;
}

.pqc a:hover {
    color: #dc8c1b;
    border-bottom: 2px solid #dc8c1b;
}

.backgroundproducto {
    padding-top: 100px;
    background: url('fondos/fondo3.jpg') no-repeat center center fixed;
    background-size: cover;
}

@media (max-width: 1024px) {
    .posicion {
        padding: 20px;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .img {
        width: 300px;
        height: 300px;
    }

    .texto {
        font-size: 30px;
        line-height: 40px;
        width: 100%;
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .texto {
        font-size: 25px;
        line-height: 35px;
    }

    .posicion {
        padding: 10px;
        gap: 15px;
    }

    .img {
        width: 250px;
        height: 250px;
    }

    .bq a, .fs a, .pqc a {
        font-size: 27px;
    }
}

@media (max-width: 480px) {
    .texto {
        font-size: 20px;
        line-height: 30px;
    }

    .posicion {
        padding: 5px;
        gap: 10px;
    }

    .img {
        width: 200px;
        height: 200px;
    }

    .bq a, .fs a, .pqc a {
        font-size: 36px;
    }
}