/* ==========================================================================
   SPRINT 5.1: CYBER FOOTER V2 (CYBER GLASS) - AESTHETICS ENHANCED
   ========================================================================== */

.cyber-footer-v2 {
    position: relative;
    width: 100%;
    margin-top: 30px;
    padding: 35px 0 0 0;
    color: #a0aabf;
    font-family: 'Inter', sans-serif;
    overflow: hidden;
    
    background: linear-gradient(180deg, rgba(11, 15, 25, 0.95) 0%, rgba(5, 7, 10, 0.98) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    
    border-top: 2px solid rgba(0, 229, 255, 0.6);
    box-shadow: 0 -15px 40px rgba(0, 229, 255, 0.15), inset 0 2px 20px rgba(0, 229, 255, 0.1);
}

.cyber-footer-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 229, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 229, 255, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: -1;
    opacity: 0.8;
}

.cyber-footer-bg::after {
    content: '';
    position: absolute;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse at center, rgba(0, 229, 255, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.cyber-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cyber-footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding-bottom: 25px;
}

.cyber-footer-col {
    display: flex;
    flex-direction: column;
}

/* Logo Area */
.cyber-footer-logo {
    display: block;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.cyber-footer-logo img {
    max-width: 180px;
    height: auto;
    display: block;
    filter: drop-shadow(0 0 10px rgba(0, 229, 255, 0.3));
}

.cyber-footer-logo:hover {
    transform: scale(1.02);
}

.cyber-footer-title {
    color: #00E5FF;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.4);
}

.cyber-footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* NOVO: Grid de Links Rápidos (3 colunas, 2 linhas) */
.cyber-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.cyber-footer-col ul li {
    margin-bottom: 8px;
    font-size: 0.85rem; /* Ajustado para caber 3 colunas de links */
    line-height: 1.4;
}

/* Remove a margem extra do grid, já que usamos gap */
.cyber-links-grid li {
    margin-bottom: 0 !important;
}

.cyber-footer-col ul li strong {
    color: #d1d5db;
    font-weight: 600;
    margin-right: 5px;
}

.cyber-footer-col a {
    color: #a0aabf;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.cyber-footer-col a:hover {
    color: #00E5FF;
    text-shadow: 0 0 8px rgba(0, 229, 255, 0.6);
    transform: translateX(3px);
}

.cyber-whatsapp-link {
    color: #00E5FF !important;
    font-weight: 600;
}

.cyber-whatsapp-link:hover {
    text-shadow: 0 0 12px rgba(0, 229, 255, 0.8);
}

.cyber-footer-desc {
    margin-bottom: 12px;
    font-size: 0.85rem;
    line-height: 1.4;
    color: #cbd5e1;
}

.cyber-footer-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.cyber-tag {
    display: inline-block;
    padding: 4px 10px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #00E5FF;
    background: rgba(0, 229, 255, 0.05);
    border: 1px solid rgba(0, 229, 255, 0.4);
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.1);
    transition: all 0.3s ease;
}

.cyber-tag:hover {
    background: rgba(0, 229, 255, 0.15);
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.3);
}

.cyber-footer-bottom {
    border-top: 1px solid rgba(0, 229, 255, 0.2);
    padding: 15px 0;
    text-align: center;
    position: relative;
}

.cyber-footer-bottom::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 1px;
    background: #00E5FF;
    box-shadow: 0 0 15px #00E5FF, 0 0 30px #00E5FF;
}

.cyber-footer-bottom-inner p {
    margin: 0;
    font-size: 0.85rem;
    color: #8b97b0;
    letter-spacing: 0.5px;
}

/* ==========================================================================
   RESPONSIVIDADE
   ========================================================================== */

@media (max-width: 992px) {
    .cyber-footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    /* Ajusta os links no tablet para 2 colunas */
    .cyber-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .cyber-footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }
    
    .cyber-footer-logo {
        margin: 0 auto 15px auto;
        display: flex;
        justify-content: center;
    }
    
    .cyber-footer-tags {
        justify-content: center;
    }
}
