.bgColor {
    background-color: black;
}

.margin {
    margin-left: 25px !important;
}

.display {
    display: flex !important;
    flex-direction: row !important;
    /* justify-content:space-around;
    align-items: center; */
    color: wheat;
}

.filter-gradient {
    background: linear-gradient(135deg, rgba(255, 45, 45, 0.5), rgba(255, 180, 0, 0.5))
}

.colorText {
    color: white !important;
    font-weight: bolder !important;
}

.filter-gradient2 {
    background: linear-gradient(90deg,
            rgba(255, 251, 0, 0.6) 0%,
            /* rojo con transparencia */
            rgba(255, 0, 0, 0.6) 100%
            /* amarillo con transparencia */
        );

}

.bgImage {
    position: relative;
    background: url('../img/exteriordespacho.PNG') no-repeat center center;
    background-size: cover;
    padding: 80px 0;
    color: #fff;
}

.section-features .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 180, 0, 0.5), rgba(255, 45, 45, 0.5));
    z-index: 1;
}

.section-features .container {
    position: relative;
    z-index: 2;
}

.service-card {
    background: linear-gradient(135deg, rgba(58, 57, 55, 0.5), rgba(53, 44, 44, 0.5));
    border: none;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}


.card-title {
    font-weight: 600;
}

.card-text {
    color: white;
}

/* .contact-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
} */

#goTop {
    width: 40px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    background-color: #a10000;
    color: #fff;
    border: none;
    margin: auto;
    border-radius: 40%;
    font-size: 30px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s, transform 0.3s;
}

#goTop:hover {
    background-color: #ffb400;
    transform: scale(1.1);
}

#goTop.hide {
    display: none;
}

.foot {
    height: 100px;
    color: black;
    padding: 35px;
    text-align: center;
    font-size: 18px;
}


@media (max-width:1000px) {
    #SobreNosotros h5 {
        font-size: 15px !important;
    }

    #cards .col-md-3 {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        width: 350px !important;
        margin: auto !important;
    }

    #foot {
        font-size: 11px;
    }

}