/* * {
    border:1px red solid;
} */

body {
    background-color: #f8f9fa;
}

.logo {
    width: 200px;
    object-fit: cover;
}

.navbar_height {
    height: 65px;
}

.mainDrawing {
    width: 100%;
    max-width: 1920px;
    object-fit: cover;
    height: 500px;
}

.space_footer {
    margin-bottom: 320px;
}

/*Cards Section*/
.card-body-height {
    height: 115px;
}

.img-hover {
    transition: transform 0.4s ease;
}

.img-hover:hover {
    transform: scale(1.08);
}

.title-hover {
    transition: transform 0.3s ease, color 0.3s ease;
}

.title-hover:hover {
    transform: scale(1.1);
    /* color: #0d6efd; Azul Bootstrap */
}

/* Footer */
.list_style_footer {
    list-style: none;
}

/* Responsive Section*/
@media (max-width: 991.98px) {

    /* Black background to colapsed menu on mobiles */
    .custom-collapse {
        background-color: #000;
        padding: 1rem;
        position: absolute;
        right: 1rem;
        top: 65px;
        width: max-content;
        border-radius: 8px;
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
        z-index: 999;
    }
}

    @media (min-width: 992px) {

        /* Show icons on big screens */
        .social-icons {
            display: flex;
            margin-left: auto;
        }
    }

    .custom-collapse .nav-link {
        color: #fff;
        padding: 0.5rem 1rem;
        transition: background-color 0.3s ease;
    }

    .custom-collapse .nav-link:hover {
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 5px;
    }

    /* Hide social media icons on small screens */
    .social-icons {
        display: none;
    }

    footer {
    border-top: 1px solid #444;
    padding: 2rem 1rem;
    text-align: center;
    font-size: 0.9rem;
}