

.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ec800a, #ff9f4a, #ec800a);
    background-size: 200% 100%;
    animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

#footer_section_left {
    padding: 3rem 2rem !important;
}

#footer_section_left_text_title {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
    font-weight: 700 !important;
    letter-spacing: 1px;
    text-shadow: none !important;
    margin-bottom: 5px;
}

#footer_section_left_text_p {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
    color: #ec800a !important;
    font-weight: 600 !important;
}

#footer_section_left_text_label {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
    color: #b0b0b0 !important;
    line-height: 1.6;
    font-size: 0.85rem !important;
}

.footer_section_left_box_contacto span {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
    color: #ec800a !important;
    margin-bottom: 15px;
}

.footer_section_left_box_contacto p {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
    color: #d0d0d0 !important;
    line-height: 1.6;
    margin: 5px 0;
    transition: color 0.3s ease;
}

.footer_section_left_box_contacto div:hover p {
    color: #fff !important;
}

.footer_section_left_box_contacto i {
    color: #ec800a;
    font-size: 1.1rem;
}

#footer_section_left_box_menu span {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
    color: #ec800a !important;
    margin-bottom: 15px;
}

#footer_section_left_box_menu p {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
    color: #d0d0d0 !important;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

#footer_section_left_box_menu p:hover {
    color: #fff !important;
    padding-left: 10px;
}

#footer_section_left_box_menu p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: #ec800a;
    transition: width 0.3s ease;
}

#footer_section_left_box_menu p:hover::before {
    width: 5px;
}

@media (min-width: 300px) {
    #footer_section_left_box{
        width: auto!important;
        flex-direction: column!important;
        gap: 30px;
    }

    .footer{
        height: auto!important;
        max-height: inherit!important;
        padding-bottom: 20px;
    }

    #footer_section_left{
        flex-direction:column;
        left: 0px!important;
        align-items: flex-start;
        padding: 2rem 1.5rem!important;
        gap: 25px;
    }

    #footer_section_left_text_label{
        max-width: inherit!important;
    }

}

@media (min-width: 1024px) {

    #footer_section_left_box{
        width: 70vw!important;
        flex-direction: row!important;
        gap: 60px;
    }

    .footer{
        height: inherit!important;
        max-height: inherit!important;
        padding-bottom: 30px;
    }

    #footer_section_left{
        flex-direction:row;
        left: 0px!important;
        align-items: flex-start;
        padding: 3rem 2rem!important;
        gap: 40px;
    }

    #footer_section_left_text_label{
        max-width: 300px!important;
    }

}