.footer {
    width: 100%;
    height: 350px;
    background: linear-gradient(135deg, 
        rgba(30, 30, 35, 0.95) 0%, 
        rgba(40, 40, 45, 0.95) 50%,
        rgba(35, 35, 40, 0.95) 100%);
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 122, 32, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(16, 185, 129, 0.06) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}
.footer-main {
    width: 1200px;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}
.footer-info {
    width: 450px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}
.footer-main p {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin: 0;
    padding: 0px;
    position: relative;
    z-index: 1;
}
.footer-main p a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.3s ease;
}
.footer-main p a:hover {
    color: rgba(255, 122, 32, 1);
}
.img-footer {
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin: 0;
    position: relative;
    z-index: 1;
}
@media (max-width: 1260px) {
.footer {
    width: 100%;
    height: auto;
}
.footer-main {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 20px;
    
}
.footer p{
    font-size: 1rem;
}
.footer-info {
    width: 90%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}
.img-footer{
    margin-top: 20px;
    width: 100%;
    height: auto;
}
.img-footer img{
    margin-top: 20px;
    max-width: 700px;
    width: 100%;
    
}
}

@media (max-width: 600px) {
    .footer {
        padding: 30px 0 40px;
    }
    .footer-main {
        padding: 0 15px;
        margin-top: 15px;
        margin-bottom: 15px;
    }
    .footer-main p {
        font-size: 1rem;
    }
    .footer-info {
        width: 100%;
        align-items: center;
        text-align: center;
    }
    .img-footer img {
        max-width: 100%;
    }
}