body, html {
    height: 100%;
    margin: 0;
    padding: 0;
    background-color: #000;
    font-family: 'Montserrat', sans-serif;
    overflow: hidden;
}
.navbar, .footer {
    background-color: #000;
    color: #fff;
}
.contenedor-header{
    padding: 0px !important;
    margin: 0px !important;
}
.contenedor-logo{
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 20px;
}
.logo img {
    width: 124px;
}
.contenedor-principal {
    display: flex;
    height: 91%;
    padding: 0px !important;
    margin: 0px !important;
}
.image-section {
    position: relative;
    overflow: hidden;
    flex: 1;
    min-height: 100%;
    box-shadow: rgba(0, 0, 0, 0.17) 0px -23px 25px 0px inset, rgba(0, 0, 0, 0.15) 0px -36px 30px 0px inset, rgba(0, 0, 0, 0.1) 0px -79px 40px 0px inset, rgba(0, 0, 0, 0.06) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px;
}
.image-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease, filter 0.5s ease;
    z-index: 0;
    filter: grayscale(70%) brightness(90%) contrast(85%);
}
.image-camiones::before {
    background-image: url('../images/Banner-main-desktop-camiones-1007-x-1080.png');
    background-position: center;
    background-position: left bottom;
}
.image-pasajeros::before {
    background-image: url('../images/Banner-desktop-1007-x-1080_pasajeros.webp');
    background-position: center;
    background-position: right bottom;
}
.image-section:hover::before {
    filter: grayscale(0%);
}
.text-content {
    position: relative;
    z-index: 1;
    top: 50px;
    left: 50px;
    color: #1C1B1B;
    transition: color 0.5s ease;
}
.text-content h1 {
    font-size: 48px;
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
    margin-bottom: 30px;
}
.text-content .btn {
    margin-top: 10px;
    padding: 16px 24px;
    font-size: 20px;
    background-color: #080707;
    color: #fff;
    border: none;
    transition: background-color 0.5s ease;
}
.image-section:hover .text-content h1{
    color: #fff;
    font-weight: 600;
}
.image-section:hover .btn {
    background-color: #F02B2C;
}
.footer {
    padding: 20px 0;
    text-align: center;
    background-color: #1C1B1B;
    position: absolute;
    bottom: 0;
    width: 100%;
}

.footer img{
    height: 40px;
}

@media (max-width: 1000px) {
    .contenedor-principal {
        flex-direction: column;
    }
    .logo img {
        width: 90px;
    }
    .image-camiones::before {
        background-image: url('../images/Banner-main-desktop-camiones-1007-x-1080.png');
        filter: none;
    }
    .image-pasajeros::before {
        background-image: url('../images/Banner-desktop-1007-x-1080_pasajeros.webp');
        filter: none;
    }
    .text-content {
        top: 20px;
        left: 20px;
        color: #fff;
        width: 90%;
    }

    .text-content .btn {
        background-color: #F02B2C !important;
    }
    .image-section {
        margin-bottom: 10px;
        height: 43vh;
        min-height: 43vh;
        -webkit-box-shadow: inset 18px 44px 126px 14px rgba(0,0,0,0.75);
        -moz-box-shadow: inset 18px 44px 126px 14px rgba(0,0,0,0.75);
        box-shadow: inset 18px 44px 126px 14px rgba(0,0,0,0.75);
    }
    .image-pasajeros {
        margin-bottom: 100px !important;
    }
    .image-section:hover::before {
        transform: none;
    }
}

/* Mobile Backgrounds */
@media (max-width: 768px) {
    .contenedor-principal {
        flex-direction: column;
    }
    .logo img {
        width: 90px;
    }
    .image-camiones::before {
        background-image: url('../images/Banner-main-desktop-camiones-1007-x-1080.png');
        background-size: cover;
        background-position: center center;
        filter: none;
    }
    .image-pasajeros::before {
        background-image: url('../images/Banner-desktop-1007-x-1080_pasajeros.webp');
        background-size: cover;
        background-position: center bottom;
        filter: none;
    }
    .text-content {
        top: 32px;
        left: 20px;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 90%;
    }
    .text-content h1 {
        font-size: 30px;
        font-weight: 600;
        margin-bottom: 0px;
    }
    .text-content .btn {
        padding: 8px 18px;
        margin-top: 0px !important;
        font-size: 20px;
        background-color: #F02B2C !important;
    }
    .image-section {
        margin-bottom: 10px;
        height: 40vh;
        min-height: 45vh;
    }
    .sombra::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        transition: transform 0.5s ease, filter 0.5s ease;
        z-index: 0;
        background: radial-gradient(circle at 90% 74%, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 0.5) 100%);
    }
    .image-pasajeros {
        margin-bottom: 100px !important;
    }
}