/* ============================================
   FOOTER PREMIUM ESTILIZADO
   Layout moderno e compacto
   ============================================ */

/* Footer Principal */
.footer-premium {
    background: var(--cor-primaria, #4a6adb);
    color: #ffffff;
    margin-top: 40px;
    font-family: 'Poppins', sans-serif;
}

.footer-premium-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 30px;
    padding: 35px 20px 25px;
    max-width: 1400px;
    margin: 0 auto;
}

/* ============================================
   COLUNAS DO FOOTER
   ============================================ */

.footer-premium-col {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Coluna Sobre */
.footer-premium-about {
    padding-right: 20px;
}

.footer-premium-logo {
    max-width: 180px;
    max-height: 60px;
    width: auto;
    height: auto;
    margin-bottom: 10px;
    object-fit: contain;
}

.footer-premium-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: #ffffff;
}

.footer-premium-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

/* Títulos das colunas */
.footer-premium-heading {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 12px 0;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================================
   LINKS DE CONTATO
   ============================================ */

.footer-premium-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-premium-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    padding: 6px 0;
}

.footer-premium-link:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.footer-premium-link i {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

/* ============================================
   REDES SOCIAIS
   ============================================ */

.footer-premium-social {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-premium-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.footer-premium-social-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.footer-premium-social-link.whatsapp:hover {
    background: #25D366;
}

.footer-premium-social-link.instagram:hover {
    background: linear-gradient(135deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
}

.footer-premium-social-link.facebook:hover {
    background: #1877F2;
}

/* ============================================
   BUSCA NO FOOTER
   ============================================ */

.footer-premium-search {
    display: flex;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 25px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.footer-premium-search:focus-within {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.footer-premium-search-input {
    flex: 1;
    padding: 10px 15px;
    background: transparent;
    border: none;
    outline: none;
    color: #ffffff;
    font-size: 0.9rem;
    font-family: 'Poppins', sans-serif;
}

.footer-premium-search-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.footer-premium-search-btn {
    padding: 10px 18px;
    background: rgba(0, 0, 0, 0.2);
    border: none;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer-premium-search-btn:hover {
    background: rgba(0, 0, 0, 0.3);
}

.footer-premium-search-btn i {
    font-size: 0.95rem;
}

/* ============================================
   RODAPÉ INFERIOR (Copyright)
   ============================================ */

.footer-premium-bottom {
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
}

.footer-premium-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    font-size: 0.85rem;
}

.footer-premium-copyright,
.footer-premium-dev {
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
}

.footer-premium-copyright strong {
    font-weight: 600;
}

.footer-premium-dev a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-premium-dev a:hover {
    text-decoration: underline;
    opacity: 0.8;
}

/* ============================================
   RESPONSIVIDADE - TABLET
   ============================================ */

@media (max-width: 992px) {
    .footer-premium-content {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
        padding: 30px 15px 20px;
    }
    
    .footer-premium-about {
        grid-column: 1 / -1;
        padding-right: 0;
        text-align: center;
    }
    
    .footer-premium-logo {
        margin: 0 auto 10px;
    }
    
    .footer-premium-search-col {
        grid-column: 1 / -1;
    }
    
    .footer-premium-bottom-content {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

/* ============================================
   RESPONSIVIDADE - MOBILE
   ============================================ */

@media (max-width: 576px) {
    .footer-premium {
        margin-top: 30px;
    }
    
    .footer-premium-content {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 25px 12px 18px;
    }
    
    .footer-premium-about {
        text-align: center;
        padding-bottom: 15px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .footer-premium-col {
        gap: 12px;
    }
    
    .footer-premium-logo {
        max-width: 150px;
        max-height: 50px;
        object-fit: contain;
    }
    
    .footer-premium-title {
        font-size: 1.3rem;
    }
    
    .footer-premium-desc {
        font-size: 0.85rem;
    }
    
    .footer-premium-heading {
        font-size: 0.95rem;
        margin-bottom: 10px;
    }
    
    .footer-premium-link {
        font-size: 0.85rem;
        padding: 5px 0;
    }
    
    .footer-premium-link:hover {
        transform: translateX(3px);
    }
    
    .footer-premium-social {
        justify-content: flex-start;
        gap: 10px;
    }
    
    .footer-premium-social-link {
        width: 38px;
        height: 38px;
        font-size: 1.1rem;
    }
    
    .footer-premium-search {
        border-radius: 20px;
    }
    
    .footer-premium-search-input {
        padding: 9px 12px;
        font-size: 0.85rem;
    }
    
    .footer-premium-search-btn {
        padding: 9px 15px;
    }
    
    .footer-premium-bottom {
        padding: 12px 15px;
    }
    
    .footer-premium-bottom-content {
        font-size: 0.8rem;
        gap: 6px;
    }
    
    .footer-premium-search-col {
        padding-top: 10px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
}

/* ============================================
   MOBILE EXTRA PEQUENO
   ============================================ */

@media (max-width: 375px) {
    .footer-premium-content {
        padding: 20px 10px 15px;
        gap: 18px;
    }
    
    .footer-premium-logo {
        max-width: 130px;
        max-height: 45px;
        object-fit: contain;
    }
    
    .footer-premium-title {
        font-size: 1.2rem;
    }
    
    .footer-premium-desc {
        font-size: 0.8rem;
    }
    
    .footer-premium-heading {
        font-size: 0.9rem;
    }
    
    .footer-premium-link {
        font-size: 0.8rem;
    }
    
    .footer-premium-social-link {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    
    .footer-premium-bottom-content {
        font-size: 0.75rem;
    }
}

/* ============================================
   ANIMAÇÕES
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-premium-col {
    animation: fadeInUp 0.6s ease-out;
}

.footer-premium-col:nth-child(1) { animation-delay: 0.1s; }
.footer-premium-col:nth-child(2) { animation-delay: 0.2s; }
.footer-premium-col:nth-child(3) { animation-delay: 0.3s; }
.footer-premium-col:nth-child(4) { animation-delay: 0.4s; }

/* ============================================
   MODO MOVIMENTO REDUZIDO
   ============================================ */

@media (prefers-reduced-motion: reduce) {
    .footer-premium-col,
    .footer-premium-link,
    .footer-premium-social-link {
        animation: none;
        transition: none;
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
    .footer-premium {
        background: #ffffff;
        color: #000000;
        page-break-inside: avoid;
    }
    
    .footer-premium-search,
    .footer-premium-social {
        display: none;
    }
}

