/* ============================================
   BANDEAU TIPEEE GLOBAL - FOOTER
   ============================================ */

.tipeee-footer-banner {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    color: var(--white);
    padding: var(--spacing-xl) 0;
    border-top: 3px solid rgba(255, 255, 255, 0.2);
    margin-top: var(--spacing-3xl);
}

.tipeee-footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-xl);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.tipeee-footer-left {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    flex: 1;
}

.tipeee-footer-icon {
    font-size: 2.5rem;
    animation: heartbeat 2s infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.1); }
    50% { transform: scale(1); }
}

.tipeee-footer-text h3 {
    margin: 0 0 var(--spacing-xs);
    font-size: 1.3rem;
    font-weight: 700;
}

.tipeee-footer-text p {
    margin: 0;
    font-size: 1rem;
    opacity: 0.95;
    line-height: 1.4;
}

.btn-tipeee-footer {
    background: var(--white);
    color: #FF6B35;
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    transition: all var(--transition-smooth);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    white-space: nowrap;
}

.btn-tipeee-footer:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    background: #FFF8F0;
}

.btn-tipeee-footer i {
    font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .tipeee-footer-content {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-lg);
    }
    
    .tipeee-footer-left {
        flex-direction: column;
        text-align: center;
    }
    
    .tipeee-footer-text h3 {
        font-size: 1.1rem;
    }
    
    .tipeee-footer-text p {
        font-size: 0.9rem;
    }
}
