/* ==== FOOTER ÉPICO - TUDO DA MONA ==== */

.epic-footer {
    background: linear-gradient(180deg, var(--primary-light) 0%, var(--surface) 100%);
    color: var(--gray-800);
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.epic-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

/* Main Footer Content */
.footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    padding: 4rem 0 3rem;
    position: relative;
    z-index: 2;
}

/* Footer Brand */
.footer-brand {
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: -1.5rem;
}

.footer-logo img {
    width: 200px;
    height: 80px;
    object-fit: contain;
}

.footer-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray-700);
    margin-bottom: 2rem;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

/* Newsletter Section */
.footer-newsletter {
    background: linear-gradient(135deg, var(--surface-alt) 0%, var(--primary-light) 100%);
    backdrop-filter: blur(8px);
    border-radius: 25px;
    padding: 2.5rem;
    border: 1px solid rgba(232,108,174,0.18);
    text-align: center;
    box-shadow: 0 10px 30px rgba(232,108,174,0.10);
}

.newsletter-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.newsletter-icon {
    font-size: 1.8rem;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}

.newsletter-subtitle {
    color: var(--gray-700);
    font-size: 1rem;
    margin-bottom: 2rem;
}

.newsletter-form {
    margin-bottom: 1.5rem;
}

.newsletter-input-wrapper {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.newsletter-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 1px solid var(--gray-300);
    border-radius: 15px;
    background: var(--surface);
    color: var(--gray-800);
    font-size: 1rem;
    transition: all 0.3s ease;
    min-width: 250px;
}

.newsletter-input::placeholder { color: var(--gray-500); }

.newsletter-input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 4px rgba(232,108,174,0.15); }

.newsletter-btn {
    background: white;
    color: var(--primary);
    border: none;
    padding: 1rem 2rem;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    background: #f8f9fa;
}

.newsletter-benefits {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.benefit {
    background: var(--surface);
    color: var(--gray-800);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(232,108,174,0.20);
    box-shadow: 0 4px 14px rgba(232,108,174,0.08);
}

/* Social Media Section */
.footer-social-section {
    background: var(--surface-alt);
    backdrop-filter: blur(6px);
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid var(--gray-200);
    position: relative;
    z-index: 2;
    width: 100vw;
    margin-left: calc(50% - 50vw);
}

.social-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.social-subtitle { color: var(--gray-700); font-size: 1.1rem; margin-bottom: 2rem; }

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.social-link {
    background: linear-gradient(135deg, var(--surface-alt), var(--primary-light));
    border: 1px solid rgba(232,108,174,0.20);
    border-radius: 20px;
    padding: 1rem 1.5rem;
    color: var(--gray-800);
    text-decoration: none;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    min-width: 100px;
    backdrop-filter: blur(6px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(232,108,174,0.10);
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.social-link:hover::before {
    left: 100%;
}

.social-link i {
    font-size: 1.8rem;
    transition: transform 0.3s ease;
}

.social-text {
    font-size: 0.9rem;
    font-weight: 600;
}

/* Specific Social Media Colors */
.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: #e6683c;
    transform: translateY(-5px);
}

.social-link.tiktok:hover {
    background: linear-gradient(45deg, #ff0050, #00f2ea);
    border-color: #ff0050;
    transform: translateY(-5px);
}

.social-link.youtube:hover {
    background: linear-gradient(45deg, #ff0000, #cc0000);
    border-color: #ff0000;
    transform: translateY(-5px);
}

.social-link.whatsapp:hover {
    background: linear-gradient(45deg, #25d366, #128c7e);
    border-color: #25d366;
    transform: translateY(-5px);
}

.social-link.telegram:hover {
    background: linear-gradient(45deg, #0088cc, #005577);
    border-color: #0088cc;
    transform: translateY(-5px);
}

.social-link:hover i {
    transform: scale(1.2);
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(232,108,174,0.08);
    padding: 2rem 0;
    border-top: 1px solid var(--gray-200);
    position: relative;
    z-index: 2;
    width: 100vw;
    margin-left: calc(50% - 50vw);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-info {
    flex: 1;
}

.footer-copyright { color: var(--gray-700); font-size: 0.9rem; margin-bottom: 0.5rem; }

.footer-disclaimer { color: var(--gray-600); font-size: 0.8rem; }

.footer-love {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.heart {
    font-size: 1.2rem;
    animation: heartbeat 2s infinite;
}

.love-text {
    font-weight: 600;
}

/* Floating Decoration */
.footer-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.floating-heart {
    position: absolute;
    font-size: 1.5rem;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.heart-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.heart-2 {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.heart-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

/* Animations */
@keyframes heartbeat {
    0%, 50%, 100% { transform: scale(1); }
    25% { transform: scale(1.2); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 3rem 0 2rem;
    }
    
    .newsletter-input-wrapper {
        flex-direction: column;
    }
    
    .newsletter-input {
        min-width: auto;
    }
}

@media (max-width: 768px) {
    .footer-main {
        gap: 2rem;
        padding: 2rem 0 1.5rem;
    }
    
    .footer-newsletter {
        padding: 2rem;
    }
    
    .newsletter-title {
        font-size: 1.3rem;
        flex-direction: column;
        gap: 0.3rem;
    }
    
    .footer-social {
        gap: 1rem;
    }
    
    .social-link {
        min-width: 80px;
        padding: 0.8rem 1rem;
    }
    
    .social-link i {
        font-size: 1.5rem;
    }
    
    .social-text {
        font-size: 0.8rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .newsletter-benefits {
        gap: 0.5rem;
    }
    
    .benefit {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }
}

@media (max-width: 480px) {
    .footer-newsletter {
        padding: 1.5rem;
    }
    
    .newsletter-title {
        font-size: 1.1rem;
    }
    
    .newsletter-subtitle {
        font-size: 0.9rem;
    }
    
    .social-title {
        font-size: 1.5rem;
    }
    
    .social-subtitle {
        font-size: 1rem;
    }
}

/* ==== BOTÃO VOLTAR AO TOPO ==== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10000;
    box-shadow: 0 4px 20px rgba(232, 108, 174, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top:hover {
    transform: scale(1) translateY(-3px);
    box-shadow: 0 8px 30px rgba(232, 108, 174, 0.4);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.back-to-top i {
    font-size: 18px;
    animation: bounce-arrow 2s infinite;
}

@keyframes bounce-arrow {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-3px);
    }
    60% {
        transform: translateY(-1px);
    }
}

/* Responsivo para o botão */
@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .back-to-top i {
        font-size: 16px;
    }
}