.footer {
    margin-top: 100px;
    background-color: #232323;
    padding: 60px 40px 40px;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
    width: 100%;
}
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #E09200, #E09200);
}
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 60px;
    align-items: center;
}
.footer-left h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 0;
}
.footer-left .highlight {
    color: #E09200;
}
.footer-right {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: transform 0.3s ease;
}
.contact-item:hover {
    transform: translateX(5px);
}
.contact-link {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
}
.contact-link:hover {
    color: #FFFFFF;
}
.contact-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
    flex-shrink: 0;
}
.contact-icon svg {
    width: 100%;
    height: 100%;
    fill: #E09200;
}
.contact-info {
    flex: 1;
}
.contact-title {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 1.1rem;
    color: #FFFFFF;
    margin-bottom: 4px;
    line-height: 1.3;
}
.contact-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 0.9rem;
    color: #717171;
    line-height: 1.4;
}
.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid #404040;
    margin-top: 40px;
}
.copyright {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    color: #717171;
}
/* Responsive Design */
@media (max-width: 768px) {
    .footer {
        padding: 40px 20px 30px;
    }
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .footer-left h2 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    .footer-right {
        align-items: center;
    }
    .contact-item {
        justify-content: flex-start;
        text-align: left;
        max-width: 100%;
        width: 100%;
    }
    .contact-subtitle {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}
@media (max-width: 480px) {
    .footer {
        padding: 30px 16px 25px;
    }
    .footer-content {
        gap: 30px;
    }
    .footer-left h2 {
        font-size: 1.5rem;
        line-height: 1.4;
    }
    .contact-item {
        gap: 12px;
        flex-direction: row;
    }
    .contact-icon {
        width: 20px;
        height: 20px;
    }
    .contact-title {
        font-size: 0.95rem;
        line-height: 1.2;
    }
    .contact-subtitle {
        font-size: 0.8rem;
        line-height: 1.3;
        white-space: normal;
        word-break: break-word;
    }
    .footer-bottom {
        padding-top: 30px;
        margin-top: 30px;
    }
    .copyright {
        font-size: 0.85rem;
        line-height: 1.4;
    }
}
/* Animações */
.footer-left h2 {
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.8s ease forwards;
}
.contact-item {
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInLeft 0.6s ease forwards;
}
.contact-item:nth-child(1) {
    animation-delay: 0.2s;
}
.contact-item:nth-child(2) {
    animation-delay: 0.4s;
}
.contact-item:nth-child(3) {
    animation-delay: 0.6s;
}
.contact-item:nth-child(4) {
    animation-delay: 0.8s;
}
@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
/* Hover effects */
.contact-item:hover .contact-icon svg {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}
.footer-left h2:hover .highlight {
    text-shadow: 0 0 10px rgba(224, 146, 0, 0.5);
    transition: text-shadow 0.3s ease;
}
.contact-link:hover .contact-icon svg {
    fill: #FFFFFF;
    transition: fill 0.3s ease;
}