/* /avisos/style/estilo-footer-2025.css */
/* Estilo footer 2025 para tema WhatsApp - Completo */

/* Estilos para el footer con tema WhatsApp */
.whatsapp-footer {
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
    color: white;
    padding: 20px 15px 8px;
    margin-top: 25px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    border-top: 3px solid #25D366;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    margin-bottom: 15px;
    text-align: center;
}

.footer-section h3 {
    color: #DCF8C6;
    margin-bottom: 12px;
    font-size: 17px;
    border-bottom: 2px solid #25D366;
    padding-bottom: 6px;
    font-weight: 600;
}

/* Estilos para el formulario de búsqueda */
.search-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.search-input {
    width: 170px !important;
    height: 32px !important;
    font-size: 13pt !important;
    font-weight: bold !important;
    border: 2px solid #25D366;
    border-radius: 18px;
    padding: 0 12px;
    text-align: center;
    background-color: white;
    color: #075E54;
}

.search-button {
    background-color: #25D366;
    color: white;
    border: none;
    padding: 7px 16px;
    border-radius: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.search-button:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
}

/* Estilos para enlaces - ALTURA REDUCIDA */
.footer-section a {
    display: block;
    color: #FFFFFF;
    text-decoration: none;
    margin-bottom: 6px;
    padding: 5px 0;
    transition: all 0.3s ease;
    border-radius: 6px;
    font-size: 14px;
}

.footer-section a:hover {
    color: #25D366;
    background-color: rgba(255,255,255,0.1);
    transform: translateX(4px);
}

/* Estilos para redes sociales (igual que las otras secciones) */
.social-section {
    flex: 1;
    min-width: 250px;
    margin-bottom: 15px;
    text-align: center;
}

.social-section h3 {
    color: #DCF8C6;
    margin-bottom: 12px;
    font-size: 17px;
    border-bottom: 2px solid #25D366;
    padding-bottom: 6px;
    font-weight: 600;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.social-links a {
    display: block;
    color: #FFFFFF;
    text-decoration: none;
    margin-bottom: 6px;
    padding: 5px 0;
    transition: all 0.3s ease;
    border-radius: 6px;
    font-size: 14px;
}

.social-links a:hover {
    color: #25D366;
    background-color: rgba(255,255,255,0.1);
    transform: translateX(4px);
}

/* Contenedor del contador (estilo discreto) */
.counter-container {
    text-align: center;
    margin-top: 12px;
    padding: 8px;
    color: #DCF8C6;
    font-size: 11px;
    opacity: 0.8;
}

.footer-bottom {
    text-align: center;
    margin-top: 15px;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,0.2);
    color: #DCF8C6;
    font-size: 13px;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-section, .social-section {
        min-width: 100%;
        margin-bottom: 12px;
    }
    
    .footer-section h3, .social-section h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .search-input {
        width: 150px !important;
        height: 30px !important;
        font-size: 12pt !important;
    }
    
    .search-button {
        padding: 6px 14px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .whatsapp-footer {
        padding: 15px 10px 6px;
    }
    
    .footer-section h3, .social-section h3 {
        font-size: 15px;
        padding-bottom: 5px;
    }
    
    .search-input {
        width: 130px !important;
        height: 28px !important;
        font-size: 11pt !important;
    }
    
    .footer-bottom {
        font-size: 12px;
        margin-top: 12px;
    }
    
    .counter-container {
        font-size: 10px;
        margin-top: 10px;
    }
    
    .footer-section a, .social-links a {
        margin-bottom: 5px;
        padding: 4px 0;
        font-size: 13px;
    }
}