/* =====================================================
   IKIGAI COMBAT - Footer
   Refatorado - Fev 2025
   ===================================================== */

.site-footer {
    background: linear-gradient(135deg, var(--neutral-dark), #34495e) !important;
    border-top: 3px solid var(--primary-red);
}

.site-footer .social-link {
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.site-footer .social-link:hover {
    background: var(--primary-red);
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
}

.site-footer a {
    transition: var(--transition);
}

.site-footer a:hover {
    color: var(--primary-red) !important;
    transform: translateX(5px);
}

.site-footer .newsletter .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.site-footer .newsletter .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.site-footer .newsletter .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-red);
    box-shadow: 0 0 0 0.2rem rgba(231, 76, 60, 0.25);
    color: white;
}

.site-footer .newsletter .btn {
    border: none;
    background: var(--primary-red);
}

.site-footer .newsletter .btn:hover {
    background: var(--primary-red-dark);
    transform: translateY(-1px);
}
