/* ===========================
   css para o rodapé do site
   =========================== */
.footer {
    background: linear-gradient(135deg, rgba(28, 28, 28, 0.98), rgba(44, 134, 64, 0.98));
    color: var(--white);
    padding: 40px 0 0;
    position: relative;
    border-top: 4px solid var(--accent-color);
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding-bottom: 30px;
}

.footer-brand {
    flex-shrink: 0;
}

.footer-logo {
    height: 120px;
    width: auto;
}

.footer-info-card {
    background: white;
    border-radius: 15px;
    padding: 25px 40px;
    display: flex;
    gap: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.footer-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.footer-info-icon {
    width: 50px;
    height: 50px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer-info-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.footer-info-text h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.footer-info-text p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.footer-dev {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.footer-dev span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.dev-logo {
    height: 40px;
    width: auto;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 15px 0;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: white;
    margin: 0;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--accent-color);
}

.footer-instagram-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    color: #fff !important;
    font-size: 1.2rem;
    margin-right: 10px;
    flex-shrink: 0;
    border: 2px solid transparent;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.footer-instagram-icon:hover {
    border-color: #fff !important;
    background: rgba(255,255,255,0.3) !important;
    color: #fff !important;
}
